stock VS. forward
#1

pawn Код:
stock Kill(playerid)
{
    SetPlayerHealth(playerid, 0);
}
And

pawn Код:
forward Kill(playerid);
public Kill(playerid)
{
    SetPlayerHealth(playerid, 0);
}
What is difference between stock and forward/public ?
Reply
#2

No difference exept using stock in a timer.
You can't. You must use a public.
Reply
#3

Oh just this
Ok, thanks for info.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)