[GameMode] zGaming Roleplay
#25

pawn Код:
CMD:aduty(playerid, params[])
{
    new string[128], file[32];
    if(!IsPlayerLoggedIn(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command.");
    if(PlayerInfo[playerid][pAdmin] < 1) return SendClientMessage(playerid, COLOR_GREY, "You are not authorized to use this command.");
    if(!aDuty[playerid])
    {
        format(file, sizeof(file), "users/%s.ini", RPNU(playerid));
        format(file, sizeof(file), "users/%s.ini", dini_Get(file, "AdminName"));
        if(!dini_Exists(file)) return SendClientMessage(playerid, COLOR_GREY, "Choose an admin name using /aname first.");
        format(file, sizeof(file), "users/%s.ini", RPNU(playerid));
        format(string, sizeof(string), "AdmWarn: %s has went on admin duty. (Admin name: %s)", RPN(playerid), dini_Get(file, "AdminName"));
        SendAdminMessage(COLOR_DARKRED, 1, string);
        SaveChar(playerid);
        aDuty[playerid] = 1;
        SetPlayerName(playerid, dini_Get(file, "AdminName"));
        GetPlayerIp(playerid, PlayerInfo[playerid][pIP], 16);
        format(string, sizeof(string), "%s", RPALN(playerid));
        if(IsValidDynamic3DTextLabel(aDutyText[playerid]))  DestroyDynamic3DTextLabel(aDutyText[playerid]);
        if(PlayerInfo[playerid][pAdmin] == 1) aDutyText[playerid] = CreateDynamic3DTextLabel(string, COLOR_LIGHTGREEN, 0, 0, -20, 25, playerid);
        if(PlayerInfo[playerid][pAdmin] == 2) aDutyText[playerid] = CreateDynamic3DTextLabel(string, COLOR_LIME, 0, 0, -20, 25, playerid);
        if(PlayerInfo[playerid][pAdmin] == 3) aDutyText[playerid] = CreateDynamic3DTextLabel(string, COLOR_YELLOW, 0, 0, -20, 25, playerid);
        if(PlayerInfo[playerid][pAdmin] == 4) aDutyText[playerid] = CreateDynamic3DTextLabel(string, COLOR_ORANGE, 0, 0, -20, 25, playerid);
        if(PlayerInfo[playerid][pAdmin] == 5) aDutyText[playerid] = CreateDynamic3DTextLabel(string, COLOR_RED, 0, 0, -20, 25, playerid);
        if(PlayerInfo[playerid][pAdmin] == 6) aDutyText[playerid] = CreateDynamic3DTextLabel(string, COLOR_DARKRED, 0, 0, -20, 25, playerid);
        Streamer_SetFloatData(STREAMER_TYPE_3D_TEXT_LABEL, aDutyText[playerid] , E_STREAMER_ATTACH_OFFSET_Z, 0.25);
    }
    else
    {
        if(Spec[playerid]) return SendClientMessage(playerid, COLOR_GREY, "You can't go off admin duty while spectating someone.");
        format(file, sizeof(file), "users/%s.ini",RPNU(playerid));
        SaveChar(playerid);
        SetPlayerName(playerid, dini_Get(file, "OldName"));
        aDuty[playerid] = 0;
        format(file, sizeof(file), "users/%s.ini", RPNU(playerid));
        format(string, sizeof(string), "AdmWarn: %s has went off admin duty. (Admin name: %s)", RPN(playerid), dini_Get(file, "AdminName"));
        SendAdminMessage(COLOR_DARKRED, 1, string);
        DestroyDynamic3DTextLabel(aDutyText[playerid]);
    }
    return 1;
}
aDuty rebuilt, instead of letting DINI create a new file for a admin, I made it so it'll get the admin name and it'll set the players name with the admin name instead of that creation of a admin name which is totally useless (Unless someone likes to login as an admin....) <- It lags a bit due to script being INI, If I can master MySQL, I'll change it to MySQL and send a copy to iRage if he wants
Reply


Messages In This Thread
zGaming Roleplay - by iRage - 13.06.2012, 17:58
Re: zGaming Roleplay [Scratch GM] - by Jhero - 13.06.2012, 18:02
Re: zGaming Roleplay [Scratch GM] - by iRage - 13.06.2012, 18:10
Re: zGaming Roleplay [Scratch GM] - by Cronic - 13.06.2012, 18:17
Re: zGaming Roleplay [Scratch GM] - by iRage - 13.06.2012, 18:18
Re: zGaming Roleplay [Scratch GM] - by Cronic - 13.06.2012, 18:20
Re: zGaming Roleplay [Scratch GM] - by iRage - 13.06.2012, 18:22
Re: zGaming Roleplay [Scratch GM] - by Djole1337 - 13.06.2012, 18:23
Re: zGaming Roleplay [Scratch GM] - by Cronic - 13.06.2012, 18:31
Re: zGaming Roleplay - by iFederal - 15.06.2012, 23:38
Re: zGaming Roleplay - by San1 - 15.06.2012, 23:52
Re: zGaming Roleplay - by Kerlan - 16.06.2012, 00:04
Re: zGaming Roleplay - by poweromania - 16.06.2012, 04:08
Re: zGaming Roleplay - by San1 - 16.06.2012, 04:15
Re: zGaming Roleplay - by San1 - 16.06.2012, 04:17
Re: zGaming Roleplay - by poweromania - 16.06.2012, 04:36
Re: zGaming Roleplay - by San1 - 16.06.2012, 04:41
Re: zGaming Roleplay - by poweromania - 16.06.2012, 04:45
Re: zGaming Roleplay - by iRage - 16.06.2012, 05:10
Re: zGaming Roleplay - by iRage - 27.06.2012, 19:54
Re: zGaming Roleplay - by Mihkel - 29.06.2012, 12:49
Re : zGaming Roleplay - by mazz57 - 29.06.2012, 12:55
Re: zGaming Roleplay - by Rasherx - 29.06.2012, 22:40
Re: zGaming Roleplay - by Mark Shade - 29.06.2012, 23:21
Re: zGaming Roleplay - by Riddy - 30.06.2012, 18:43
Re: zGaming Roleplay - by ErzaNatsu - 30.06.2012, 20:13
Re: zGaming Roleplay - by iRage - 01.07.2012, 02:36
Re: zGaming Roleplay - by Riddy - 01.07.2012, 02:52
Re: zGaming Roleplay - by Mihkel - 01.07.2012, 11:30
Re: zGaming Roleplay - by Hydra10 - 09.07.2012, 19:18
Re: zGaming Roleplay - by LukeStephens - 15.07.2012, 15:43
Re: zGaming Roleplay - by WinterAce - 15.07.2012, 16:02
Re: zGaming Roleplay - by djshaneere - 15.07.2012, 21:23
Re: zGaming Roleplay - by prefex - 15.07.2012, 23:27
Re: zGaming Roleplay - by rami.chaar2 - 16.07.2012, 03:36
Re: zGaming Roleplay - by muzammil777 - 16.07.2012, 06:12
Re: zGaming Roleplay - by Noah_Wilson - 16.07.2012, 07:46
Re: zGaming Roleplay - by benniirpando - 16.07.2012, 07:48
Re: zGaming Roleplay - by Noah_Wilson - 16.07.2012, 07:55
Re: zGaming Roleplay - by Noah_Wilson - 16.07.2012, 12:25
Re: zGaming Roleplay - by ParadiseRP - 16.07.2012, 13:50
Re: zGaming Roleplay - by megamind2067 - 16.07.2012, 14:02
AW: zGaming Roleplay - by Forbidden - 16.07.2012, 14:57
Re: zGaming Roleplay - by Mihkel - 16.07.2012, 15:41
Re: zGaming Roleplay - by Koske - 16.07.2012, 16:25
Re: zGaming Roleplay - by DemonRider - 16.07.2012, 16:27
Re: zGaming Roleplay - by tallerin - 16.07.2012, 16:43
Re: zGaming Roleplay - by Mihkel - 16.07.2012, 17:21
Re: zGaming Roleplay - by Noah_Wilson - 17.07.2012, 08:04
Re: zGaming Roleplay - by fadhilkab - 17.07.2012, 08:25
Re: zGaming Roleplay - by gychem - 23.07.2012, 19:05
Re: zGaming Roleplay - by Kevin Frankenberger - 23.07.2012, 19:24
Re: zGaming Roleplay - by Ben_Gale - 24.07.2012, 01:30
Re: zGaming Roleplay - by Emmet_ - 24.07.2012, 01:57
Re: zGaming Roleplay - by Corleone1 - 24.07.2012, 03:30
Re: zGaming Roleplay - by JofiStone - 24.07.2012, 09:55
Re: zGaming Roleplay - by Smxe - 24.07.2012, 10:17
Re: zGaming Roleplay - by Dopey. - 24.07.2012, 13:20
Re: zGaming Roleplay - by TheBlackKnight - 24.07.2012, 13:24
Re: zGaming Roleplay - by Zebb - 24.07.2012, 13:28
Re: zGaming Roleplay - by TheBlackKnight - 24.07.2012, 13:31
Re: zGaming Roleplay - by TheBlackKnight - 24.07.2012, 13:33
Re: zGaming Roleplay - by Zebb - 24.07.2012, 13:35
Re: zGaming Roleplay - by TheBlackKnight - 24.07.2012, 13:37
Re: zGaming Roleplay - by Ben_Gale - 24.07.2012, 13:50
Re: zGaming Roleplay - by TheBlackKnight - 24.07.2012, 13:56
Re: zGaming Roleplay - by Desi_Dude - 24.07.2012, 15:30
Re: zGaming Roleplay - by Nikoz - 24.07.2012, 16:31
Re: zGaming Roleplay - by Kindred - 24.07.2012, 16:34
Re : zGaming Roleplay - by TGameR - 24.07.2012, 16:46
Re: zGaming Roleplay - by Desi_Dude - 24.07.2012, 17:03
Re: zGaming Roleplay - by Dev. - 03.08.2012, 07:25
Re: zGaming Roleplay - by Friend+ - 03.08.2012, 10:02
Re: zGaming Roleplay - by Deathh - 03.08.2012, 10:08
Re: zGaming Roleplay - by Marv! - 03.08.2012, 10:36
Re: zGaming Roleplay - by Karliss - 03.08.2012, 11:05
Re: zGaming Roleplay - by Ben_Gale - 03.08.2012, 13:13
Re: zGaming Roleplay - by Dawnz - 04.08.2012, 09:16
Re: zGaming Roleplay - by Yiddus - 04.08.2012, 13:45
Re: zGaming Roleplay - by djshaneere - 06.08.2012, 22:17
Re: zGaming Roleplay - by Zach7 - 07.08.2012, 03:02
Re: zGaming Roleplay - by rahmatjulian - 25.08.2012, 16:09
Re: zGaming Roleplay - by Goldilox - 03.09.2012, 10:59
Re: zGaming Roleplay - by Sasoft - 03.09.2012, 12:34
Re: zGaming Roleplay - by Marven - 03.09.2012, 15:29
Re: zGaming Roleplay - by Skyrise - 03.09.2012, 15:34
Re: zGaming Roleplay - by Marven - 03.09.2012, 18:59
Re: zGaming Roleplay - by Cena44 - 03.09.2012, 19:00
Re: zGaming Roleplay - by Samp_Addict - 03.09.2012, 20:19
Re: zGaming Roleplay - by Goldilox - 03.09.2012, 21:47
Re: zGaming Roleplay - by Skyrise - 04.09.2012, 03:52
Re: zGaming Roleplay - by razor steven - 04.09.2012, 16:25
Re: zGaming Roleplay - by atomic gaming - 12.10.2012, 06:38
Re: zGaming Roleplay - by Luke-Paul - 12.10.2012, 15:34
Re: zGaming Roleplay - by Lordzy - 13.10.2012, 08:02
Re: zGaming Roleplay - by jami1998 - 20.10.2012, 10:38
Re: zGaming Roleplay - by x96664 - 23.01.2013, 15:25
Re: zGaming Roleplay - by Razor™ - 28.01.2013, 06:36
Respuesta: zGaming Roleplay - by Falc0n - 29.01.2013, 06:53
Re: zGaming Roleplay - by Marven - 25.02.2013, 09:49
Re: zGaming Roleplay - by ghzspark - 25.02.2013, 15:30
Re: zGaming Roleplay - by AiureaNet - 25.02.2013, 19:10
Re: zGaming Roleplay - by maximthepain - 26.02.2013, 12:38
Re: zGaming Roleplay - by PwnScripter - 26.02.2013, 13:11
Re: zGaming Roleplay - by ghzspark - 26.02.2013, 15:32
Re: zGaming Roleplay - by maximthepain - 26.02.2013, 19:04
Re: zGaming Roleplay - by Mitchy - 26.02.2013, 19:21
Re: zGaming Roleplay - by Stream - 26.02.2013, 19:26
Re: zGaming Roleplay - by Marven - 27.02.2013, 09:45
Re: zGaming Roleplay - by ewida - 03.03.2013, 11:16
Re: zGaming Roleplay - by Lusher - 04.03.2014, 08:29
Re: zGaming Roleplay - by Tagathron - 09.03.2014, 19:18
Re: zGaming Roleplay - by bluemoon - 10.03.2014, 10:18
Re: zGaming Roleplay - by NenzorRoller - 08.04.2014, 15:24

Forum Jump:


Users browsing this thread: 1 Guest(s)