SA-MP Forums Archive
Which? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Which? (/showthread.php?tid=258022)



Which? - BaubaS - 28.05.2011

Hi all,

I have a question - which way is better?

#1

pawn Код:
stock something(something)
{
return true;
}
calling: something(something);

#2

pawn Код:
forward something(something);
public something(something)
{
return true;
}
calling: CallLocalFunction("something", "d", something);

And please, I need arguments.


Re: Which? - BaubaS - 29.05.2011

bump