Optional Parameters - 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: Optional Parameters (
/showthread.php?tid=101538)
Optional Parameters -
Dreftas - 11.10.2009
How to make function with optional parameter? Like this:
Code:
forward Func(param, const text[] = "");
public Func(param, const text[] = "")
{
// code here
return 1;
}
How to make that parameter text[] would be optional? If i don't write anything there, then it would be just "" ?
Re: Optional Parameters -
Nero_3D - 11.10.2009
that works with stock or just nothing