Stupid question lol, regarding numbers
#1

I can't find out how to make an if command where it says if something is not equeal idk 0.
Ex:

if(PlayerInfo[playerid][pLevel] not equal 0)

What's the sign for "not equal" for numbers? I tried adding "!" infront of PlayerInfo but I get warnings.


Thanks
Reply
#2

Код:
if(PlayerInfo[playerid][pLevel] != 0)
{
//your codes
}
Reply
#3

!= Not equal.
>= More than or equal to.
<= Less than or equal to.
< Less than.
> More than.
== Equal to.

Just incase you needed more
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)