CS:GO Buyscript läuft nicht

Dieses Thema im Forum "Gamer Support" wurde erstellt von Officer Doofy, 17. Januar 2016 .

  1. 17. Januar 2016
    Hi,

    ich werde übersehe vermutlich etwas und komme einfach nicht dahinter was es ist. Mein Buyscript funktioniert nicht.

    Vielleicht erkennt einer von euch den Fehler?

    config.cfg:
    Spoiler
    bind "ESCAPE" "cancelselect"
    bind "`" "toggleconsole"

    bind "TAB" "+showscores"
    bind "SPACE" "+jump"
    bind "," "buyammo1"
    bind "." "buyammo2"
    bind "0" "slot10"
    bind "1" "slot1"
    bind "2" "slot2"
    bind "3" "slot3"
    bind "4" "slot4"
    bind "5" "slot5"
    bind "6" "slot6"
    bind "7" "slot7"
    bind "8" "slot8"
    bind "9" "slot9"
    bind "a" "+moveleft"
    bind "b" "buymenu"
    bind "c" "radio3"
    bind "d" "+moveright"
    bind "e" "+use"
    bind "f" "+lookatweapon"
    bind "g" "drop"
    bind "i" "show_loadout_toggle"
    bind "k" "+voicerecord"
    bind "m" "teammenu"
    bind "q" "lastinv"
    bind "r" "+reload"
    bind "s" "+back"
    bind "u" "messagemode2"
    bind "w" "+forward"
    bind "x" "radio2"
    bind "y" "messagemode"
    bind "z" "radio1"
    bind "CTRL" "+duck"
    bind "SHIFT" "+speed"
    bind "F1" "buy ak47; buy m4a1; buy m4a1_silencer; buy vesthelm; use weapon_ak47; use weapon_m4a1; use weapon_m4a1_silencer; buy flashbang; buy flashbang; buy smokegrenade; buy hegrenade; buy defuser"
    bind "F2" "buy awp; buy tec9; buy hkp2000; buy usp_silencer; buy vesthelm; use weapon_awp; buy flashbang; buy flashbang; buy smokegrenade; buy hegrenade; buy defuser"
    bind "F3" "buy p90; buy deagle; buy vesthelm; use weapon_p90; buy flashbang; buy flashbang; buy smokegrenade; buy hegrenade; buy defuser"
    bind "F4" "rebuy"
    bind "F5" "jpeg"
    bind "F6" "save quick"
    bind "F7" "load quick"
    bind "F10" "quit prompt"
    bind "MWHEELDOWN" "invnext"
    bind "MWHEELUP" "invprev"
    bind "MOUSE1" "+attack"
    bind "MOUSE2" "+attack2"
    bind "PAUSE" "pause"
    bind "DEL" "mute"
    "exec autoexec.cfg"

    autoexec.cfg:
    Spoiler
    // CONSOLE
    con_enable "1"
    bind "'" "toggleconsole"
    net_graph "0"
    cl_showfps "1"

    // NETCODE
    rate "1048576
    cl_cmdrate "128"
    cl_updaterate "128"
    cl_interp "0"
    cl_interp_ratio "1"
    cl_predictweapons "1"
    clientport "1337"


    //HUD

    net_graphproportionalfont "0"
    net_graphheight "0"
    hud_scaling "0.95"
    hud_showtargetid "1"
    cl_autowepswitch "0"

    //MODEL
    viewmodel_offset_x "2"
    viewmodel_offset_y "4"
    viewmodel_offset_z "-2"
    cl_viewmodel_shift_left_amt "0"
    cl_viewmodel_shift_right_amt "0"
    cl_bob_lower_amt "0"

    bind "F1" "buy ak47; buy m4a1; buy m4a1_silencer; buy vesthelm; use weapon_ak47; use weapon_m4a1; use weapon_m4a1_silencer; buy flashbang; buy flashbang; buy smokegrenade; buy hegrenade; buy defuser"

    bind "F2" "buy awp; buy tec9; buy hkp2000; buy usp_silencer; buy vesthelm; use weapon_awp; buy flashbang; buy flashbang; buy smokegrenade; buy hegrenade; buy defuser"

    bind "F3" "buy p90; buy deagle; buy vesthelm; use weapon_p90; buy flashbang; buy flashbang; buy smokegrenade; buy hegrenade; buy defuser"

    Danke für die Hilfe
     
  2. 17. Januar 2016
    AW: CS:GO Buyscript läuft nicht

    In der autoexec werden teilweise noch mal die gleichen Tasten "bind" verknüpft, evtl macht das Probleme? Und sonst geht alles nur F1-F3 nicht?
     
  3. 17. Januar 2016
    AW: CS:GO Buyscript läuft nicht

    es macht keinen unterschied ob die tasten in nur in der autoexec oder nur in der config oder in beidem stehen, es funktioniert in allen konstellationen nicht

    sonst funktionieren alle "binds" ... bis aufs buyscript
     
  4. 17. Januar 2016
    AW: CS:GO Buyscript läuft nicht

    recht simpel...

    benutz "buy weapon_XXX" ;D

    und lass den use syntax weg, weiß nicht ob das zusammen funktioniert. ohne nen +wait.
     
  5. 19. Januar 2016
    AW: CS:GO Buyscript läuft nicht

    danke, also sieht es beispielsweise so aus?

    bind "F1" "buy weapon_ak47; buy weapon_m4a1; buy weapon_m4a1_silencer; buy weapon_vesthelm; buy weapon_flashbang; buy weapon_flashbang; buy weapon_smokegrenade; buy weapon_hegrenade; buy weapon_defuser"

    läuft leider nicht
     
  6. 19. Januar 2016
    AW: CS:GO Buyscript läuft nicht

    Code:
    // BUYMENU (NUMMERNBLOCK)
    bind "kp_end" "buy deagle" // 1
    bind "kp_downarrow" "buy vest" // 2
    bind "kp_pgdn" "buy vesthelm" // 3
    bind "kp_leftarrow" "buy ak47;buy m4a1" // 4
    bind "kp_5" "buy awp" // 5
    bind "kp_rightarrow" "" // 6
    bind "kp_home" "buy hegrenade;buy flashbang;buy flashbang;buy smokegrenade" // 7
    bind "kp_uparrow" "buy defuser" // 8
    bind "kp_pgup" "buy molotov" // 9
    bind "kp_ins" "" // 0
    bind "kp_del" "" // ,
    bind "kp_enter" "" // Enter
    bind "kp_plus" "" // +
    bind "kp_minus" "toggleconsole" // -
    
    einfach entsprechend anpassen oder kopieren.
     
  7. 19. Januar 2016
    AW: CS:GO Buyscript läuft nicht

    ich habe es nun so geändert und direkt in die config gepackt:

    Code:
    
    
    // BUYMENU (NUMMERNBLOCK)
    bind "kp_end" "buy fiveseven; buy tec9; buy ak; buy m4a1; buy vest; buy vesthelm; buy defuser; buy molotov; buy incgrenade; buy flashbang; buy hegrenade; buy smokegrenade" // 1
    bind "kp_downarrow" "buy awp; buy tec9; buy fiveseven; buy vesthelm; buy defuser; buy molotov; buy incgrenade; buy flashbang; buy hegrenade; buy smokegrenade" // 2
    bind "kp_pgdn" "buy p90; buy deagle; buy vesthelm; buy defuser; buy molotov; buy incgrenade; buy flashbang; buy hegrenade; buy smokegrenade" // 3
    bind "kp_leftarrow" "" // 4
    bind "kp_5" "" // 5
    bind "kp_rightarrow" "" // 6
    bind "kp_home" "" // 7
    bind "kp_uparrow" "" // 8
    bind "kp_pgup" "" // 9
    bind "kp_ins" "" // 0
    bind "kp_del" "" // ,
    bind "kp_enter" "" // Enter
    bind "kp_plus" "" // +
    bind "kp_minus" "" // -
    läuft nicht...
     
  8. 30. Januar 2016
    AW: CS:GO Buyscript läuft nicht

    Wird die Config bzw. Autoxec denn auch sicher geladen?

    Probiere die nochmal manuell zu laden indem du "exec autoexec" bzw. "exec config" in die console eingibst.
    Auch wenn die autoexec dem Namen nach automatisch geladen werden sollte, funktioniert das bei manchen nicht.
     
  9. 8. Februar 2016
    AW: CS:GO Buyscript läuft nicht

    hmm seltsam...

    hab übrigens quatsch erzählt seh ich.. mit buy_weapon geht das garnicht unter csgo, sorry.

    hier ein auszug aus meiner autoexec:

    "kp_end" = "buy ak47; buy m4a1"

    verstehe nicht warum es bei dir nicht funktioniert.

    schreib die binds mal direkt in die config... ohne die "use".

    alternativ probiers mal hiermit:

    CS:GO Binds Generator
     
  10. Video Script

    Videos zum Themenbereich

    * gefundene Videos auf YouTube, anhand der Überschrift.