undefined symbol "playerid"
#1

Fixed. Sorry about useless post.
Reply
#2

How did you fix please?
Reply
#3

Quote:
Originally Posted by kubz777
Посмотреть сообщение
How did you fix please?
Lovely bump .

Anyway, to answer your question, you just put the code under a callback that has playerid as one of the arguments. The most common mistake is that people try use playerid with SetTimer which will not work. If this is what you are doing, try this:

pawn Код:
//Some place in your script
SetTimerEx("callback", 1000, false, "d", playerid);
//--------------------------

forward callback(playerid);
public callback(playerid)
{
    //Your code
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)