Hey guys,
the following thing is so basic, yet i can´t solve it: When i want to set variables it won´t work. I get the error message "no matching signatures", so i thought i´m missing an include-file, but couldn´t spot my mistake.
Example code:
_______________________________________________________________________
#include "interfaces/Map_Interface.hps"
#include "base/Inputhandler_Types.hps"
#include "helpers/helper_map.hps"
#include "helpers/helper_props.hps"
#include "helpers/helper_effects.hps"
#include "helpers/helper_audio.hps"
#include "helpers/helper_imgui.hps"
#include "helpers/helper_sequences.hps"
#include "helpers/helper_game.hps"
#include "helpers/helper_modules.hps"
#include "helpers/helper_ai.hps"
...
//nothing special
...
void OnStart()
{
SetLocalVarInt("Var1", 0);
}
...
//nothing special
...
_________________________________________________________________________
Thanks, guys