[Main] [Files] [Commands] [Scripts] [Guides] [Links]
Scripts
Here's some scripts I've found around the web (mainly The Bind:Arena. go there! it rocks.). If you have any more, please mail them to me and i'll stick em up.
And if you're a scripting newbie checkout thebind:arena's guide.
Duck & Cover | |
Author: indian18 Description: Click once to crouch and stay down, click the button again to stand up. |
set duck "+movedown; set crouchswitch vstr
stand; echo Crouching..." set stand "-movedown; set crouchswitch vstr duck; echo Standing..." set crouchswitch "vstr duck" bind c "vstr crouchswitch" |
Zoom Toggle Script | |
Author: indian18 Description: Click once to zoom in, and again to zoom back out. |
set zoomin "fov 20; set zoomtoggle vstr zoomout;
echo Zoomed In..." set zoomout "fov 90; set zoomtoggle vstr zoomin; echo Zoomed Out..." set zoomtoggle "vstr zoomin" bind z "vstr zoomtoggle" |
Quick Rail Script | |
Author: indian18 Description: Click once to switch to the railgun, then again to switch to back to your previous weapon. |
set rail "weapon 7; set qrail vstr preweap; echo
Railing..." set preweap "weapprev; set qrail vstr rail; echo Reverting to previous weapon..." set qrail "vstr rail" bind r "vstr qrail" |
Clean Screenshot | |
Author: Artist Description: Click to clear the junk off your screen and take the screenshot, then return to normal. |
If you play with cg_gun 0 (weapon not showing): bind x "cg_drawstatus 0; wait; wait; wait; screenshot; toggle cg_drawstatus" If you play with cg_gun 1 (weapon shows): bind x "cg_drawstatus 0;cg_gun 0; wait; wait; wait; screenshot; toggle cg_drawstatus; toggle cg_gun" |
Level of Detail Cycler | |
Author: Pasty Description: Cycle LOD through 3 setttings. |
set LOD2 "r_lodbias 2; set lodcyc vstr LOD1;
cg_simpleitems 1; r_dynamiclight 0; r_fastsky 1;
r_noportals 1; r_drawSun 0; cg_gibs 0; echo Lowest
Detail" set LOD1 "r_lodbias 1; set lodcyc vstr LOD0; r_dynamiclight 1; r_drawSun 1; cg_simpleitems 0; cg_gibs 1; echo Medium Detail" set LOD0 "r_lodbias 0; set lodcyc vstr LOD2; r_noportals 0; set r_fastsky 0; echo Max Detail" set lodcyc vstr LOD2 bind F3 "vstr lodcyc" |
Rear View Mirror | |
Author: Artist Description: Click it once to see directly behind you and again to return to normal view. |
set switchview "vstr back" set back "cg_thirdperson 1; cg_thirdpersonangle 180; cg_thirdpersonrange -10;set switchview vstr forward" set forward "cg_thirdperson 0; set switchview vstr back" bind x "vstr switchview" |
Rail Rainbow | |
Author: Essobie Description: This one flips through the different colors of the railgun...Taste the Rainbow! |
set rail0 "color 0; set rrail vstr rail1" set rail1 "color 1; set rrail vstr rail2" set rail2 "color 2; set rrail vstr rail3" set rail3 "color 3; set rrail vstr rail4" set rail4 "color 4; set rrail vstr rail5" set rail5 "color 5; set rrail vstr rail6" set rail6 "color 6; set rrail vstr rail0" vstr rail0 set rrail vstr rail0 bind x "weapon 7; vstr rrail" |
Model Viewer | |
Author: Artist Description:The keypad number '5' toggles 3rd person mode off and on. While in 3rd person, (all of these keys are the ones on the keypad) the leftarrow rotates your view left, the right arrow rotates it right, and up and down move you closer to and farther away from your model. An excellent script for modellers and skinners to see how your creation actually looks in the game. |
Click here for the .cfg |