// ========================================== // Class selection Strogg v1.4 // ========================================== //http://wiki.battle.no/index.php/Enemy_Territory_Quake_Wars_Scripting // Class sayTeams set sayTeamAggressorLacerator "sayTeam '^7Class: ^1Aggressor ^7[^2Lacerator^7]';" set sayTeamAggressorObliterator "sayTeam '^7Class: ^1Aggressor ^7[^2Obliterator^7]';" set sayTeamAggressorHyperblaster "sayTeam '^7Class: ^1Aggressor ^7[^2Hyperblaster^7]';" set sayTeamAggressorNailgun "sayTeam '^7Class: ^1Aggressor ^7[^2Nailgun^7]';" set sayTeamTechnicianLacerator "sayTeam '^7Class: ^1Technician ^7[^2Lacerator^7]';" set sayTeamTechnicianNailgun "sayTeam '^7Class: ^1Technician ^7[^2Nailgun^7]';" set sayTeamConstructorLacerator "sayTeam '^7Class: ^1Constructor ^7[^2Lacerator^7]';" set sayTeamConstructorNailgun "sayTeam '^7Class: ^1Constructor ^7[^2Nailgun^7]';" set sayTeamConstructorPlasmalauncher "sayTeam '^7Class: ^1Constructor ^7[^2Plasma launcher^7]';" set sayTeamOppressorLacerator "sayTeam '^7Class: ^1Oppressor ^7[^2Lacerator^7]';" set sayTeamInfiltratorLacerator "sayTeam '^7Class: ^1Infiltrator ^7[^2Lacerator^7]';" set sayTeamInfiltratorRailgun "sayTeam '^7Class: ^1Infiltrator ^7[^2Railgun^7]';" // Quick access to special ability // http://4newbies.planetwolfenstein.gamespy.com/ETQW/weapons_special.php // set specAbilityAggressor "useweapon weapon_item1" // Plasma Charge // set specAbilityTechnician "useweapon weapon_tool1" // Spike Tool // set specAbilityConstructor "useweapon weapon_tool1" // Repair Drone set specAbilityOppressor "useweapon weapon_item2" // Violator Beacon set specAbilityInfiltrator "useweapon weapon_item2" // Teleporter // Quick access to deploy tool set deployToolConstructor "useweapon weapon_tool2" set deployToolOppressor "useweapon weapon_tool1" set deployToolInfiltrator "useweapon weapon_tool2" bind "R" "_stroyDown" "" "default" // Aggressor bind "KP_UPARROW" "clientClass Aggressor 1;wait;addChatLine '^7Class: ^1Aggressor ^7[^2Obliterator^7]'; bind KP_INS 'vstr sayTeamAggressorObliterator'; bind MWHEELDOWN 'vstr specAbilityAggressor';" "" "default" bind "KP_HOME" "clientClass Aggressor 2;wait;addChatLine '^7Class: ^1Aggressor ^7[^2Hyperblaster^7]'; bind KP_INS 'vstr sayTeamAggressorHyperblaster'; bind MWHEELDOWN 'vstr specAbilityAggressor';" "" "default" bind "KP_PGUP" "clientClass Aggressor 0;wait;addChatLine '^7Class: ^1Aggressor ^7[^2Lacerator^7]'; bind KP_INS 'vstr sayTeamAggressorLacerator'; bind MWHEELDOWN 'vstr specAbilityAggressor';" "" "default" // Technician bind "KP_END" "clientClass Technician 0;wait;addChatLine '^7Class: ^1Technician ^7[^2Lacerator^7]'; bind KP_INS 'vstr sayTeamTechnicianLacerator'; bind MWHEELDOWN 'vstr specAbilityTechnician';" "" "default" bind "KP_DEL" "clientClass Technician 1;wait;addChatLine '^7Class: ^1Technician ^7[^2Nailgun^7]'; bind KP_INS 'vstr sayTeamTechnicianNailgun'; bind MWHEELDOWN 'vstr specAbilityTechnician';" "" "default" // Constructor bind "KP_PGDN" "clientClass Constructor 0;wait;addChatLine '^7Class: ^1Constructor ^7[^2Lacerator^7]'; bind KP_INS 'vstr sayTeamConstructorLacerator'; bind MWHEELDOWN 'vstr specAbilityConstructor'; bind MOUSE5 'vstr deployToolConstructor' SHIFT;" "" "default" bind "KP_RIGHTARROW" "clientClass Constructor 2;wait;addChatLine '^7Class: ^1Constructor ^7[^2Plasma launcher^7]'; bind KP_INS 'vstr sayTeamConstructorPlasmalauncher'; bind MWHEELDOWN 'vstr deployToolConstructor'; bind MOUSE5 'vstr deployToolConstructor' SHIFT;" "" "default" // Oppressor bind "KP_DOWNARROW" "clientClass Oppressor 0;wait;addChatLine '^7Class: ^1Oppressor ^7[^2Lacerator^7]'; bind KP_INS 'vstr sayTeamOppressorLacerator'; bind MWHEELDOWN 'vstr specAbilityOppressor'; bind MOUSE5 'vstr deployToolOppressor' SHIFT;" "" "default" // Infiltrator bind "KP_LEFTARROW" "clientClass Infiltrator 0;wait;addChatLine '^7Class: ^1Infiltrator ^7[^2Lacerator^7]'; bind KP_INS 'vstr sayTeamInfiltratorLacerator'; bind MWHEELDOWN 'vstr specAbilityInfiltrator'; bind MOUSE5 'vstr deployToolInfiltrator' SHIFT;" "" "default" bind "KP_5" "clientClass Infiltrator 1;wait;addChatLine '^7Class: ^1Infiltrator ^7[^2Railgun^7]'; bind KP_INS 'vstr sayTeamInfiltratorRailgun'; bind MWHEELDOWN 'vstr specAbilityInfiltrator'; bind MOUSE5 'vstr deployToolInfiltrator' SHIFT;" "" "default"