01.11.2010, 01:50
(
Последний раз редактировалось tomokazu; 01.11.2010 в 20:16.
)
I can still type /q
The server won't fix itself if we restart.
This happens to everybody, I can go to any other server
When I click the server in the server selection it always says this:
And when i connect to it, the server just stays here and does not load:
[EDIT]
The owner used /unbanip then the server started to do this
[EDIT 2]
The /unbanip command code is this
The server won't fix itself if we restart.
This happens to everybody, I can go to any other server
When I click the server in the server selection it always says this:
And when i connect to it, the server just stays here and does not load:
[EDIT]
The owner used /unbanip then the server started to do this
[EDIT 2]
The /unbanip command code is this
Код:
if(strcmp(cmd,"/unbanip",true)==0) { if(PlayerInfo[playerid][pAdmin] >= 3) { tmp = strtok(cmdtext,idx); if(!strlen(tmp)) { SendClientMessage(playerid,COLOR_GRAD1,"USAGE: /unbanip [players ip]"); return 1; } format(string,sizeof(string),"unbanip %s",tmp); RemoveBan(tmp); SendRconCommand(string); SendRconCommand("reloadbans"); GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer)); GetPlayerName(playerid, sendername, sizeof(sendername)); if(PlayerInfo[playerid][pAdmin] == 11) { sendername = "Hidden Admin"; } format(string, 256, "AdmWarning: %s has unbanned IP %s", sendername,tmp); ABroadCast(COLOR_YELLOW,string,1); } return 1; }