Created
July 17, 2015 06:21
-
-
Save Dronr/f821ef098d57e69903ff to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CMD:clearreconnect(playerid, params[]) | |
{ | |
if(!AcceptWrite(playerid)) return 1; | |
if(pData[playerid][IsAdmin] <= 8) return 1; | |
ClearReconnect(); | |
SendClientMessage(playerid,COLOR_YELLOW,"Reconnect list cleaner"); | |
return true; | |
} | |
stock ClearReconnect() | |
{ | |
for(new i=0; i<MAX_PLAYERS; i++) DeleteSVar(pData[i][CurrentIP]); | |
return 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment