Quote:
Originally Posted by cruising
i create the the zone in the program correct, put everything in right place
BUT
getting 4 warnings, and on this line
pawn Code:
ZoneThunderbirds = GangZoneCreate(-2942,825, -992,6194, -1086,042, 1588,191); warning 202: number of arguments does not match definition warning 202: number of arguments does not match definition warning 202: number of arguments does not match definition warning 202: number of arguments does not match definition
But thats not all, when i enter the game and look on the map, the zone is way wrong placed!
|
Change:
pawn Code:
ZoneThunderbirds = GangZoneCreate(-2942,825, -992,6194, -1086,042, 1588,191);
to:
pawn Code:
ZoneThunderbirds = GangZoneCreate(-2942.825, -992.6194, -1086.042, 1588.191);
Notice the dots(.) instead of the commas(,).