My teamsays (pretty much simple, but does the job):
- Code: Select all
//Chit-chatting
bind - "messagemode"
bind . "messagemode2"
bind KP_5 "say_team ^2I'M FC ^3@%l ^1HP:%h ^2A:%a ^4W:%w ; g_waypointsprite_team_helpme"
bind KP_RIGHTARROW "say_team ^1ATTACKING ^3@%l ^1HP:%h ^2A:%a ^4W:%w ; g_waypointsprite_team_here"
bind KP_LEFTARROW "say_team ^2DEFENDING ^3@%l ^1HP:%h ^2A:%a ^4W:%w ; g_waypointsprite_team_here"
bind KP_END "say_team ^3@%l ^1HP:%h ^2A:%a ^4W:%w ; g_waypointsprite_team_here"
bind KP_DOWNARROW "say_team ^1NEED HELP ^3@%l ^1HP:%h ^2A:%a ^4W:%w ; g_waypointsprite_team_helpme"
bind KP_PGDN "say_team ^1BASE OVERRUN ^3@%l ^1HP:%h ^2A:%a ^4W:%w ; g_waypointsprite_team_helpme"
bind KP_PGUP "say_team ^2Base secure ^3@%l ^1HP:%h ^2A:%a ^4W:%w ; g_waypointsprite_team_here"
bind KP_HOME "say_team ^2ITEM: %x^7 ^3@%l ; g_waypointsprite_team_here_p"
bind KP_UPARROW "say_team ^1ENEMY SEEN ^3@%l ; g_waypointsprite_team_danger_p"
bind KP_PLUS "say_team ^6QUAD IN ME ; g_waypointsprite_team_here"
bind KP_MINUS "say_team ^1ENEMY QUAD ; g_waypointsprite_team_danger_p"
bind / "say_team ENEMY FLAG CARRIER (l:%y^7); g_waypointsprite_team_here_p"
One button to hide/show almost everything from your screen. Nice to make screenshots/movies (though you might need to change r_drawviewmodel to 1)
- Code: Select all
//Screenshot oh fancy
//First, we'll define rebinds
alias rebind_hud_erease "bind n hud_erease"
alias rebind_hud_show "bind n hud_show"
//Now the actual aliases:
alias hud_erease "crosshair 0 ; cl_hidewaypoints 1 ; cl_teamradar 0 ; r_drawviewmodel 0 ; viewsize 120 ; showdate 0 ; showfps 0 ; showspeed 0 ; showtime 0 ; shownetgraph 0 ; v_brightness 0.000000 ; rebind_hud_show"
alias hud_show "crosshair 99 ; cl_hidewaypoints 0 ; cl_teamradar 1 ; r_drawviewmodel 1 ; viewsize 110 ; showdate 1 ; showfps 1 ; showspeed 1 ; showtime 1 ; shownetgraph 1 ; v_brightness 0.080000 ; rebind_hud_erease"
//Finally, we bind it to n
bind "n" "hud_erease"
Server admining v1.:
- Code: Select all
//Aliases
//RCON aliases
//First, we'll define rebinds
alias rebind_rcon_rbi_key "bind F6 rcon_rbi_key"
alias rebind_rcon_rbi_ctf "bind F6 rcon_rbi_ctf"
alias rebind_rcon_rbi_race "bind F6 rcon_rbi_race"
//Now the rcon manager aliases,on we're refering in the previous ones
//CTF -> KEYHUNT
alias rcon_rbi_ctf "echo Connected to ^1RBI CTF server^7 . Pressing ^2F6 ^7next time, you'll manage the ^1KEYHUNT server^7; rcon_password wtfomglolbbq ; rcon_address 141.2.16.23:26000 ; rebind_rcon_rbi_key"
//KEYHUNT -> RACE
alias rcon_rbi_key "echo Connected to ^1RBI KEYHUNT server ^7. Pressing ^2F6 ^7next time, you'll manage the ^1RACE server^7; rcon_password wtfomglolbbq ; rcon_address 141.2.16.23:26001 ; rebind_rcon_rbi_race"
//RACE -> CTF
alias rcon_rbi_race "echo Connected to ^1RBI RACE server ^7. Pressing ^2F6 ^7next time, you'll manage the ^1CTF server^7; rcon_password wtfomglolbbq ; rcon_address 141.2.16.23:26002 ; rebind_rcon_rbi_ctf"
//Finally, we bind it to F6
bind "F6" "rcon_rbi_ctf"