Useful scripts
Posted: Sun Jan 15, 2006 11:13 am
Would be nice to gather some useful and practical scripts. I will start with one I already pasted in #aq2world.
Also some simple but, who knows, maybe can give them good use.
And for the graph.
And the rainbow creator.
NOTE: Sniper scripts have already a thread. Check here.
C.
Code: Select all
bind 7 "sky1"
alias sky1 "sky storm ; bind 7 sky2"
alias sky2 "sky koldmars_ ;bind 7 sky3"
alias sky3 "sky drksky ; bind 7 sky4"
alias sky4 "sky bluesky ; bind 7 sky1"
Code: Select all
alias fpshigh "set cl_maxfps 120;set cl_maxpackets 40;echo FPS [120];bind l fpslow"
alias fpslow "set cl_maxfps 60;set cl_maxpackets 20;echo FPS [60];bind l fpshigh"
bind l "fpslow"
alias vsyon "set gl_swapinterval 1;echo VSYNC [ON];bind k vsyoff"
alias vsyoff "set gl_swapinterval 0;echo VSYNC [OFF];bind k vsyon"
bind k "vsyoff"
Code: Select all
alias graph_on "set netgraph 1;echo Graph ON...;wait;bind F2 graph_off"
alias graph_off "set netgraph 0;echo Graph OFF...;wait;bind F2 graph_on"
bind F2 graph_on
alias lagom_on "set scr_drawlagometer 2;wait;bind F5 lagom_off"
alias lagom_off "set scr_drawlagometer 0;wait;bind F5 lagom_on"
bind F5 lagom_on
Code: Select all
alias ctfr "teamskin male/ctf_r;bind KP_DOWNARROW ctfb"
alias ctfb "teamskin male/ctf_b;bind KP_DOWNARROW ctfy"
alias ctfy "teamskin male/ctf_y;bind KP_DOWNARROW ctfg"
alias ctfg "teamskin male/ctf_g;bind KP_DOWNARROW ctfr"
bind KP_DOWNARROW "ctfr"
C.