(205) : warning 202: number of arguments does not match definition - 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: (205) : warning 202: number of arguments does not match definition (
/showthread.php?tid=588217)
(205) : warning 202: number of arguments does not match definition -
Mijata - 06.09.2015
Код:
(205) : warning 202: number of arguments does not match definition
Line 205: vagos = GangZoneCreate(2676,35, -1606,855, 2915,929, -1160,76);
Re: (205) : warning 202: number of arguments does not match definition -
Vince - 06.09.2015
Use dots instead of commas for the coordinates ... (for any Anglo-saxons in here: the comma is the designated separator for decimals in most of the rest of the world.)
Re: (205) : warning 202: number of arguments does not match definition -
Dknoia - 06.09.2015
by vince
pawn Код:
vagos = GangZoneCreate(2676.35, -1606.855, 2915.929, -1160.76);
Re: (205) : warning 202: number of arguments does not match definition -
Fancy - 06.09.2015
Use this:
Код:
Line 205: vagos = GangZoneCreate(2676.35, -1606.855, 2915.929, -1160.76);
Re: (205) : warning 202: number of arguments does not match definition -
Mijata - 06.09.2015
Oh i forgot thanks