27.09.2016, 21:32
You do an infinite recursion
Look for example at this:
Why you call this function again...this calls it again..and again...and again...and again
...think about..what you are doing there >.<
Look for example at this:
PHP код:
if(WorkPay[playerid] < 1000)
{
GetEndLocation(playerid);
return 1;
}
...think about..what you are doing there >.<