25.11.2013, 17:06
Okay, I can't find any missing brackets in this routine,
Can you empty the routine's one by one?
for example first try it like this:
If it still crashes like this then place back the code in this routine and try with one of the others:
This way it may be possible to detect in which function the error occurs.
It's a simple but effective method to trace back a script error, which I used often in the past.
Can you empty the routine's one by one?
for example first try it like this:
pawn Code:
//Just cut and paste it in notepad for example
public OnPlayerLogin(playerid,password[])
{
}
//Leaving the code present at the other functions
pawn Code:
public OnPlayerRegister(playerid,password[])
{
}
//Leaving the code present at the other functions
It's a simple but effective method to trace back a script error, which I used often in the past.

