06.09.2015, 06:17
Quote:
|
Your 'if' statement is incorrect.
Код:
if(GetPlayerSkin(playerid) == 280 || 281 || 282 || 283 || 284 || 285 || 286 || 288 || 300 || 301 || 302 ) Код:
new SkinID = GetPlayerSkin(playerid); if( SkinID == 280 || SkinID == 281 || SkinID == 282 /* And so on**/ ) Your original code checks if SkinID is '280' the rest of it checks if 281 ... 302 is non-zero - which it is. |


