Quote:
Originally Posted by clarencecuzz
if(AccInfo[playerid][Level] >= 1) is the same as if(AccInfo[playerid][Level] == 1 || AccInfo[playerid][Level] > 1)
There is no need for
Код:
if [Level] is greater than 1
when you have
Код:
if [Level] is greater than OR equal to 1
|
I got it now. Thanks again man! Appreciate your help.