(06-21-2015, 08:53 PM)Catalyst Wrote: what's the problem, maybe you'll show a script content again? I don't know what is the problem actualy.
Its not "actualy" it is "actually"

The problem was listed above.. My mistake was that you know this code
void AddEntityCollideCallback(string& asParentName, string& asChildName, string& asFunction, bool abDeleteOnCollide, int alStates);
And then below it theres the callback (e.g. when the certain entity enters the certain area it calls a certain function) A.K.A. This >
void MyFunc(string &in asParent, string &in asChild, int alState)
< code..
So my dumb mistake was, that I used at the end "string &in alState" (instead of "int alState") and we know that numbers are not considered as text in the scripting...
Anyway, I fixed my mistake, fixed my error and for now it seems that everything works..
If I get further errors/mistakes or problems I will post here, in this topic!
Thank you again for the help ;d