20.05.2011, 18:58
Quote:
Here:
[pawno]if(GetVehicleHealth(playerid) < 1000)[/pawno] Above it, make this: [pawno]new vHealth; vHealth = GetVehicleHealth(playerid); [/pawno] and instead [pawno]if(GetVehicleHealth(playerid) < 1000)[/pawno] give [pawno]if(vHealth < 1000)[/pawno] Working? ~Lets |
Код:
new vHealth; vHealth = GetVehicleHealth(playerid);//<-- line 767 if(vHealth < 1000) return SendClientMessage(playerid,COLOR_RED,"Your Vehicle Is Already Full Health!");
Код:
C:\Users\**********\Desktop\*********\gamemodes\ct.pwn(767) : warning 202: number of arguments does not match definition Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Warning.