Why does my server shut down if i do this
#1

Why does my server shut down if i do /adminduty and i have not choose my adminname or adminskin


pawn Код:
CMD:setadminname(playerid, params[])
{
    if(PlayerData[ID][AdminLevel] >= 1)
    {
        new string[128], newname[MAX_PLAYER_NAME];
        if(sscanf(params, "s", newname)) return SendClientMessage(playerid, COLOR_GREEN, "USAGE: /setadminname <name>");
        format(string, sizeof(string), "You set your admin name to %s", newname);
        SendClientMessage(playerid, COLOR_ORANGE, string);
        PlayerData[playerid][AdminName] = newname;
        adminNameCreated[playerid] = 1;
    }
    return 1;
}

CMD:setadminskin(playerid, params[])
{
    if(PlayerData[ID][AdminLevel] >= 1)
    {
        new string[128], newskin;
        if(sscanf(params, "i", newskin)) return SendClientMessage(playerid, COLOR_GREEN, "USAGE: /setadminskin <skinid>");
        format(string, sizeof(string), "You set your admin skin to %d", newskin);
        SendClientMessage(playerid, COLOR_ORANGE, string);
        PlayerData[playerid][AdminSkin] = newskin;
        adminSkinEnabled[playerid] = 1;
    }
    return 1;
}

CMD:adminduty(playerid, params[])
{
    if(PlayerData[ID][AdminLevel] >= 1)
    {
        if(PlayerData[ID][AdminDuty] == 0)
        {
            GetPlayerName(playerid, PlayerData[playerid][OriginalName], 24);
            SetPlayerName(playerid, PlayerData[playerid][AdminName]);
            PlayerData[playerid][OriginalSkin] = GetPlayerSkin(playerid);
            if(adminSkinEnabled[playerid] == 0)
                return SendClientMessage(playerid, COLOR_RED, "You have not set your admin skin, /setadminskin");
            SendClientMessage(playerid, COLOR_LIGHTBLUE, "You are now on admin duty");
            format(str2, sizeof(str2),"Admin %s Is now online",PlayerData[playerid][AdminName]);
            SetPlayerSkin(playerid, PlayerData[playerid][AdminSkin]);
            SetPlayerColor(playerid, COLOR_NAVY);
            SendClientMessageToAll(COLOR_GREEN,str2);
        }
        else
        {
            if(PlayerData[ID][AdminDuty] == 1)
            {
                SetPlayerName(playerid, PlayerData[playerid][OriginalName]);
                SetPlayerSkin(playerid, PlayerData[playerid][OriginalSkin]);
                if(adminNameCreated[playerid] == 0)
                    return SendClientMessage(playerid, COLOR_RED, "You have not set your admin name, /setadminname");
                SendClientMessage(playerid, COLOR_LIGHTBLUE, "You are now off admin duty");
                format(str2, sizeof(str2),"Admin %s Is now offline",PlayerData[playerid][AdminName]);
                SetPlayerColor(playerid, COLOR_WHITE);
                SendClientMessageToAll(COLOR_GREEN,str2);
            }
        }
    }
    return 1;
}

Thank You


Please Help Me Please
Reply
#2

Don't you already have a topic on this?

Anyway,

Are you sure this is the code that's causing the problem?
Reply
#3

https://sampwiki.blast.hk/wiki/Debugging
Reply
#4

Quote:
Originally Posted by Vince
Посмотреть сообщение
Tried just but when i do /adminduty my server CMD box just closes straight away


Thank You


Please Help Me Please
Reply
#5

Quote:
Originally Posted by Windows32
Посмотреть сообщение
Are you sure this is the code that's causing the problem?
(4char)
Reply
#6

Quote:
Originally Posted by Windows32
Посмотреть сообщение
(4char)
I think ..... The server shuts down if i do /adminduty


Thank You


Please Help Me Please
Reply
#7

Please Help Me Please
Reply
#8

Please Help Me Please
Reply
#9

And what if you remove these two/three commands? Is the server still shutting down then?
Reply
#10

Quote:
Originally Posted by Pinguinn
Посмотреть сообщение
And what if you remove these two/three commands? Is the server still shutting down then?
I have not tried


I need a good tutorial on how to save everyones stats when gmx


When i ever i do it it never saves the stats


Thank You


Please Help Me Please
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)