SA-MP Forums Archive
Why does my server shut down if i do this - 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: Why does my server shut down if i do this (/showthread.php?tid=337320)



Why does my server shut down if i do this - Scripter12345 - 25.04.2012

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


Re: Why does my server shut down if i do this - Elysian` - 25.04.2012

Don't you already have a topic on this?

Anyway,

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


Re: Why does my server shut down if i do this - Vince - 25.04.2012

https://sampwiki.blast.hk/wiki/Debugging


Re: Why does my server shut down if i do this - Scripter12345 - 25.04.2012

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


Re: Why does my server shut down if i do this - Elysian` - 25.04.2012

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


Re: Why does my server shut down if i do this - Scripter12345 - 25.04.2012

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


Thank You


Please Help Me Please


Re: Why does my server shut down if i do this - Scripter12345 - 25.04.2012

Please Help Me Please


Re: Why does my server shut down if i do this - Scripter12345 - 26.04.2012

Please Help Me Please


Re: Why does my server shut down if i do this - Pinguinn - 26.04.2012

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


Re: Why does my server shut down if i do this - Scripter12345 - 26.04.2012

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