Maybe simple, but help me
#1

After take break for long time, finnaly I try to scripting again, and I found errors on one line, this is the error

Код:
C:\Users\\Desktop\samp03\gamemodes\d.pwn(465) : warning 211: possibly unintended assignment
C:\Users\\Desktop\samp03\gamemodes\d.pwn(465) : error 022: must be lvalue (non-constant)
C:\Users\\Desktop\samp03\gamemodes\d.pwn(465) : warning 215: expression has no effect
C:\Users\\Desktop\samp03\gamemodes\d.pwn(465) : error 001: expected token: ";", but found ")"
C:\Users\\Desktop\samp03\gamemodes\d.pwn(465) : error 029: invalid expression, assumed zero
C:\Users\\Desktop\samp03\gamemodes\d.pwn(465) : fatal error 107: too many error messages on one line
And this is the line

Код:
	    if(GetPlayerColor(playerid) =! COLOR_DARKBLUE)
Thankyou.
Reply
#2

Try this one:

Код:
if(GetPlayerColor(playerid) =! COLOR_DARKBLUE); //u missed this i think
Reply
#3

Код:
if(GetPlayerColor(playerid) == COLOR_DARKBLUE);
Might be that, if not, make sure to tell me
Reply
#4

you got your symbols mixed up, it's meant to be !=
Reply
#5

Quote:
Originally Posted by cessil
Посмотреть сообщение
you got your symbols mixed up, it's meant to be !=
This is the right one , but thankyou to all that have spent your time to my thread
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)