SA-MP Forums Archive
What The Error It Does Not Unban Me - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: What The Error It Does Not Unban Me (/showthread.php?tid=637572)



What The Error It Does Not Unban Me - Speaker - 17.07.2017

Код:
CMD:unbanofflineplayer(playerid, params[])
{
	new string[128],tname[24];
	if(sscanf(params, "s[24]", tname)) return SendClientMessage(playerid,-1,"Correct Usage: /unbanofflineplayer [Player Name] ");
	new filestring[79];
	format(filestring, sizeof(filestring), "/ladmin/users/%s.sav", tname);
	if(!dini_Exists(filestring)) return SendClientMessage(playerid,COLOR_RED, "The name you've chosen was not found in our database ");
	else
	{
        dini_IntSet(filestring, "banned", 0);
        new cmdstring[145];
		format(cmdstring, sizeof(cmdstring), "unbanip %s", PlayerInfo[filestring][bip]);
		SendRconCommand(cmdstring);
		SendRconCommand("reloadbans");
		new done[128];
		format(done, sizeof(done),"You have successfully unbanned %s", tname);
		SendClientMessage(playerid, -1,done);
	}
	return 1;
}