17.12.2014, 18:18
not Fixed
Line 1252
all the code
i done add
help to fixing error
Quote:
D:\ffff\gamemodes\fast.pwn(1252) : error 028: invalid subscript (not an array or too many subscripts): "pInfo" D:\ffff\gamemodes\fast.pwn(1252) : warning 215: expression has no effect D:\ffff\gamemodes\fast.pwn(1252) : error 001: expected token: ";", but found "]" D:\ffff\gamemodes\fast.pwn(1252) : error 029: invalid expression, assumed zero D:\ffff\gamemodes\fast.pwn(1252) : fatal error 107: too many error messages on one line |
Quote:
pInfo[lookupid][pRank] = ARank; |
Quote:
CMDetrank(playerid, params[]) { new str[128], ARank, lookupid; if(PlayerInfo[playerid][pRank] == 6) // this command is for admins level 6 only { if(sscanf(params, "ui", lookupid, ARank)) return SendClientMessage(playerid, -1, "Usage: /setrank <PlayerID/PlayerName> <Rank>"); format(str, sizeof(str), "Admin %s (ID:%d) has setted %s (ID:%d) Rank to (%d)",GetName(playerid), playerid, GetName(lookupid), lookupid, ARank); SendClientMessageToAll(-1, str); pInfo[lookupid][pRank] = ARank; } else { SendClientMessage(playerid, -1, "Sorry , you are not admin"); } return 1; } |
Quote:
new rank; |