[Ajuda] Public CronServer dando Crash no GM
#1

[I]Bem galera percebi que no log acusava muito a public cronserver e outras coisas entao tentei de varias formas resolver mais sempre dava erros emfim quero ajuda de vcs:


Linhas do Server log:
pawn Код:
[14:29:18] [debug] #0 native fwrite () [00405710] from samp-server.exe
[14:29:18] [debug] #1 0000a44c in ?? () from Dten03x.amx
[14:29:18] [debug] #2 0000b8b4 in ?? () from Dten03x.amx
[14:29:18] [debug] #3 0000b98c in ?? () from Dten03x.amx
[14:29:18] [debug] #4 001064c0 in public CronServe () from Dten03x.amx
Public:

pawn Код:
public CronServe()
{
    new string[256];

    minu++;
    if(horas == 0)
    {
        SetWorldTime(0);
        Faculdade2 = 0;
    }
    if(minu >= 59)
    {
        minu = 0;
        horas++;
        SetWorldTime(horas);
    }
    if(horas > 23)
    {
        horas = 0;
    }
    if(Relogio != Text:INVALID_TEXT_DRAW)
    {
        format(string, 25, "~w~%02d~g~:~w~%02d", horas, minu);
        TextDrawSetString(Relogio, string);
    }

    if(horas == 9 && minu == 00)
    {
        Faculdade2 = 1;
        MoveDynamicObject(ObjectsFix[21], 1214.0789794922, -1842.5186767578, 20.415674209595, 4.0);
        MoveDynamicObject(ObjectsFix[22], 1269.8895263672, -1842.5379638672, 20.511180877686, 4.0);
        GameTextForAll("~w~Faculdade ~p~Aberta!", 6000, 1);
    }
    if(horas == 12 && minu == 00)
    {
        Faculdade2 = 0;
        MoveDynamicObject(ObjectsFix[21], 1213.7843017578, -1842.4782714844, 15.156204223633, 4.0);
        MoveDynamicObject(ObjectsFix[22], 1270.2001953125, -1842.5798339844, 15.156204223633, 4.0);
        GameTextForAll("~w~Faculdade ~p~Fechada!", 6000, 1);
    }
    if(horas == 14 && minu == 00)
    {
        Faculdade2 = 1;
        MoveDynamicObject(ObjectsFix[21], 1214.0789794922, -1842.5186767578, 20.415674209595, 4.0);
        MoveDynamicObject(ObjectsFix[22], 1269.8895263672, -1842.5379638672, 20.511180877686, 4.0);
        GameTextForAll("~w~Faculdade ~p~Aberta!", 6000, 1);
    }
    if(horas == 17 && minu == 00)
    {
        Faculdade2 = 0;
        MoveDynamicObject(ObjectsFix[21], 1213.7843017578, -1842.4782714844, 15.156204223633, 4.0);
        MoveDynamicObject(ObjectsFix[22], 1270.2001953125, -1842.5798339844, 15.156204223633, 4.0);
        GameTextForAll("~w~Faculdade ~p~Fechada!", 6000, 1);
    }
    if(horas == 21 && minu == 00)
    {
        Faculdade2 = 1;
        MoveDynamicObject(ObjectsFix[21], 1214.0789794922, -1842.5186767578, 20.415674209595, 4.0);
        MoveDynamicObject(ObjectsFix[22], 1269.8895263672, -1842.5379638672, 20.511180877686, 4.0);
        GameTextForAll("~w~Faculdade ~p~Aberta!", 6000, 1);
    }
    if(horas == 24 && minu == 30)
    {
        Faculdade2 = 0;
        MoveDynamicObject(ObjectsFix[21], 1213.7843017578, -1842.4782714844, 15.156204223633, 4.0);
        MoveDynamicObject(ObjectsFix[22], 1270.2001953125, -1842.5798339844, 15.156204223633, 4.0);
        GameTextForAll("~w~Faculdade ~p~Fechada!", 6000, 1);
    }
    if(horas == 15 && minu == 00)
    {
        print("Salбrio pago ao(s) empregado(s) online!");
        Up();
    }

    totalon = 0;

    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            if(!IsPlayerNPC(i))
            {
                if(totalon == 0)
                {
                    totalon = 1;
                }
                else if(totalon > 0)
                {
                    totalon++;
                }
            }
            if(GetPlayerMoney(i) != GetPlayerGrana(i))
            {
                ResetPlayerMoney(i);
                GivePlayerMoney(i, GetPlayerGrana(i));
            }

            GetPlayerPos(i, PlayerCurrentPos[0], PlayerCurrentPos[1], PlayerCurrentPos[2]);

            if(!floatcmp(PlayerCurrentPos[0], PlayerLastPos[i][LastX]) && !floatcmp(PlayerCurrentPos[1], PlayerLastPos[i][LastY]))
            {
                PlayerAfkTicks[i]++;
            }
            else
            {
                PlayerAfkTicks[i] = 0;
            }
            PlayerLastPos[i][LastX] = PlayerCurrentPos[0];
            PlayerLastPos[i][LastY] = PlayerCurrentPos[1];
            PlayerLastPos[i][LastZ] = PlayerCurrentPos[2];

            if(PlayerAfkTicks[i] == MAX_IDLE_TIME*60 && PlayerInfo[i][Logged] == 1)
            {
                AFK[i] = 1;
                SetPlayerVirtualWorld(i, 1);
                SetCameraBehindPlayer(i);
                TogglePlayerControllable(i, 0);
                TextDrawShowForPlayer(i, AfkText);
                TextDrawShowForPlayer(i, AfkBackText);
                format(string, sizeof(string), "%s estб ausente e foi impedido(a) de upar!", GetPlayerNameEx(i));
                SendClientMessageToAll(0xFF9595AA, string);
            }

            format(file, sizeof(file), PASTA_CONTAS, GetPlayerNameEx(i));
            if(dini_Exists(file))
            {
                new Float:health;

                GetPlayerHealth(i, health);

                dini_IntSet(file, "Matou", matou[i]);
                dini_IntSet(file, "Morreu", morreu[i]);

                if(dini_Int(file, "usoudroga") == 1)
                {
                    SetPlayerHealth(i, health-2);
                }
                if(dini_Int(file, "Level") > MAX_PLAYER_LEVEL-1)
                {
                    dini_IntSet(file, "Level", MAX_PLAYER_LEVEL);
                }
                if(dini_Int(file, "Faculdade") > MAX_PLAYER_ESTUDO-1)
                {
                    dini_IntSet(file, "Faculdade", MAX_PLAYER_ESTUDO);
                }
                if(pAdmin[i] > 0)
                {
                    dini_IntSet(file, "Admin", pAdmin[i]);
                }
            }
        }
    }
    return 1;
}[/i]


Pfv Ajudem...
Reply
#2

pawn Код:
if(Relogio != Text:INVALID_TEXT_DRAW)
    {
        format(string, 25, "~w~%02d~g~:~w~%02d", horas, minu);
        TextDrawSetString(Relogio, string);
    }
Nao sei se e isso mas creio que toda modificacao nas txd tem que remostrar ao player . esta invalid text ta incorreto!
Reply
#3

Fiz um codigo mas nao sei se ta certo....

pawn Код:
if (minu <= 9){format(string,25,"~w~%d:0%d",horas,minu);}
    else {format(string,25,"~w~%d:%d",horas,minu);}
    TextDrawSetString(pRelogio,string);
Tem Algo errado? (tб compilando)
Reply
#4

Ajuda ae...
Reply
#5

https://sampforum.blast.hk/showthread.php?tid=460025

Espero ter ajudado
Reply
#6

https://sampforum.blast.hk/showthread.php?tid=460025

Espero ter ajudado
Reply
#7

Shadow tentei la fazer o tutorial das print e acho que o erro ta na if:

Server log:

pawn Код:
----------
Loaded log file: "server_log.txt".
----------

SA-MP Dedicated Server
----------------------
v0.3x, (C)2005-2013 SA-MP Team

[20:53:40]
[20:53:40] Server Plugins
[20:53:40] --------------
[20:53:40]  Loading plugin: crashdetect
[20:53:40]   CrashDetect v4.10 is OK.
[20:53:40]   Loaded.
[20:53:40]  Loading plugin: sscanf
[20:53:40]

[20:53:40]  ===============================

[20:53:40]       sscanf plugin loaded.    

[20:53:40]          Version:  2.8.1        

[20:53:40]    (c) 2012 Alex "******" Cole  

[20:53:40]  ===============================

[20:53:40]   Loaded.
[20:53:40]  Loading plugin: streamer
[20:53:40]

*** Streamer Plugin v2.6.1 by Incognito loaded ***

[20:53:40]   Loaded.
[20:53:40]  Loading plugin: MapAndreas
[20:53:40]   Loaded.
[20:53:40]  Loading plugin: Whirlpool
[20:53:40]  
[20:53:40]  ==================
[20:53:40]  
[20:53:40]   Whirlpool loaded
[20:53:40]  
[20:53:40]  ==================
[20:53:40]  
[20:53:40]   Loaded.
[20:53:40]  Loading plugin: rwthread
[20:53:40] Threaded fread/fwrite
[20:53:40]   Loaded.
[20:53:40]  Loaded 6 plugins.

[20:53:40]
[20:53:40] Ban list
[20:53:40] --------
[20:53:40]  Loaded: samp.ban
[20:53:40]
[20:53:40]
[20:53:40] Filterscripts
[20:53:40] ---------------
[20:53:40]   Loading filterscript 'SamSites041.amx'...
[20:53:40]   Loading filterscript 'RCONCMDPLUS.amx'...
[20:53:40]
___________________________________________
[20:53:40]           Comandos Extras para Rcon          
[20:53:40] ___________________________________________

[20:53:40]   Loaded 2 filterscripts.

[20:53:48] * O nick esta sendo temporarimente usado para kickar crashers:
[20:53:48]  _______________________


[20:53:48]
--------------------------------------
[20:53:48]  Surface To Air Missiles System Loaded
[20:53:48]                  0.4.1
[20:53:48] --------------------------------------

[20:53:48] [nPlayer:] Category ID 0 (Trance) created.
[20:53:48] [nPlayer:] Item ID 0 (Discover Trance Radio) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 1 (Digitally Imported - Trance) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 2 (Trance.FM) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 3 (TranceRadio.CH) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 4 (Afterhours FM) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 5 (Club Lounge Radio - Trance td) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 6 (1Mix Radio) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 7 (1.FM Radio - Trance) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 8 (Digitally Imported - Vocal Trance) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 9 (NERadio International) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 10 (Chromanova.FM) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 11 (Bassfabrik) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 12 (Digitally Imported - DJ Mixes) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 13 (Digitally Imported - Progressive) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 14 (Afterhours FM - DJS) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 15 (NERadio Sweden) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 16 (p s y r a d i o FM) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 17 (PulsRadio Version Trance) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 18 (Digitally Imported - Classic Trance) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 19 (SomaFM - Tag's Trip) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 20 (Mika FM) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 21 (Digitally Imported - Breaks) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 22 (PSYCHEDELIK) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 23 (PSYCHEDELIK - Trance Flux) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 24 (1Club.FM - Trance) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 25 (TranceSection.FM) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 26 (1Club.FM - 24/7 Trance Mixes) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 27 (Shathor) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 28 (DJTiestoStream.NL) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 29 (Trancemission.FM) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 30 (Dance Radio Global - Trance) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 31 (ETN fm - Trance) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 32 (Trance Elements) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 33 (Techno FM - Trance) created and attached to Trance.
[20:53:48] [nPlayer:] Item ID 34 (Radio Seven) created and attached to Trance.
[20:53:48] [nPlayer:] Category ID 1 (Local) created.
[20:53:48] [nPlayer:] Item ID 35 (Cool FM 97.4 FM) created and attached to Local.
[20:53:48] [nPlayer:] Item ID 36 (Citybeat 96.7 FM) created and attached to Local.
[20:53:48] [nPlayer:] Item ID 37 (IUR FM) created and attached to Local.
[20:53:48] [nPlayer:] Item ID 38 (U105.8FM) created and attached to Local.
[20:53:48] [nPlayer:] Item ID 39 (Carrickfergus 106.7 FM) created and attached to Local.
[20:53:48] [nPlayer:] Item ID 40 (Blast 106.4 FM) created and attached to Local.
[20:53:48] [nPlayer:] Category ID 2 (Holidays) created.
[20:53:48] [nPlayer:] Item ID 41 (Christmas Classics - Word Of Truth Radio) created and attached to Holidays.
[20:53:48] [nPlayer:] Item ID 42 (Christmas Radio Network) created and attached to Holidays.
[20:53:48] [nPlayer:] Category ID 3 (Country) created.
[20:53:48] [nPlayer:] Item ID 43 (181.Fm - Kickin Country - Today'
s Best Country!) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 44 (DRS 2006 - Country Radio Switzerland) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 45 (CMR Nashville) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 46 (The World Net Radio - Country Oldies) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 47 (181.Fm - Highway 181 (Classic Country)) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 48 (Country 108 - Your Country Music Station - 247) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 49 (1.FM - Country) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 50 (WKRK Radio) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 51 (1.FM - Absolutely Country Hits) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 52 (Nashville Classics) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 53 (HPR1 - Classic Country) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 54 (Active Radio US) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 55 (Boot Liquor) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 56 (Nashville FM) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 57 (UK Country Radio) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 58 (Super Country) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 59 (Country Music24) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 60 (The World Net Radio - Country) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 61 (Steel Radio) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 62 (Trucknet Radio) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 63 (Lonestar 101 - Texas Country) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 64 (The New Highway - 40 Country) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 65 (Radioio - Classic Country) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 66 (Country Crossroads Radio) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 67 (Radio Country Club) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 68 (KLMR AM Classic Country) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 69 (1.FM - Absolute Country Hits) created and attached to Country.
[20:53:48] [nPlayer:] Item ID 70 (The Country Top 30) created and attached to Country.
[20:53:48] [nPlayer:] Category ID 4 (Hardstyle) created.
[20:53:48] [nPlayer:] Item ID 71 (Hard.FM - The #1 Hardstyle Radio) created and attached to Hardstyle.
[20:53:48] [nPlayer:] Item ID 72 (Digitally Imported - Hardstyle) created and attached to Hardstyle.
[20:53:48] [nPlayer:] Item ID 73 (Q-Dance) created and attached to Hardstyle.
[20:53:48] [nPlayer:] Item ID 74 (Hardsection FM) created and attached to Hardstyle.
[20:53:48] [nPlayer:] Item ID 75 (Hardbase FM) created and attached to Hardstyle.
[20:53:48] [nPlayer:] Item ID 76 (Clubsoundz FM) created and attached to Hardstyle.
[20:53:48] [nPlayer:] Category ID 5 (Dubstep) created.
[20:53:48] [nPlayer:] Item ID 77 (Dubstep FM) created and attached to Dubstep.
[20:53:48] [nPlayer:] Item ID 78 (Sensimedia - Strictly Dubstep & Bass) created and attached to Dubstep.
[20:53:48] [nPlayer:] Item ID 79 (Filth FM) created and attached to Dubstep.
[20:53:48] [nPlayer:] Item ID 80 (DubstepLive Radio (DNBTV)) created and attached to Dubstep.
[20:53:48] [nPlayer:] Item ID 81 (Shakedown FM) created and attached to Dubstep.
[20:53:48] [nPlayer:] Item ID 82 (Digitally Imported - Dubstep) created and attached to Dubstep.
[20:53:48] [nPlayer:] Item ID 83 (Rough Tempo) created and attached to Dubstep.
[20:53:48] [nPlayer:] Category ID 6 (Dance) created.
[20:53:48] [nPlayer:] Item ID 84 (Gaydar Radio) created and attached to Dance.
[20:53:48] [nPlayer:] Item ID 85 (MaxDance - Trance/Dance) created and attached to Dance.
[20:53:48] [nPlayer:] Item ID 86 (Energy FM) created and attached to Dance.
[20:53:48] [nPlayer:] Item ID 87 (Digitally Imported - Hard Dance) created and attached to Dance.
[20:53:48] [nPlayer:] Item ID 88 (Digitally Imported - Eurodance) created and attached to Dance.
[20:53:48] [nPlayer:] Item ID 89 (Soundic Radio) created and attached to Dance.
[20:53:48] [nPlayer:] Item ID 90 (NonStopPlay - Dance Radio) created and attached to Dance.
[20:53:48] [nPlayer:] Item ID 91 (Gay FM) created and attached to Dance.
[20:53:48] [nPlayer:] Category ID 7 (Metal) created.
[20:53:48] [nPlayer:] Item ID 92 (Rockradio1.Com - Classic Hard Rock & Heavy Metal) created and attached to Metal.
[20:53:48] [nPlayer:] Item ID 93 (SnakeNet Metal Radio) created and attached to Metal.
[20:53:48] [nPlayer:] Item ID 94 (1.FM - High Voltage) created and attached to Metal.
[20:53:48] [nPlayer:] Item ID 95 (Netrock101) created and attached to Metal.
[20:53:48] [nPlayer:] Item ID 96 (ChroniX Metal) created and attached to Metal.
[20:53:48] [nPlayer:] Item ID 97 (Death FM) created and attached to Metal.
[20:53:48] [nPlayer:] Item ID 98 (Hard Rock Radio Live) created and attached to Metal.
[20:53:48] [nPlayer:] Item ID 99 (Braingell) created and attached to Metal.
[20:53:48] [nPlayer:] Item ID 100 (Metal Tome) created and attached to Metal.
[20:53:48] [nPlayer:] Category ID 8 (House) created.
[20:53:48] [nPlayer:] Item ID 101 (House Radio) created and attached to House.
[20:53:48] [nPlayer:] Item ID 102 (SSRadio) created and attached to House.
[20:53:48] [nPlayer:] Item ID 103 (Dance Radio Global - Progressive House) created and attached to House.
[20:53:48] [nPlayer:] Item ID 104 (ETN fm - House) created and attached to House.
[20:53:48] [nPlayer:] Category ID 9 (Chillout) created.
[20:53:48] [nPlayer:] Item ID 105 (Digitally Imported - Chillout Dreams) created and attached to Chillout.
[20:53:48] [nPlayer:] Item ID 106 (Chillout Radio Greece - Chillout/Ambient/Lounge Music) created and attached to Chillout.
[20:53:48] [nPlayer:] Item ID 107 (4clubbers) created and attached to Chillout.
[20:53:48] [nPlayer:] Category ID 10 (80s) created.
[20:53:48] [nPlayer:] Item ID 108 (Offshore Music Radio) created and attached to 80s.
[20:53:48] [nPlayer:] Item ID 109 (More Fm - Classic Rock Radio) created and attached to 80s.
[20:53:48] [nPlayer:] Item ID 110 (ABC 80s Ireland) created and attached to 80s.
[20:53:48] [nPlayer:] Item ID 111 (Threeten Radio) created and attached to 80s.
[20:53:48] [nPlayer:] Item ID 112 (Glam FM) created and attached to 80s.
[20:53:48] [nPlayer:] Item ID 113 (Absolute 80s) created and attached to 80s.
[20:53:48] [nPlayer:] Item ID 114 (.977 The 80s Channel) created and attached to 80s.
[20:53:48] [nPlayer:] Item ID 115 (Kick Radio - 80s & 90s) created and attached to 80s.
[20:53:48] [nPlayer:] Item ID 116 (Dance Groove Radio) created and attached to 80s.
[20:53:48] [nPlayer:] Item ID 117 (80s Planet) created and attached to 80s.
[20:53:48] [nPlayer:] Category ID 11 (Techno) created.
[20:53:48] [nPlayer:] Item ID 118 (Techno FM) created and attached to Techno.
[20:53:48] [nPlayer:] Item ID 119 (JumpStation.FM) created and attached to Techno.
[20:53:48] [nPlayer:] Category ID 12 (Hardcore) created.
[20:53:48] [nPlayer:] Item ID 120 (Digitally Imported - Happy Hardcore) created and attached to Hardcore.
[20:53:48] [nPlayer:] Item ID 121 (Hardcore Radio) created and attached to Hardcore.
[20:53:48] [nPlayer:] Item ID 122 (Hardcore Power Radio) created and attached to Hardcore.
[20:53:48] [nPlayer:] Category ID 13 (RnB) created.
[20:53:48] [nPlayer:] Item ID 123 (Defjay) created and attached to RnB.
[20:53:48] [nPlayer:] Item ID 124 (KISS) created and attached to RnB.
[20:53:48] [nPlayer:] Category ID 14 (Rock) created.
[20:53:48] [nPlayer:] Item ID 125 (Atlantic Sound Factory) created and attached to Rock.
[20:53:48] [nPlayer:] Item ID 126 (Regular Rotation) created and attached to Rock.
[20:53:48] [nPlayer:] Item ID 127 (Noise FM) created and attached to Rock.
[20:53:48] [nPlayer:] Item ID 128 (Idobi Radio) created and attached to Rock.
[20:53:48] [nPlayer:] Item ID 129 (Beatles Radio) created and attached to Rock.
[20:53:48] [nPlayer:] Item ID 130 (Absolute Radio) created and attached to Rock.
[20:53:48] [nPlayer:] Item ID 131 (181.FM - The Eagle (Classic Rock)) created and attached to Rock.
[20:53:48] [nPlayer:] Item ID 132 (Rock Radio1) created and attached to Rock.
[20:53:48] [nPlayer:] Item ID 133 (Megarock Radio) created and attached to Rock.
[20:53:48] [nPlayer:] Category ID 15 (Drum & Bass) created.
[20:53:48] [nPlayer:] Item ID 134 (Bassjunkees.com - Drum & Bass, Oldskool, Jungle & Dubstep) created and attached to Drum & Bass.
[20:53:48] [nPlayer:] Item ID 135 (Digitally Imported - Drum and Bass) created and attached to Drum & Bass.
[20:53:48] [nPlayer:] Item ID 136 (DnB Heaven) created and attached to Drum & Bass.
[20:53:48] [nPlayer:] Item ID 137 (DnB Radio) created and attached to Drum & Bass.
[20:53:48] [nPlayer:] Item ID 138 (UK Bass Radio) created and attached to Drum & Bass.
[20:53:48] [nPlayer:] Item ID 139 (Destroyer) created and attached to Drum & Bass.
[20:53:48] [nPlayer:] Item ID 140 (Bassdrive) created and attached to Drum & Bass.
[20:53:48] [nPlayer:] Category ID 16 (Misc) created.
[20:53:48] [nPlayer:] Item ID 141 (HIT104 - Your Top 40 Channel) created and attached to Misc.
[20:53:48] [nPlayer:] Item ID 142 (.977 The Hits Channel) created and attached to Misc.
[20:53:48] [nPlayer:] Item ID 143 (Jack FM - All Hit Radio) created and attached to Misc.
[20:53:48] [nPlayer:] Category ID 17 (Electro) created.
[20:53:48] [nPlayer:] Item ID 144 (Electro Radio) created and attached to Electro.
[20:53:48] [nPlayer:] Item ID 145 (Digitally Imported - Electro House) created and attached to Electro.
[20:53:48] [nPlayer:] Item ID 146 (Tuff and Twisted) created and attached to Electro.
[20:53:48] [nPlayer:] Item ID 147 (House Section FM) created and attached to Electro.
[20:53:48] Objetos: 1247 carregado(s) de Objetos/Bases.txt
[20:53:48] Objetos: 4123 carregado(s) de Objetos/Casas.txt
[20:53:48] Objetos: 1358 carregado(s) de Objetos/Dten.txt
[20:53:48] Objetos: 306 carregado(s) de Objetos/Games.txt
[20:53:48] Objetos: 26 carregado(s) de Objetos/Jump.txt
[20:53:49] Objetos: 1552 carregado(s) de Objetos/Outros.txt
[20:53:49] Veнculos: 0 carregado(s) de Conce/setados.txt
[20:53:49] Veнculos: 3 carregado(s) de vehicles/trains.txt
[20:53:49] Veнculos: 15 carregado(s) de vehicles/lv_law.txt
[20:53:49] Veнculos: 38 carregado(s) de vehicles/sf_law.txt
[20:53:49] Veнculos: 24 carregado(s) de vehicles/ls_law.txt
[20:53:49] Spawns: 8 carregado(s) de SpawnPositions.txt
[20:53:49]



Servidor iniciado com sucesso!


[20:53:49] Total de Objetos: 8635
[20:53:49] Total de Pickups: 76
[20:53:49] Total de Checkpoints: 83
[20:53:49] Total de Race Checkpoints: 0
[20:53:49] Total de MapIcons: 74
[20:53:49] Total de TextLabels: 69
[20:53:49] Total de Areas: 0
[20:53:49]

* Nicks proibidos!
[20:53:49] * os seguintes nicks estгo proibidos de entrar no servidor:
[20:53:49]  com[1-9], lpt[1-9], ipt[1-9], clock$, nul, aux, prn, con,
        com1.aux.[a-zA-Z0-9]


[20:53:49]
=========================================
[20:53:49]                 Brasil Vida Real [RPG]              
[20:53:49] =========================================

[20:53:49] Number of vehicle models: 36
[20:53:49] Incoming connection: 127.0.0.1:49478
[20:53:49] Incoming connection: 127.0.0.1:49479
[20:53:49] Incoming connection: 127.0.0.1:49477
[20:53:49] Incoming connection: 127.0.0.1:49480
[20:53:50] 1
[20:53:50] 2
[20:53:50] 3
[20:53:50] 3
[20:53:50] 4
[20:53:50] 5
[20:53:50] 6
[20:53:50] 7
[20:53:50] 8
[20:53:50] 9
[20:53:50] 10
[20:53:50] 11
[20:53:50] 1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
[20:53:50] 1.1
if:

pawn Код:
print("1.1");
        if(IsPlayerConnected(i))
        {
if toda:

pawn Код:
print("1.1");
        if(IsPlayerConnected(i))
        {
            print("1.2");
            if(!IsPlayerNPC(i))
            {
                print("1.3");
                if(totalon == 0)
                {
                    totalon = 1;
                }
                else if(totalon > 0)
                {
                    totalon++;
                }
            }
eu nao vejo erro nisso poderia me ajudar?
Reply
#8

Algem ajuda ai pfv... to querendo arrumar muito esse crash...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)