SA-MP Forums Archive
Need help whit a gangzone thingy Esay Bugs - 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: Need help whit a gangzone thingy Esay Bugs (/showthread.php?tid=69722)



Need help whit a gangzone thingy Esay Bugs - dannei04 - 20.03.2009

Hello i need some help i got this Warning
(10625) : warning 202: number of arguments does not match definition
(10625) : warning 202: number of arguments does not match definition
(10625) : warning 202: number of arguments does not match definition
(10625) : warning 202: number of arguments does not match definition
(10626) : warning 202: number of arguments does not match definition
(10626) : warning 202: number of arguments does not match definition
(10626) : warning 202: number of arguments does not match definition
(10626) : warning 202: number of arguments does not match definition
(10627) : warning 202: number of arguments does not match definition
(10627) : warning 202: number of arguments does not match definition
(10627) : warning 202: number of arguments does not match definition
(10627) : warning 202: number of arguments does not match definition

Here is
zone = GangZoneCreate(1543,105, -2850,393, 2554,659, -1598,959);
saints = GangZoneCreate(1410,006, -1591,064, 2611,702, -943,6342);
saints = GangZoneCreate(151,2669, -2120,061, 1421,414, -1148,917);
And here is the new
new zone;
new Saints;


Please help me



Re: Need help whit a gangzone thingy Esay Bugs - Basss - 20.03.2009

1st you cant create 2times the same gangzones
2nd your coordinates must be splitted like this:
GangZoneCreate(maxx.maxx,maxy.maxy);

new zone,saints,saints2;

zone = GangZoneCreate(1543.105, -2850.393, 2554.659, -1598.959);
saints = GangZoneCreate(1410.006, -1591.064, 2611.702, -943.6342);
saints2 = GangZoneCreate(151.2669, -2120.061, 1421.414, -1148.917);

cheerz


Re: Need help whit a gangzone thingy Esay Bugs - dannei04 - 20.03.2009

Thx