OnPlayerRequestClass Bug ?
#2

Well
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
    return 0;
}
return 0 = it will not return any value means you will not be spawned
change it to
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
    return 1;
}
return 1 means it will return a value which will let you move to the next function
Reply


Messages In This Thread
OnPlayerRequestClass Bug ? - by ShawnMiller1337 - 26.09.2012, 16:20
Re: OnPlayerRequestClass Bug ? - by Jarnu - 26.09.2012, 16:34
Re: OnPlayerRequestClass Bug ? - by ShawnMiller1337 - 26.09.2012, 16:48
Re: OnPlayerRequestClass Bug ? - by ShawnMiller1337 - 26.09.2012, 17:03

Forum Jump:


Users browsing this thread: 1 Guest(s)