Seite 1 von 1
kurze Frage
Verfasst: Sa 12. Jun 2004, 12:01
von Che
Kann ich mehrere cfg. mit einer Taste auf einmal entpacken?
zum Beispiel:
bind LEFTARROW "exec xy.cfg; exec YX.cfg; ..." ???
oder muss ich für jedes ne einzelne Taste nehmen?
thx & greetz,
Che
Verfasst: Sa 12. Jun 2004, 14:14
von Emacs21
geht

Verfasst: Sa 12. Jun 2004, 16:11
von thE_f!R3b!Rd
ging es nicht schneller es auszuprobieren statt zu fragen?
Verfasst: Sa 12. Jun 2004, 17:22
von City][Schubi
Ist es jetzt nicht unnoetig drueber zu diskuttieren?
Verfasst: Sa 12. Jun 2004, 18:15
von thE_f!R3b!Rd
yo scon

Verfasst: Sa 19. Jun 2004, 12:55
von Che
gut, seh ich ein, war unnötig, sry
Damit das ganze nich ganz sinnlos is noch ne frage die mir den schlaf raubt
Ich will mir dazu vocie bind legen, also hab ich folgnedes gemacht:
say.cfg (wird mit LEFTARROW entpackt)
unbind ENTER
set bye_bind "say ^1THX 4 GOOD GAME! ^4CU ALL! ^1 Good Fight - Good Night!"; "vsay Bye"
bind ENTER "vstr bye_bind"
unbind h
set support_bind "say_team ^4Hold on, your ^1SUPPORT ^4is ^1COMING^4!!!"; "vsay_team commandacknowledged"
bind h "vstr support_bind"
unbind j
set contact_bind "say blablubb"
bind j "vstr contact_bind"
unbind k
set member_bind "blablubb"
bind k "vstr member_bind"
Aber der macht die Voices nicht wo sie hinsollen (zB wenn ich ENTER drück soll er Text + "Bye") sondern immer wenn ich mit LEFTARROW entpacke! Und dann alle auf einmal!
Sprich: Ich entpacke mit LEFTARROW und der sagt commandack. UND Bye auf einmal, und das bei jedem mal drücken...
Woran liegt das nu wieder?

Verfasst: So 20. Jun 2004, 13:55
von PulpEmperor
In der autoexec.cfg sollte irgendwo das hier stehen:
bind "X" exec say.cfg
X=beliebige Taste
Dann musst du in deine say.cfg nur noch folgende Zeilen schreiben:
unbind "h"
set support_bind "say_team ^4Hold on, your ^1SUPPORT ^4is ^1COMING^4!!!;vsay_team commandacknowledged"
bind "h" "vstr support_bind"
unbind "ENTER"
set bye_bind "say ^1THX 4 GOOD GAME! ^4CU ALL! ^1 Good Fight - Good Night!;vsay Bye"
bind "ENTER" "vstr bye_bind"
unbind "j"
set contact_bind "say blablubb"
bind "j" "vstr contact_bind"
unbind "k"
set member_bind "blablubb"
bind "k" "vstr member_bind"
Schon funktioniert dein Script. Ich hoffe hiermit deine Fragen beantwortet zu haben.
mfg PulpEmperor
Verfasst: So 20. Jun 2004, 19:41
von Che
jo, funzt, thx