25.12.2009, 13:13
Replace the >= with ==
and only the last one >= 10, so if he is 11 or 12 it will load him the rank10 guns.
pawn Код:
if (udb_UserInt(PlayerName(playerid), "coprank") == 0)
if (udb_UserInt(PlayerName(playerid), "coprank") == 1)
if (udb_UserInt(PlayerName(playerid), "coprank") == 2)
pawn Код:
if (udb_UserInt(PlayerName(playerid), "coprank") >= 10)

