Beiträge von DeRoX-

    Versuche es mal :3 danke schonmal



    edit // C:\Users\Jan\Desktop\German Next Era Life - v2.5 0.3x\gamemodes\GNE.pwn(53130) : warning 225: unreachable code
    C:\Users\Jan\Desktop\German Next Era Life - v2.5 0.3x\gamemodes\GNE.pwn(62872) : error 009: invalid array size (negative, zero or out of bounds)
    C:\Users\Jan\Desktop\German Next Era Life - v2.5 0.3x\gamemodes\GNE.pwn(62876) : error 010: invalid function or declaration
    C:\Users\Jan\Desktop\German Next Era Life - v2.5 0.3x\gamemodes\GNE.pwn(62878) : error 021: symbol already defined: "SetTimer"


    RayJohnson:

    Ich weiß nicht wie ich anfangen soll , habe mir ein vserver gekauft und nun weiß ich nicht weiter wie ich vorgehen soll das er automatisch die updates runterläd und wie ich das überhaupt mache

    SetTimer, Test, On <--- GANZ NACH OBEN INS SCRIPT! FALLS NICHT GELÖST!!




    Test:
    ifwinnotactive, GTA:SA:MP
    return
    zone := GetPlayerZone()
    GetChatline(0, ChatLine0)
    GetChatline(1, ChatLine1)
    If (InStr(ChatLine1, "Du hast") AND instr(ChatLine1, "getötet ( +1 EXP)")) AND instr(ChatLine0, "Verbrechen: Mord")
    {
    RegExMatch(ChatLine1 ,"Du hast (.*) (.*) \( \+1 EXP\)\.", killnamed)
    IniRead, Kills, options.ini, Optionen, Kills
    Kills = %Kills%
    Kills++
    Iniwrite, %Kills%, options.ini, Optionen, Kills
    sleep 100
    Sendchat("/g +1 Kill in " zone " - Kill Nr. " Kills "")
    }
    return

    Soll ich mein gui posten=? iniread, Autokill, options.ini, Optionen, Autokill
    iniread, AutoDeath, options.ini, Optionen, AutoDeath
    iniread, gangwarkillSpruch, options.ini, Sprüche, Gangwarkillspruch
    iniread, gangwartodspruch, options.ini, Sprüche, Gangwartodspruch


    Gui, 1: Show, w700 h500, Keybinder von staN.Bull | %version%
    Gui, Add, Checkbox, vAutoKill Checked%AutoKill%, Automatisch Gangwarkill senden?
    Gui, Add, Checkbox, vAutoDeath Checked%AutoDeath%, Automatisch Gangwartods senden?
    Gui, Add, Text, x200 y5 ,• Herzlich willkommen beim Keybinder von staN.Bull.`n• /kinfo für Hilfe`n`n• SAMP UDF R11`n• Code von staN.Bull
    Gui, Add, Text, x5 y175, GangwarkillSpruch:
    Gui, Add, Text, x5 y145, Gangwartodspruch:
    Gui, Add, Text, x5 y205 vGspruch w500,
    Gui, Add, Edit, x100 y170 vGangwarkillspruch h22 w290, %GangwarkillSpruch%
    Gui, Add, Edit, x100 y170 vGangwartodspruch h22 y140 w290, %GangwartodSpruch%
    Gui, Add, Button,x50 y230 gSpeichern, Speichern
    Gui, Add, Text, x115 y230, Updates folgen!
    Gui, Show, h270 w500
    return


    Speichern:
    Gui, Submit, Nohide
    iniwrite, %AutoKill%, options.ini, Optionen, AutoKill
    iniwrite, %AutoDeath%, options.ini, Optionen, AutoDeath
    iniwrite, %Gangwarkillspruch%, options.ini, Sprüche, Gangwarkillspruch
    iniwrite, %Gangwartodspruch%, options.ini, Sprüche, Gangwartodspruch
    GuiControl, ,Gspruch, Gangwarkillspruch: /g %Gangwarkillspruch%
    GuiControl, ,Gspruch2, Gangwartodspruch: /g %Gangwartodspruch%
    Traytip, Bull Keybinder, Gespeichert!!!, 3 , 1

    Hey brauche hilfe habe ein Killzähler angefertigt wo man den spruch selber machen kann .. nun denn weiß ich nicht wie ich einstelle das man einstellen kann welche funktionen im zähler seien sollen z.b <zone> oder <kills> im Text wo man den Gangwarkillspruch einstellen kann




    Test:
    ifwinnotactive, GTA:SA:MP
    return
    zone := GetPlayerZone()
    GetChatline(0, ChatLine0)
    GetChatline(1, ChatLine1)
    If (InStr(ChatLine1, "Du hast") AND instr(ChatLine1, "getötet ( +1 EXP)")) AND instr(ChatLine0, "Verbrechen: Mord")
    {
    RegExMatch(ChatLine1 ,"Du hast (.*) (.*) \( \+1 EXP\)\.", killnamed)
    if(AutoKill = 1)
    IniRead, Kills, options.ini, Optionen, Kills
    Kills = %Kills%
    Kills++
    Iniwrite, %Kills%, options.ini, Optionen, Kills
    sleep 100
    Sendchat("/g " GangwarkillSpruch " in " zone " - Kill Nr. " Kills "")
    }
    return


    kann mir jemand helfen?...

    [AHK]SendChat Problem!
    Hey habe ein Problem mit SendChat Funktion Undzwar mein Code ist


    :?:/vs::
    Suspend Permit
    GetPlayerHealth()
    GetPlayerArmor()
    phealth := GetPlayerHealth()
    parmor := GetPlayerArmor()
    SendChat("/d VERSTÄRKUNG | " zone ", " city " | HP: " hp ", AR: " ar "")
    SendChat("/g VERSTÄRKUNG | " zone ", " city " | HP: " hp ", AR: " ar "")
    return


    Doch wenn ich SendChat mit einem /g mache erscheind nix wenn ich den /g raus nehme funkt es im Lokalenchat

    AHK- AddChatMessage
    Wenn ich AddchatMessage(0xFFFFFF,"{0xff4500}[Information] Ausgegeben Insgesamt: " prod) Eingebe mit einer taste


    erscheind nix ingame :C hilfe pls


    Mein Code:


    NumpadAdd::
    AddChatMessage(0xFFFFFF,"Meine tolle Nachricht")
    return