Useful ET Scripts


(Ifurita) #1

Class/team select script - still trying to figure out the spawnpoints

http://www.rtcwonline.com/dummies/et-class-select-v4.zip


Chat script for using FT vsays with entire team. Enemy Territory has a bunch of nice fireteam chats that would be nice if they could be broadcast to the larger team. This script will help you accomplish this in the same menu-based way the class select script works. I created a template script so that you can use Ctrl+H to search and replace key assignments.

http://www.rtcwonline.com/dummies/et-chatscript-template.zip


You have the ability to display a yellow shield icon above the heads of your fireteam members. This script turns that icon on and off.

//Fireteam script - toggles buddy team icons
set showteam “selectbuddy -2; set nextteamtoggle vstr hideteam; echo Team Highlighted!!!”
set hideteam “selectbuddy -1; set nextteamtoggle vstr showteam; echo Team icons hidden!!!”
set nextteamtoggle “vstr showteam”
bind o “vstr nextteamtoggle”


Splash Damage kindly added a nifty button to start demo recording, but there is no way to stop recording except for /stoprecord in the console. This script will let you assign a key to start AND stop recording without overwriting previously recorded demos.

//Demo record on/off toggle
set demoon “autorecord; set nextdemo vstr demooff; echo ^2Recording ^7demo”
set demooff “stoprecord; set nextdemo vstr demoon; echo ^7Recording ^1stopped”
set nextdemo “vstr demoon”
bind x “vstr nextdemo”


There are lots of new players who might TK you. If you’re tired of responding to all of the complaint prompts, this script will let you toggle the complaint pop up on and off. It’s NOT written as a toggle because I wanted the echo notification.

//Complaint popup on/off toggle
set complainton “cg_complaintpopup 1; set complainttoggle vstr complaintoff; echo ^7Complaint Popup ^2ON”
set complaintoff “cg_complaintpopup 0; set complainttoggle vstr complainton; echo ^7Complaint Popup ^1OFF”
set complainttoggle “vstr complaintoff”
bind x “vstr complainttoggle”


There are times where you might want to keep the command map out, but don’t want to keep holding a button to do so. This script enables you to pull out the map with on click and then put it away with the second:

//Command map script
//keeps map out until put away. used mostly when spotting artillery/mortar fire

set mapout “+mapexpand; +mapexpand; set nextmap vstr mapin”
set mapin “-mapexpand; -mapexpand; set nextmap vstr mapout”
set nextmap “vstr mapout”
bind x “vstr nextmap”

Cheers


(Dingo19) #2

It’s people like you that keep this RTCW/ET community far above all others.
Cheers, thanks for the scripts.