Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Lucid

Pages: [1]
1
General / Spawncamping
« on: March 29, 2004, 04:58:47 PM »
Keyser explains it best

2
General / Gimme Script Hax Plz Kthx
« on: March 29, 2004, 03:57:12 PM »
mp_blockscripts is the worst idea ever imagined. Lots of peopel use totally different binds for aliens, marines, gorge, commander, etc. So any they would switch teams it would be like "BRB guys gotta go spend 10 minutes rebinding k?"

maybe some scripts give you a SLIGHT advantage but so doesn't buying an optical mouse, $500 video card, or large monitor, things that not everyone can afford. Scripts however, can be used by anyone and they don't do anything that you cant do without them.

3
General / Gimme Script Hax Plz Kthx
« on: March 29, 2004, 03:50:10 PM »
Quote
lucid, I like your idea for a pistol script, I'll try it out instead of mine, because it IS annoying to be stuck for the second or so mine is working... especially if I hit it more than once...

also, you don't have to make another script file exec through config.cfg -- just make a file called autoexec.cfg and HL automatically execs it after (or before?) config.cfg... I keep all my aliases in autoexec.cfg...
actually, autoexec.cfg is execed before config.cfg. That will write over any of your custom settings if they conflict. userconfig.cfg is a new (i think) feature. The exec userconfig.cfg line will stay at the end of your config.cfg thus executing it after everything else.

4
General / Gimme Script Hax Plz Kthx
« on: March 28, 2004, 12:06:22 PM »
1. Set your config.cfg to readonly, or make a file called userconfig.cfg and put your binds in that. Make sure you have the line: exec userconfig.cfg   in your config.cfg.

2. As far as I know, you can't script commander actions such as ammo.

3. CForrester seems correct...

alias +fjump "+forward;+jump"
alias -fjump "-forward;-jump"

...should work

In response to DiscoZombie:

Doing it your way really sucks because you are stuck while executing that script. You can't use any other commands. Instead use this script. It fires once when you press your mouse button, and fires again when you let go...

alias +pscript "+attack;"
alias -pscript "-attack; wait; +attack; wait; -attack;"
alias pscripton "bind mouse1 +pscript; bind <any key you want> pscriptoff;"
alias pscriptoff "bind mouse1 +attack; bind <same key that you picked> pscripton;"
pscriptoff

other useful scripts...

//sound toggle scripts
alias voiceon "voice_scale 2; bind F2 voiceoff; echo voice unmuted;"
alias voiceoff "voice_scale 0; bind F2 voiceon; echo voice muted;"
alias soundon "volume .8; bind F3 soundoff; echo sound unmuted;"
alias soundoff "volume 0; bind F3 soundon; echo sound muted;"
soundon
voiceon

//build and showmap toggle script
alias +mt_build "+use; wait; +showmap;"
alias -mt_build "-use; wait; -showmap;"
alias buildon "bind KP_LEFTARROW +mt_build; bind <any key you want> buildoff; echo map_build script ON;"
alias buildoff "bind KP_LEFTARROW +use; bind <same key that you picked> buildon; echo map_build script OFF;"
buildon

go here for my 50 demo script: DEMO SCRIPT

Pages: [1]