SA-MP Forums Archive
Redundant code: constant expression is zero - 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)
+--- Thread: Redundant code: constant expression is zero (/showthread.php?tid=390506)



Redundant code: constant expression is zero - Zerovda - 06.11.2012

Quote:

(876) : warning 206: redundant test: constant expression is non-zero
(1223) : warning 206: redundant test: constant expression is non-zero
(1515) : warning 205: redundant code: constant expression is zero
(1524) : warning 205: redundant code: constant expression is zero
(1548) : warning 205: redundant code: constant expression is zero
(1561) : warning 205: redundant code: constant expression is zero
(1620) : warning 205: redundant code: constant expression is zero
(1639) : warning 205: redundant code: constant expression is zero
(1661) : warning 205: redundant code: constant expression is zero
(1684) : warning 205: redundant code: constant expression is zero
(1698) : warning 205: redundant code: constant expression is zero
(1710) : warning 205: redundant code: constant expression is zero
(1732) : warning 205: redundant code: constant expression is zero
(1746) : warning 205: redundant code: constant expression is zero
(1760) : warning 205: redundant code: constant expression is zero

15 Warnings.

I'm trying to compile AVS filterscript but everytime I try to I get these errors the line which gives the error throughout the entire script is this one. Anyone knows what is wrong with it?

Код:
	if(!IsAdmin(playerid, 1)) return SendClientMessage(playerid, COLOR_RED, "You are not admin!");



Re: Redundant code: constant expression is zero - Glad2BeHere - 06.11.2012

FIXED
pawn Код:
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, COLOR_RED, "You are not admin!");
https://sampwiki.blast.hk/wiki/IsPlayerAdmin


Re: Redundant code: constant expression is zero - Zerovda - 06.11.2012

Quote:
Originally Posted by Glad2BeHere
Посмотреть сообщение
FIXED
pawn Код:
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, COLOR_RED, "You are not admin!");
https://sampwiki.blast.hk/wiki/IsPlayerAdmin
Thanks that worked