Help! There's a problem when i am trying to test my custom story out!!
It says:
FATAL ERROR: Could not load script file 'custom_stories/test/maps/test.hps'!
main (6, 5) : ERR : No matching signatures to 'SetPlayerSanity(const uint);
Here's my code (just testing out the sanity)
////////////////////
//Runs when the player starts the map
void OnStart()
{
SetPlayerLampOil(0);
SetPlyaerSanity(15);
}
////////////////////
//Runs when the player enters the map
void OnEnter()
{
}
////////////////////
//Runs when the player leaves the map
void OnLeave()
{
}
Any help would be great... thanks!!!