Beiträge von droggelbecher

    dann hätte ich noch ne frage wegen meinen radio system :
    ich möchte ein radio machen hat geklapt doch keine musik weis net wies klappt mom poste mal :



    if(listitem == 11)
    {
    GameTextForPlayer(playerid, "~r~Iloveradio", 500,3);
    PlayAudioStreamForPlayer(playerid, "http://iloveradio.radio.de/"); // IloveRadio
    }


    das soll von dem link die musik abspielen

    Hallo habe ein script mit UCL's(Undercoverlights für sultan) möchte aber machen das es auch für Bullet geht kann mir jemand sagen wie ? ich poste hier mal das script:



    //============================= Undercover Lights ======================//


    if(!strcmp("/ucl",cmdtext,true))
    {
    if(IsACop(playerid))
    {
    if(GetVehicleModel(GetPlayerVehicleID(playerid)) == 560)
    {
    if(UCL[playerid] == 0)
    {
    SetPVarInt(playerid, "Status", 1);
    SetPVarInt(playerid, "undercover", CreateObject(18646,0,0,0,0,0,0));
    AttachObjectToVehicle(GetPVarInt(playerid, "undercover"), GetPlayerVehicleID(playerid), -0.5, -0.2, 0.8, 2.0, 2.0, 3.0);
    SendClientMessage(playerid, 0xFFFFFFAA, "Undercover Lichter Installiert. Lösch sie wieder mit /ucldel");
    UCL[playerid] = 1;
    }
    }
    else
    {
    SendClientMessage(playerid,COLOR_GRAD1,"* Du musst in einem Undercovercar(Sultan) sitzen!");
    }
    }
    else
    {
    SendClientMessage(playerid,COLOR_GRAD1,"* Du bist kein Polizist!");
    }
    return 1;
    }


    if(!strcmp("/ucldel",cmdtext,true))
    {
    if(IsACop(playerid))
    {
    if(GetVehicleModel(GetPlayerVehicleID(playerid)) == 560)
    {
    if(UCL[playerid] == 1)
    {
    DeletePVar(playerid, "Status");
    DestroyObject(GetPVarInt(playerid, "undercover"));
    SendClientMessage(playerid,COLOR_GRAD1,"* Undercover Lichter entfernt.");
    UCL[playerid] = 0;
    }
    }
    else
    {
    SendClientMessage(playerid,COLOR_GRAD1,"* Du musst in einem Undercovercar(Sultan)(Bullet) sitzen!");
    }
    }
    else
    {
    SendClientMessage(playerid,COLOR_GRAD1,"* Du bist kein Polizist!");
    }
    return 1;
    }

    Lipta hast du skype wenn ja adde mi´ch mal ich heiße : jokerx333
    da das is glaube das register:


    Function OnPlayerRegister(playerid, password[])
    {
    if(IsPlayerConnected(playerid))
    {
    new string3[64];
    new playername3[MAX_PLAYER_NAME];
    GetPlayerName(playerid, playername3, sizeof(playername3));
    format(string3, sizeof(string3), "/Accounts/%s.ini", playername3);
    new File: hFile = fopen(string3, io_write);
    if (hFile)
    {


    oder das? ich weis es net:


    ShowPlayerDialog(playerid,DIALOG_REG2,DIALOG_STYLE_INPUT,"Account erstellen","Gib das Passwort für deinen Account ein:","OK","Abbrechen");
    }
    else
    {
    ShowPlayerDialog(playerid,DIALOG_REG,DIALOG_STYLE_MSGBOX,"Account","Du benötigst einen Account, um auf diesem Server zu spielen!","Erstellen","Abbrechen");
    }
    }


    if(dialogid == DIALOG_REG2)
    {
    if(response && strlen(inputtext) > 0)
    {
    OnPlayerRegister(playerid,inputtext);
    }
    else
    {
    ShowPlayerDialog(playerid,DIALOG_REG2,DIALOG_STYLE_INPUT,"Account erstellen","Gib das Passwort für deinen Account ein:","OK","Abbrechen");
    }
    }

    ehm habe das jetz doch geschaaft habe das next era reallife script und da kommt halt register dann register ich mich auf einmal kommt ganix mehr schaut selbst mal IP : 82.211.54.82:7312

    achja das sind die erros:


    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(1820) : warning 201: redefinition of constant/macro (symbol "CPInfo")
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(3360) : error 017: undefined symbol "DestroyDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(3361) : error 017: undefined symbol "DestroyDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(3362) : error 017: undefined symbol "DestroyDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(3363) : error 017: undefined symbol "DestroyDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(3618) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(3652) : error 017: undefined symbol "DestroyDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(3668) : error 017: undefined symbol "DestroyDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(6377) : warning 225: unreachable code
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(7196) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(7229) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(7254) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(7279) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(13447) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(13627) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(13628) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(13629) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(13630) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(13631) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(13632) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(13633) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(13634) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(13635) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(13636) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(13637) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(13638) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(13639) : error 017: undefined symbol "CreateDynamicObject"
    C:\Users\florian-skype\Downloads\samp03dsvr_R2_win32\gamemodes\GNE.pwn(13640) : error 017: undefined symbol "CreateDynamicObject"


    Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    26 Errors.


    PS: es sind über 1260 solche { klammern und 7 {} solche

    C:\------\-----\-----\samp03dsvr_R2_win32\pawno\include\dini.inc(24) : fatal error 100: cannot read from file: "dutils"


    Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    1 Error.

    Azure:
    C:\------\-----\-----\samp03dsvr_R2_win32\gamemodes\GNE.pwn(36) : fatal error 100: cannot read from file: "dini"


    Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    1 Error.

    die amx löschte ich bereits aber es brachte nix.


    den compiler habe ich vonem freund kp obs daran lag finde den linbk von compiler in sa-mp.com net bitte um link wäre echt nett

    hallo mein Gamemode kann ich nicht compilen naja also schon aber es ist nur 1kb groß obwohls ein rieeesen script ist erro meldung seht ihr hier:
    ________________________________________________________________________________



    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase


    Header size: 204 bytes
    Code size: 8 bytes
    Data size: 0 bytes
    Stack/heap size: 32768 bytes; estimated max. usage=6418500 cells (25674000 bytes)
    Total requirements: 32980 bytes
    ________________________________________________________________________________


    die .amx datei ist nur 1kb groß bitte um hilfe das script allgemein ist 2.67MB Groß bitte hilfe
    kontakmöglichkeit:
    Skype: jokerx333


    MfG Droggelbecher

    [00:29:57]
    [00:29:57] Server Plugins
    [00:29:57] --------------
    [00:29:57] Loading plugin: sscanf.so
    [00:29:57]


    [00:29:57] ===============================


    [00:29:57] sscanf plugin loaded.


    [00:29:57] (c) 2009 Alex "Y_Less" Cole


    [00:29:57] ===============================


    [00:29:57] Loaded.
    [00:29:57] Loading plugin: streamer.so
    [00:29:57]


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


    [00:29:57] Loaded.
    [00:29:57] Loading plugin: audio.so
    [00:29:57]
    *** Audio Plugin v0.4 by Incognito loaded ***


    [00:29:57] Loaded.
    [00:29:57] Loaded 3 plugins.


    [00:29:57]
    [00:29:57] Ban list
    [00:29:57] --------
    [00:29:57] Loaded: samp.ban
    [00:29:57]
    [00:29:57]
    [00:29:57] Filterscripts
    [00:29:57] ---------------
    [00:29:57] Loaded 0 filterscripts.


    [00:29:58] HouseInfo:0 Owner:The State hTakings 2045 hVec 418 VWorld 0
    [00:29:58] HouseInfo:1 Owner:Paddy__Corleone hTakings 5261 hVec 418 VWorld 0
    [00:29:58] HouseInfo:2 Owner:The State hTakings 50 hVec 418 VWorld 0
    [00:29:58] HouseInfo:3 Owner:King7 hTakings 5 hVec 418 VWorld 0
    [00:29:58] HouseInfo:4 Owner:Zu Verkaufen hTakings 0 hVec 542 VWorld 0
    [00:29:58] HouseInfo:5 Owner:The State hTakings 0 hVec 418 VWorld 0
    [00:29:58] HouseInfo:6 Owner:The State hTakings 0 hVec 418 VWorld 0
    [00:29:58] HouseInfo:7 Owner:Zu Verkaufen hTakings 18 hVec 542 VWorld 0
    [00:29:58] HouseInfo:8 Owner:JensHacki hTakings 0 hVec 418 VWorld 0
    [00:29:58] HouseInfo:9 Owner:Eovaa hTakings 0 hVec 542 VWorld 0
    [00:29:58] HouseInfo:10 Owner:Zu Verkaufen hTakings 900 hVec 542 VWorld 0
    [00:29:58] HouseInfo:11 Owner:Zu Verkaufen hTakings 0 hVec 542 VWorld 0
    [00:29:58] HouseInfo:12 Owner:Zu Verkaufen hTakings 0 hVec 542 VWorld 0
    [00:29:58] HouseInfo:13 Owner:Zu Verkaufen hTakings 2 hVec 542 VWorld 0
    [00:29:58] HouseInfo:14 Owner:[GnE]xRage hTakings 1001 hVec 542 VWorld 0
    [00:29:58] HouseInfo:15 Owner:Zu Verkaufen hTakings 150 hVec 542 VWorld 0
    [00:29:58] HouseInfo:16 Owner:Zu Verkaufen hTakings 6020 hVec 542 VWorld 0
    [00:29:58] HouseInfo:17 Owner:xSplixxX[233] hTakings 16 hVec 418 VWorld 0
    [00:29:58] HouseInfo:18 Owner:Zu Verkaufen hTakings 84000 hVec 542 VWorld 0
    [00:29:58] HouseInfo:19 Owner:Zu Verkaufen hTakings 800 hVec 542 VWorld 0
    [00:29:58] HouseInfo:20 Owner:zEroZ hTakings 42507 hVec 418 VWorld 0
    [00:29:58] HouseInfo:21 Owner:Zu Verkaufen hTakings 2600 hVec 542 VWorld 0
    [00:29:58] HouseInfo:22 Owner:[Aleex] hTakings 0 hVec 542 VWorld 0
    [00:29:58] HouseInfo:23 Owner:xJuLiian hTakings 201400 hVec 418 VWorld 0
    [00:29:58] HouseInfo:24 Owner:Ghost hTakings 1912 hVec 542 VWorld 0
    [00:29:58] HouseInfo:25 Owner:M4gicSurf hTakings 500 hVec 418 VWorld 0
    [00:29:58] HouseInfo:26 Owner:Doublekiller hTakings 4278 hVec 542 VWorld 0
    [00:29:58] HouseInfo:27 Owner:Raffnix hTakings 600 hVec 542 VWorld 0
    [00:29:58] HouseInfo:28 Owner:Zu Verkaufen hTakings 5003 hVec 542 VWorld 0
    [00:29:58] HouseInfo:29 Owner:Zu Verkaufen hTakings 264 hVec 542 VWorld 0
    [00:29:58] HouseInfo:30 Owner:Zu Verkaufen hTakings 200 hVec 542 VWorld 0
    [00:29:58] HouseInfo:31 Owner:Zu Verkaufen hTakings 300 hVec 542 VWorld 0
    [00:29:58] HouseInfo:32 Owner:The State hTakings 0 hVec 418 VWorld 0
    [00:29:58] HouseInfo:33 Owner:Zu Verkaufen hTakings 0 hVec 542 VWorld 0
    [00:29:58] HouseInfo:34 Owner:Bob_krapsone hTakings 900 hVec 418 VWorld 0
    [00:29:58] HouseInfo:35 Owner:Aquax3 hTakings 21729 hVec 418 VWorld 0
    [00:29:58] HouseInfo:36 Owner:PabloEscobar hTakings 1 hVec 418 VWorld 0
    [00:29:58] HouseInfo:37 Owner:ItzMeLeo hTakings 3600 hVec 418 VWorld 0
    [00:29:58] HouseInfo:38 Owner:Triple_X hTakings 0 hVec 418 VWorld 0
    [00:29:58] HouseInfo:39 Owner:Mantarochen hTakings 6770 hVec 542 VWorld 0
    [00:29:58] HouseInfo:40 Owner:hoppe hTakings 100 hVec 542 VWorld 0
    [00:29:58] HouseInfo:41 Owner:Elderman_Lenzo hTakings 500 hVec 418 VWorld 0
    [00:29:58] HouseInfo:42 Owner:The State hTakings 1416 hVec 418 VWorld 0
    [00:29:58] HouseInfo:43 Owner:Ne0x[233] hTakings 483 hVec 418 VWorld 0
    [00:29:58] HouseInfo:44 Owner:Olli_JPS hTakings 30713 hVec 418 VWorld 0
    [00:29:58] HouseInfo:45 Owner:Niro[233] hTakings 3385 hVec 542 VWorld 0
    [00:29:58] HouseInfo:46 Owner:H0useFreak hTakings 81 hVec 542 VWorld 0
    [00:29:58] HouseInfo:47 Owner:Heeht[233] hTakings 10588 hVec 418 VWorld 0
    [00:29:58] HouseInfo:48 Owner:Ne0x hTakings 5104 hVec 418 VWorld 0
    [00:29:58] HouseInfo:49 Owner:Simon hTakings 10000 hVec 418 VWorld 0
    [00:29:58] HouseInfo:50 Owner:Olli_JPS hTakings 86420 hVec 418 VWorld 0
    [00:29:58] HouseInfo:51 Owner:X_Zibit hTakings -89 hVec 418 VWorld 0
    [00:29:58] HouseInfo:52 Owner:Schini hTakings 19998 hVec 418 VWorld 0
    [00:29:58] HouseInfo:53 Owner:Kollegah hTakings 500 hVec 418 VWorld 0
    [00:29:58] HouseInfo:54 Owner:xatar hTakings 2000 hVec 418 VWorld 0
    [00:29:58] HouseInfo:55 Owner:Niklas hTakings 0 hVec 542 VWorld 0
    [00:29:58] HouseInfo:56 Owner:Lukas6 hTakings 1212 hVec 418 VWorld 0
    [00:29:58] HouseInfo:57 Owner:The State hTakings 0 hVec 418 VWorld 0
    [00:29:58] HouseInfo:58 Owner:[SOG]Daniel_Bond hTakings 1649 hVec 542 VWorld 0
    [00:29:58] BizzInfo:0 Owner:SchokoBong Message:>>Rambo<< Entfee:0 Till:199196 Products:10006758/500 Interior:6.


    [00:29:58] BizzInfo:1 Owner:Lukas6 Message:Weapons Entfee:100 Till:0 Products:407/500 Interior:7.


    [00:29:58] BizzInfo:2 Owner:Doublekiller Message:LA Restaurang Entfee:500 Till:13500 Products:473/500 Interior:1.


    [00:29:58] BizzInfo:3 Owner:Der Staat Message:Yakuza Gunshop Entfee:50 Till:1450 Products:487/500 Interior:6.


    [00:29:58] BizzInfo:4 Owner:Ne0x Message:Obi Baumarkt Entfee:0 Till:100 Products:99654/100000 Interior:4.


    [00:29:58] BizzInfo:5 Owner:Ne0x Message:Obi Baumarkt Entfee:0 Till:100 Products:99654/100000 Interior:4.


    [00:29:58] BizzInfo:6 Owner:Ne0x Message:Obi Baumarkt Entfee:0 Till:100 Products:99654/100000 Interior:4.


    [00:29:58] BizzInfo:7 Owner:Ne0x Message:Obi Baumarkt Entfee:0 Till:100 Products:99654/100000 Interior:4.


    [00:29:58] BizzInfo:8 Owner:Ne0x Message:Obi Baumarkt Entfee:0 Till:100 Products:99654/100000 Interior:4.


    [00:29:58] BizzInfo:9 Owner:Ne0x Message:Obi Baumarkt Entfee:0 Till:100 Products:99654/100000 Interior:4.


    [00:29:58] BizzInfo:10 Owner:Ne0x Message:Obi Baumarkt Entfee:0 Till:100 Products:99654/100000 Interior:4.


    [00:29:58] BizzInfo:11 Owner:Ne0x Message:Obi Baumarkt Entfee:0 Till:100 Products:99654/100000 Interior:4.


    [00:29:58] BizzInfo:12 Owner:Ne0x Message:Obi Baumarkt Entfee:0 Till:100 Products:99654/100000 Interior:4.


    [00:29:58] BizzInfo:13 Owner:Ne0x Message:Obi Baumarkt Entfee:0 Till:100 Products:99654/100000 Interior:4.


    [00:29:58] BizzInfo:14 Owner:Ne0x Message:Obi Baumarkt Entfee:0 Till:100 Products:99654/100000 Interior:4.


    [00:29:58] SBizzInfo:0 Owner:Chopper Message:Autohaus SF Entfee:10 Till:67763482 Products:100/100 Interior:0.


    [00:29:58] SBizzInfo:1 Owner:TomAKASchnulli Message:Gang Car Entfee:100 Till:8760 Products:100/100 Interior:0.


    [00:29:58] SBizzInfo:2 Owner:Rapture Message:Restaurang SF Entfee:6 Till:56146 Products:100/100 Interior:0.


    [00:29:58] SBizzInfo:3 Owner:Aquax3 Message:~w~Gas Company Entfee:1 Till:632026 Products:100/100 Interior:0.


    [00:29:58] SBizzInfo:4 Owner:Schini Message:Schini`s Strom Biz, ich geb euch Licht! Entfee:250 Till:0 Products:100/100 Interior:0.


    [00:29:58] SBizzInfo:5 Owner:The State Message:~w~Car Delivery Entfee:0 Till:385000 Products:19/100 Interior:0.


    [00:29:58] SBizzInfo:6 Owner:Defjam Message:Papas House Upgrade Biz Entfee:0 Till:6 Products:23/100 Interior:0.


    [00:29:58] SBizzInfo:7 Owner:Tommmy Message: Entfee:500 Till:0 Products:100/100 Interior:0.


    [00:29:58] SBizzInfo:8 Owner:StreetGamer Message:~w~Tow Car Service Entfee:0 Till:4870 Products:-111/100 Interior:0.


    [00:29:58] SBizzInfo:9 Owner:StreetGamer Message:~w~Tow Car Service Entfee:0 Till:4870 Products:-111/100 Interior:0.


    [00:29:58] SBizzInfo:10 Owner:StreetGamer Message:~w~Tow Car Service Entfee:0 Till:4870 Products:-111/100 Interior:0.


    [00:29:58] SBizzInfo:11 Owner:StreetGamer Message:~w~Tow Car Service Entfee:0 Till:4870 Products:-111/100 Interior:0.


    [00:29:58] SBizzInfo:12 Owner:StreetGamer Message:~w~Tow Car Service Entfee:0 Till:4870 Products:-111/100 Interior:0.


    [00:29:58] SBizzInfo:13 Owner:StreetGamer Message:~w~Tow Car Service Entfee:0 Till:4870 Products:-111/100 Interior:0.


    [00:29:58] ** Stuff loaded Weather_LS: 0, Weather_SF: 0, Weather_LV: 0
    [00:29:58] IRC:0 Admin: MOTD: Hi Password: NeedPass: 0 Lock: 0
    [00:29:58] IRC:1 Admin: MOTD: Password: NeedPass: 0 Lock: 0
    [00:29:58] IRC:2 Admin: MOTD: Password: NeedPass: 0 Lock: 0
    [00:29:58] IRC:3 Admin: MOTD: Password: NeedPass: 0 Lock: 0
    [00:29:58] IRC:4 Admin: MOTD: Password: NeedPass: 0 Lock: 0
    [00:29:58] IRC:5 Admin: MOTD: Password: NeedPass: 0 Lock: 0
    [00:29:58] IRC:6 Admin: MOTD: Password: NeedPass: 0 Lock: 0
    [00:29:58] IRC:7 Admin:DeeC MOTD: Yakuza & Russians are the Best Password: yakz NeedPass: 1 Lock: 0
    [00:29:58] IRC:8 Admin: MOTD: Password: NeedPass: 0 Lock: 0
    [00:29:58] IRC:9 Admin: MOTD: Password: NeedPass: 0 Lock: 0
    [00:29:58] Paper:0 Used: 1 Maker:Pain Title: SAN ANDREAS NEWS Text1: Es gibbt ein neuen News Reporter sein Name ist Pain Text2: Das Wetter: Sch�n sonnig LS 16 Grad,LV 20 Grad,SF 12 Grad Text3: benzin wird immer h�her Text4: Gestern wurde ein Cheater gebannt Namens:Gehtto Text5: Events:Nicht in Plannung Text6: AlkoholSucht: Mann hat g Text7:
    [00:29:58] Paper:1 Used: 1 Maker:Pain Title: San Andras News Text1: SchlagZeile: Text2: Verfolgungs Jagd auf Tobias er hat gestern 2 B�nke �berfallen Text3: Tobias der Leader des News Reporter hat die LS Bank und SF Bank Ein wirklich Gutes vorbild f�r seine Member. Er wollte eine verfEin wirklich Gutes vorbild f�r seine Member. Er wollte eine verfTobias Text4: Ein wirklich Gutes vorbild f�r seine Member. Er wollte eine verfTobias Text5: Tobias Text6: AlkoholSucht: Mann hat g Text7:
    [00:29:58] Paper:2 Used: 0 Maker:Kein Title: Kein Text1: Kein Text2: Kein Text3: Kein Text4: Kein Text5: Kein Text6: Kein Text7: Kein
    [00:29:58] Paper:3 Used: 0 Maker:No-one. Title: No Title. Text1: I have no text inserted here yet. Text2: I have no text inserted here yet. Text3: I have no text inserted here yet. Text4: I have no text inserted here yet. Text5: I have no text inserted here yet. Text6: I have no text inserted here yet. Text7: I have no text inserted here ye
    [00:29:58] Paper:4 Used: 0 Maker:0
    Title: No Title. Text1: I have no text inserted here yet. Text2: I have no text inserted here yet. Text3: I have no text inserted here yet. Text4: I have no text inserted here yet. Text5: I have no text inserted here yet. Text6: I have no text inserted here yet. Text7: I have no text inserted here ye
    [00:29:58] Paper:5 Used: 0 Maker:No Title. Title: I have no text inserted here yet. Text1: I have no text inserted here yet. Text2: I have no text inserted here yet. Text3: I have no text inserted here yet. Text4: I have no text inserted here yet. Text5: I have no text inserted here yet. Text6: I have no text inserted here ye Text7: 0


    [00:29:58] Paper:6 Used: 0 Maker:No Title. Title: I have no text inserted here yet. Text1: I have no text inserted here yet. Text2: I have no text inserted here yet. Text3: I have no text inserted here yet. Text4: I have no text inserted here yet. Text5: I have no text inserted here yet. Text6: I have no text inserted here ye Text7: 0


    [00:29:58] Paper:7 Used: 0 Maker:0
    Title: I have no text inserted here yet. Text1: I have no text inserted here yet. Text2: I have no text inserted here yet. Text3: I have no text inserted here yet. Text4: I have no text inserted here yet. Text5: I have no text inserted here yet. Text6: I have no text inserted here ye Text7: 0


    [00:29:58] Paper:8 Used: 0 Maker:No Title. Title: I have no text inserted here yet. Text1: I have no text inserted here yet. Text2: I have no text inserted here yet. Text3: I have no text inserted here yet. Text4: I have no text inserted here yet. Text5: I have no text inserted here yet. Text6: I have no text inserted here ye Text7: 0


    [00:29:58] Paper:9 Used: 0 Maker:0
    Title: I have no text inserted here yet. Text1: I have no text inserted here yet. Text2: I have no text inserted here yet. Text3: I have no text inserted here yet. Text4: I have no text inserted here yet. Text5: I have no text inserted here yet. Text6: I have no text inserted here ye Text7: 0


    [00:29:58] ** Rob places successfully loaded **
    [00:29:58] ** Gang Zones successfully loaded **
    [00:29:58] * All Objects successfully loaded *
    [00:29:58] Weather Change
    [00:29:58] LS: 0, SF: 0, LV: 0
    [00:29:58] 5
    [00:29:58] AllowAdminTeleport() : function is deprecated. Please see OnPlayerClickMap()
    [00:29:58] Pickups Max = 100, Current Pickups = 117
    [00:29:58] Green Jacket Reallife. - http://www.gj-reallife.forumprofi.de
    [00:29:58]
    [00:29:58] _____________________
    [00:29:58]
    [00:29:58] Number of vehicle models: 72


    ----------
    Loaded log file: "server_log.txt".
    ----------


    SA-MP Dedicated Server
    ----------------------
    v0.3d-R2, (C)2005-2011 SA-MP Team


    [00:37:16]
    [00:37:16] Server Plugins
    [00:37:16] --------------
    [00:37:16] Loading plugin: sscanf.so
    [00:37:16]


    [00:37:16] ===============================


    [00:37:16] sscanf plugin loaded.


    [00:37:16] (c) 2009 Alex "Y_Less" Cole


    [00:37:16] ===============================


    [00:37:16] Loaded.
    [00:37:16] Loading plugin: streamer.so
    [00:37:16]


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


    [00:37:16] Loaded.
    [00:37:16] Loading plugin: audio.so
    [00:37:16]
    *** Audio Plugin v0.4 by Incognito loaded ***


    [00:37:16] Loaded.
    [00:37:16] Loaded 3 plugins.


    [00:37:16]
    [00:37:16] Ban list
    [00:37:16] --------
    [00:37:16] Loaded: samp.ban
    [00:37:16]
    [00:37:16]
    [00:37:16] Filterscripts
    [00:37:16] ---------------
    [00:37:16] Loaded 0 filterscripts.


    [00:37:16] '199' Fraktionsfahrzeuge wurden geladen & erstellt.
    [00:37:16] AllowAdminTeleport() : function is deprecated. Please see OnPlayerClickMap()
    [00:37:16] Pickups Max = 2048, Current Pickups = 456
    [00:37:16] _______________________________________
    [00:37:16] Das Script wurde Vollst�ndig geladen!
    [00:37:16] German Reallife: LS/SF/LV
    [00:37:16] _______________________________________
    [00:37:16]
    [00:37:16] Number of vehicle models: 81


    ----------
    Loaded log file: "server_log.txt".
    ----------


    SA-MP Dedicated Server
    ----------------------
    v0.3d-R2, (C)2005-2011 SA-MP Team


    [00:47:13]
    [00:47:13] Server Plugins
    [00:47:13] --------------
    [00:47:13] Loading plugin: sscanf.so
    [00:47:13]


    [00:47:13] ===============================


    [00:47:13] sscanf plugin loaded.


    [00:47:13] (c) 2009 Alex "Y_Less" Cole


    [00:47:13] ===============================


    [00:47:13] Loaded.
    [00:47:13] Loading plugin: streamer.so
    [00:47:13]


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


    [00:47:13] Loaded.
    [00:47:13] Loading plugin: audio.so
    [00:47:13]
    *** Audio Plugin v0.4 by Incognito loaded ***


    [00:47:13] Loaded.
    [00:47:13] Loaded 3 plugins.


    [00:47:13]
    [00:47:13] Ban list
    [00:47:13] --------
    [00:47:13] Loaded: samp.ban
    [00:47:13]
    [00:47:14]
    [00:47:14] Filterscripts
    [00:47:14] ---------------
    [00:47:14] Loaded 0 filterscripts.

    ja aber auf samp4you.com will das script net gehen, im prinzip sind es 207 Byte da kann ja nix stimmen ein Ex Kumpel von mir der hatte bei dem gleichen script 8mb oder so deswegen auf samp4you drücke ich start und es will net starten