[Question] Unlimited function arguments - 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)
+--- Thread: [Question] Unlimited function arguments (
/showthread.php?tid=369091)
[Question] Unlimited function arguments -
Maxips2 - 15.08.2012
Is there a way to pass the fetched arguments from a function?
For example:
pawn Код:
stock Func(...)
{
OtherFunc(...);
}
stock OtherFunc(...)
{
// code...
}
The example is probably not clear enough, but I am trying to pass the fetched arguments to another function, is there a way to do this?