22.07.2012, 11:12
I have a problem:
Quote:
E:\SA-MP Server\gamemodes\Server.pwn(83) : error 001: expected token: ",", but found "-rational value-" E:\SA-MP Server\gamemodes\Server.pwn(83) : error 001: expected token: ";", but found ")" E:\SA-MP Server\gamemodes\Server.pwn(83) : error 029: invalid expression, assumed zero E:\SA-MP Server\gamemodes\Server.pwn(83) : fatal error 107: too many error messages on one line |
Код:
if (strcmp("/enter", cmdtext, true, 10) == 0) { if(IsPlayerInRangeOfPoint(playerid, 1.0, 172.66, -152.10, 1.72)) // checks if in range of the /enter point { SetPlayerPos(playerid, 170.75, -153.94, 1.81); //Sets there new position RemoveBuildingForPlayer(playerid, 13200, 158.3594, -176.3047, 5.5703, 0.25); RemoveBuildingForPlayer(playerid, 12923, 158.3594, -176.3047, 5.5703, 0.25); return 1; } else if(IsPlayerInRangeOfPoint(playerid, 7.0 170.85, -153.85, 1.48)) // Checks if near the exit door { SetPlayerPos(playerid, 172.24, -152.26, 1.81); } return 1; }