SA-MP Forums Archive
Need help with offline ban. - 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: Need help with offline ban. (/showthread.php?tid=397249)



Need help with offline ban. - zionx08 - 04.12.2012

<fixed>


Re: Need help with offline ban. - cosbraa - 04.12.2012

pawn Код:
CMD:osuspend(playerid,params[])
{
    new string[124], string1[124], string2[124] ,reason[64];
    if(!(PlayerInfo[playerid][pAdmin] >= 1)) return SCM(playerid, COLOR_LIGHTRED,"You are not authorized to use this command");
    format(string,sizeof(string),"Users/%s.ini",params);
    if(fexist(string))
    {
        new INI:File = INI_Open(string);
        INI_SetTag(File,"data");
        INI_WriteInt(File,"Ban", 1);
        INI_Close(File);
        // PlayerInfo[playerid][pBan] = 1; // I don't know why you have this?
        format(string1, sizeof(string1), "{FF0000}[Admin-Warning]{FF6347} %s has been o-suspended by %s: %s .", params, GetPlayerNameEx(playerid), reason);
        SendClientMessageToAll(playerid,string1);
        format(string2, sizeof(string2), "{FFFF33}[Admin-Info]{FF0000}: {FFFFFF}%s has Offline-Suspended %s :%s.", GetPlayerNameEx(playerid), params ,reason);
        AdminBroadCast(COLOR_LIGHTRED, string2);
    }
    else SendClientMessage(playerid,-1,"Account not found");
    return 1;
}



Re: Need help with offline ban. - zionx08 - 04.12.2012

i was just trying to add and tesing it.But doesnt works and forgot to remove that when posting this.


Re: Need help with offline ban. - cosbraa - 04.12.2012

Did you try the one I posted?
INI_Open(string);


Re: Need help with offline ban. - zionx08 - 04.12.2012

Quote:
Originally Posted by cosbraa
Посмотреть сообщение
Did you try the one I posted?
INI_Open(string);
lol just noticed.


Re: Need help with offline ban. - zionx08 - 04.12.2012

Works..Thanks dude...


Re: Need help with offline ban. - zionx08 - 04.12.2012

Can help me remove you comment
The one you help me edit.


Re: Need help with offline ban. - cosbraa - 04.12.2012

Help you remove the comment? What do you mean?
pawn Код:
CMD:osuspend(playerid,params[])
{
    new string[124], string1[124], string2[124] ,reason[64];
    if(!(PlayerInfo[playerid][pAdmin] >= 1)) return SCM(playerid, COLOR_LIGHTRED,"You are not authorized to use this command");
    format(string,sizeof(string),"Users/%s.ini",params);
    if(fexist(string))
    {
        new INI:File = INI_Open(string);
        INI_SetTag(File,"data");
        INI_WriteInt(File,"Ban", 1);
        INI_Close(File);
        format(string1, sizeof(string1), "{FF0000}[Admin-Warning]{FF6347} %s has been o-suspended by %s: %s .", params, GetPlayerNameEx(playerid), reason);
        SendClientMessageToAll(playerid,string1);
        format(string2, sizeof(string2), "{FFFF33}[Admin-Info]{FF0000}: {FFFFFF}%s has Offline-Suspended %s :%s.", GetPlayerNameEx(playerid), params ,reason);
        AdminBroadCast(COLOR_LIGHTRED, string2);
    }
    else SendClientMessage(playerid,-1,"Account not found");
    return 1;
}