Help with SSCANF and DCMD
#1

Hi there.... im working again with samp and getting use to it.... im testing sscanf, trying to make a ENGINE ON/OF command and i've got this....
Код:
dcmd_engine(playerid,params[])
{
 new State[50];
 if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid,RED,"You must be in a vehicle!");
 if(GetPlayerState(playerid) != 2) return SendClientMessage(playerid,RED,"You must be the Driver of the vehicle!");
 if(sscanf(params[0],"s",State))
 {
  SendClientMessage(playerid,RED,"Usage: '/engine (on-off)'");
 	return 1;
 }
 if(State,"ON",true)) // (State == "On") or (State == "oN") or State == "on" ***********************************
 {
 	SendClientMessage(playerid,GREEN,"Turning the Engine ON, Please Stand By");
	SendClientMessage(playerid,ORANGE,"*");
	SendClientMessage(playerid,ORANGE,"*");
	SendClientMessage(playerid,ORANGE,"*");
	SendClientMessage(playerid,ORANGE,"*");
	SendClientMessage(playerid,ORANGE,"*");
	SendClientMessage(playerid,ORANGE,"*");
	SendClientMessage(playerid,GREEN,"The vehicle is ON!");
 }
 return 1;
}
the problem is i get this error
Код:
C:\Users\Walter\Desktop\GTA SAMP SERver\gamemodes\Test.pwn(225) : warning 206: redundant test: constant expression is non-zero
C:\Users\Walter\Desktop\GTA SAMP SERver\gamemodes\Test.pwn(225) : error 029: invalid expression, assumed zero
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.
Line 225 is the one with the Stars.......
Reply


Messages In This Thread
Help with SSCANF and DCMD - by almighty - 15.09.2009, 15:33
Re: Help with SSCANF and DCMD - by _Vortex - 15.09.2009, 15:36
Re: Help with SSCANF and DCMD - by Clavius - 15.09.2009, 15:37
Re: Help with SSCANF and DCMD - by Calgon - 15.09.2009, 15:42

Forum Jump:


Users browsing this thread: 1 Guest(s)