/oprison help
#1

Well, this my code, for a offline prison, but its not working, the player is not going injail if you did this
pawn Код:
CMD:oprison(playerid, params[])
{
    new playerb[32], string[128], file[32], time;
    if(!IsPlayerLoggedIn(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command.");
    if(PlayerInfo[playerid][pAdmin] < 3) return SendClientMessage(playerid, COLOR_GREY, "You are not authorized to use this command.");
    if(!aDuty[playerid]) return SendClientMessage(playerid, COLOR_GREY, "You are not on Admin Duty.");
    if(sscanf(params, "s[32]is[128]", playerb, time, params)) return SendClientMessage(playerid, COLOR_WHITE, "[Usage]: /oprison [playername] [time] [reason]");
    if(RPIDFN(playerb) != INVALID_PLAYER_ID) return SendClientMessage(playerid, COLOR_GREY, "Player is connected to the server, use /prison instead.");
    format(file, sizeof(file), "users/%s.ini", playerb);
    if(!dini_Exists(file)) return SendClientMessage(playerid, COLOR_GREY, "Player name not found.");
    if(PlayerInfo[playerid][pAdmin] < dini_Int(file, "Admin")) return SendClientMessage(playerid, COLOR_GREY, "Player has a higher admin level than you.");
    format(string, sizeof(string), "AdmCmd: %s has been offline-prisoned by %s, reason: %s", playerb, RPN(playerid), params);
    SendClientMessageToAll(COLOR_LIGHTRED, string);
    format(string, sizeof(string), "AdmCmd: %s has been offline-prisoned by %s, reason: %s", playerb, RPN(playerid) , params);
    // Prisoning
    dini_IntSet(file, "pPrison", 1);
    // Prisonreason
    dini_Set(file, "pPrisonReason", params);
    dini_Set(file, "pPrisonBy", RPNU(playerid));
    dini_IntSet(file, "pPrisonTime", time);
    return 1;
}
Reply


Messages In This Thread
/oprison help - by lulo356 - 25.03.2014, 21:12
Re: /oprison help - by Jefff - 26.03.2014, 02:49
Re: /oprison help - by lulo356 - 26.03.2014, 08:19
Re: /oprison help - by Hanuman - 26.03.2014, 08:32
Re: /oprison help - by lulo356 - 26.03.2014, 08:44
Re: /oprison help - by Hanuman - 26.03.2014, 09:18
Re: /oprison help - by lulo356 - 26.03.2014, 09:24
Re: /oprison help - by Hanuman - 26.03.2014, 09:26
Re: /oprison help - by lulo356 - 26.03.2014, 09:39
Re: /oprison help - by Hanuman - 26.03.2014, 09:50

Forum Jump:


Users browsing this thread: 1 Guest(s)