Server crashed +REP
#1

What does these debug warnings mean when the server crashed, how can I fix it:

[02:32:44] [debug] AMX backtrace:
[02:32:44] [debug] #0 00000039 in ?? (0x00000032, 0x00000000, 0x65c008ba, 0x00000000, 0x00000032, 0x00000030, 0x00000032, 0x0000002e, 0x00000036, 0x00000037, ... <3 arguments>) from LSGW.amx
[02:32:44] [debug] #1 00000039 in public OnDialogResponse () from LSGW.amx

Under OnDialogResponse:

pawn Код:
if(dialogid == DIALOG_RULES2)
    {
        if(response) // If they clicked 'Yes' or pressed enter
        {
            SendClientMessage(playerid, 0x19E620FF, "Thank You For Agreeing To The Server Rules!");
        }
        else // Pressed ESC or clicked cancel
        {
            KickWithMessage(playerid, 0xFF0004FF, "You MUST Agree To The Server Rules To Play Here.");
            //For info & code of this function please refer to the bottom of this article.
        }
        return 1; // We handled a dialog, so return 1. Just like OnPlayerCommandText.
    }
if(dialogid == DIALOG_REGISTER)
    {
            if (!response) return Kick(playerid);
            if(response)
            {
                new ip[16];
                GetPlayerIp(playerid, ip, sizeof(ip));
                if(!strlen(inputtext)) return ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_INPUT, ""COL_WHITE"Registering...",""COL_RED"You have entered an invalid password.\n"COL_WHITE"Type your password below to register a new account.","Register","Quit");
                PlayerInfo[playerid][pPass] = udb_hash(inputtext);
                new INI:File = INI_Open(UserPath(playerid));
                INI_SetTag(File,"data");
                INI_WriteInt(File,"Password",udb_hash(inputtext));
                INI_WriteInt(File,"Cash",0);
                INI_WriteInt(File,"Admin",0);
                INI_WriteInt(File,"Kills",0);
                INI_WriteInt(File,"Deaths",0);
                INI_WriteInt(File,"Score",0);
                INI_WriteInt(File,"Drugs",0);
                INI_WriteInt(File,"Adrenaline",0);
                INI_WriteInt(File,"Registered",1);
                INI_WriteInt(File,"Logged",1);
                INI_WriteInt(File,"VIPLevel",0);
                INI_WriteInt(File,"FavouriteSkin",-1);
                INI_WriteInt(File,"FavouriteSong",0);
                INI_WriteInt(File,"BankMoney",0);
                INI_WriteInt(File,"Daysalive",0);
                INI_WriteInt(File,"Banned",0);
                INI_WriteString(File,"IP",ip);
                INI_WriteInt(File,"MissionsCompleted",0);
                INI_WriteInt(File,"MissionsFailed",0);
                INI_WriteInt(File,"Robbed",0);
                INI_WriteInt(File,"MaximumRobbed",0);
                INI_WriteInt(File,"Muted",0);
                INI_WriteInt(File,"Jailed",0);
                INI_WriteInt(File,"MuteWarnings",0);
                INI_WriteInt(File,"MaxMuteWarnings",0);
                INI_WriteInt(File,"Warnings",0);
                INI_WriteInt(File,"TimesKicked",0);
                INI_WriteInt(File,"EventsWon",0);
                INI_WriteInt(File,"EventsLost",0);
                INI_WriteInt(File,"StartingMusic",0);
                INI_Close(File);
                PlayerPlaySound(playerid,1057,0.0,0.0,0.0);
                PlayerAlreadyRegisteredIn[playerid] = 1;
                PlayerAlreadyLoggedIn[playerid] = 1;
                Info[playerid][Logged] = 1;
                Info[playerid][Registered] = 1;
                Info[playerid][Favouriteskin] = -1;
                UserTimer[playerid] = SetTimerEx("UserSaver", 180000, false, "d", playerid);
                PlayerDays[playerid] = SetTimerEx("DaysAlive", 1380000, true, "d", playerid);
                ShowPlayerDialog(playerid, DIALOG_SUCCESS_1, DIALOG_STYLE_MSGBOX,""COL_WHITE"Success!",""COL_GREEN"Successfully Registered An Account!","Ok","");
            }
            return 1;
    }

    if(dialogid == DIALOG_LOGIN)
    {
            new LoginAttempts[MAX_PLAYERS];
            if ( !response ) return Kick ( playerid );
            if( response )
            {
                new ip[16], Message3[128];
                GetPlayerIp(playerid, ip, sizeof(ip));
                if(udb_hash(inputtext) == PlayerInfo[playerid][pPass])
                {
                    SetPlayerScore(playerid, LPinfo[playerid][Score]);
                    Info[playerid][Logged] = 1;
                    INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);

                    new INI:File = INI_Open(UserPath(playerid));
                    INI_SetTag(File,"data");
                    INI_WriteInt(File,"Logged",1);
                    INI_WriteString(File,"IP",ip);
                    INI_Close(File);
                    if(PlayerInfo[playerid][pAdmin] == 0 && Info[playerid][VIPLevel] == 0)
                    {
                    format(Message3, sizeof(Message3), "You Have Logged In As A {00FFFB}Registered Player{FFF700}."), SendClientMessage(playerid, 0xFFF700FF, Message3);
                    }
                    if(PlayerInfo[playerid][pAdmin] > 0)
                    {
                       switch(PlayerInfo[playerid][pAdmin])
                       {
                       case 1: AdmRank = "Trial Moderator";
                       case 2: AdmRank = "Moderator";
                       case 3: AdmRank = "Master Moderator";
                       case 4: AdmRank = "Trial Administrator";
                       case 5: AdmRank = "Administrator";
                       case 6: AdmRank = "Master Administrator";
                       case 7: AdmRank = "Head Administrator";
                       case 8: AdmRank = "Trusted Administrator";
                       case 9: AdmRank = "Co-Owner";
                       case 10: AdmRank = "Owner";
                       }
                       if(Info[playerid][VIPLevel] > 0)
                       {
                           switch(Info[playerid][VIPLevel])
                           {
                           case 1: AccType = "Bronze";
                           case 2: AccType = "Silver";
                           case 3: AccType = "Gold";
                           }
                           format(Message3, sizeof(Message3), "You Have Logged In As A(n) {00FFFB}%s Level %d{FFF700} With A {FF00EA}%s{FFF700} Account.", AdmRank, PlayerInfo[playerid][pAdmin], AccType), SendClientMessage(playerid, 0xFFF700FF, Message3);
                           VIPReward[playerid] = SetTimerEx("VIPMoney", 1380000, true, "d", playerid);
                           SendClientMessage(playerid, 0xFFF700FF, "You Will Be Given Some VIP Money While Living Whole Gameday.");
                           if(Info[playerid][VIPLevel] >= 1)
                           {
                           if(Info[playerid][Favouriteskin] < -1 || Info[playerid][Favouriteskin] > 299)
                           {
                             Autouseskin[playerid] = 1;
                           }
                           }
                       }
                       else
                       {
                           format(Message3, sizeof(Message3), "You Have Logged In As A(n) {00FFFB}%s Level %d{FFF700}.", AdmRank, PlayerInfo[playerid][pAdmin]), SendClientMessage(playerid, 0xFFF700FF, Message3);
                           OnDuty[playerid] = 0;
                       }
                    }
                    else if(Info[playerid][VIPLevel] > 0)
                    {
                       switch(Info[playerid][VIPLevel])
                       {
                       case 1: AccType = "Bronze";
                       case 2: AccType = "Silver";
                       case 3: AccType = "Gold";
                       }
                       format(Message3, sizeof(Message3), "You Have Logged In As A {FF00EA}%s{FFF700} Account.", AccType), SendClientMessage(playerid, 0xFFF700FF, Message3);
                       VIPReward[playerid] = SetTimerEx("VIPMoney", 1380000, true, "d", playerid);
                       SendClientMessage(playerid, 0xFFF700FF, "You Will Be Given Some VIP Money While Living Whole Gameday.");
                       if(Info[playerid][VIPLevel] >= 1)
                       {
                       if(Info[playerid][Favouriteskin] < -1 || Info[playerid][Favouriteskin] > 299)
                       {
                         Autouseskin[playerid] = 1;
                       }
                       }
                       }
                    PlayerPlaySound(playerid,1057,0.0,0.0,0.0);
                    PlayerAlreadyLoggedIn[playerid] = 1;
                    PlayerAlreadyRegisteredIn[playerid] = 1;
                    GivePlayerMoney(playerid, PlayerInfo[playerid][pCash]);
                    SetPlayerScore(playerid, LPinfo[playerid][Score]);
                    ShowPlayerDialog(playerid, DIALOG_SUCCESS_2, DIALOG_STYLE_MSGBOX,""COL_WHITE"Success!",""COL_GREEN"You have successfully logged in!","Ok","");
                    UserTimer[playerid] = SetTimerEx("UserSaver", 180000, false, "d", playerid);
                    PlayerDays[playerid] = SetTimerEx("DaysAlive", 1380000, true, "d", playerid);
                }
                else
                {
                    ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,""COL_WHITE"Login",""COL_RED"You have entered an incorrect password.\n"COL_WHITE"Type your password below to login.","Login","Quit");
                    LoginAttempts[playerid] ++;
                }
                return 1;
            }
    }
Please help.
Reply
#2

Compile the script with this http://forum.sa-mp.com/showpost.php?...32&postcount=7
And then run your server and post the new crash log here.
It will give more information which makes it easier to help you.
Reply
#3

I don't understand whats that
Reply
#4

Quote:
Originally Posted by Youssef214
Посмотреть сообщение
I don't understand whats that
Create a "pawn.cfg" in your pawno directory then add -d3 to it and save.
And then compile and post the new server crash log.
Reply
#5

anyone? this didn't work
Reply
#6

now it showed me:
[18:22:07] [debug] Server crashed while executing LSGW.amx
[18:22:07] [debug] AMX backtrace:
[18:22:07] [debug] #0 00000033 in ?? (0x00000035, 0x00000037, 0x00000000, 0x00000000, 0x00000038, 0x00000035, 0x0000002e, 0x00000032, 0x00000030, 0x00000037, ... <2 arguments>) from LSGW.amx
[18:22:07] [debug] #1 00000033 in public OnDialogResponse () from LSGW.amx
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)