Post ur tribe specs, mouse, mouse sense, resolution fov etc

i have a problem w/ my t1. about 1/4 of my binds won't stay and revert themselves every time i log on. my mouse sens also gets changed back.

i play with something like 14in/360 tho. fairly low sensitivity. i also have a huge mousepad.
 
Last edited:
Weapon selection very important. As a capper u want to go back and forth from disc/nade for clearing. As chaser, sometimes you may want to go from disc to chain, nade to disc, etc. This is a little thing but once u adjust to it you will realize how hurtful wheel/button scrolling is to exact shots u want to make.


good point my frient

Code:
editActionMap("playMap.sae");
//bindCommand(keyboard0, make, "1", TO, "weap2::getnextweapon(0);");
bindCommand(keyboard0, make, "1", TO, "weap2::getnextweapon(1);");

$weap2disc = "Disc Launcher";
$weap2cg = "Chaingun";
$weap2mortar = "Mortar";
$weap2gl = "Grenade Launcher";
$weap2vulcan = "Vulcan";
$weap2rocket= "Rocket Launcher";
$weap2sniper= "Sniper Rifle";
$weap2ammo[$weap2disc] = "Disc";
$weap2ammo[$weap2cg] = "Bullet";
$weap2ammo[$weap2gl] = "Grenade Ammo";
$weap2ammo[$weap2mortar] = "Mortar Ammo";
$weap2ammo[$weap2vulcan] = "Vulcan Bullet";
$weap2ammo[$weap2rocket] = "Rockets";


function weap2::use(%weapname){
	if( getItemCount(%weapname) && getItemCount($weap2ammo[%weapname])){
		use(%weapname);
		return 1;
	}
	return 0;
}

function weap2::getnextweapon(%isheavy){
    %mounted = getMountedItem(0);
	%isheavy = getItemCount("Heavy Armor") && %isheavy;
	switch (getItemDesc(%mounted)){
		case "Disc Launcher":{
			if (%isheavy && weap2::use($weap2mortar))
					return;
			else if( weap2::use($weap2gl) )
					return;
			else if( weap2::use($weap2cg) )
					return;				
		}
		case "Grenade Launcher":{
			if (weap2::use($weap2disc))
					return;
			else if( weap2::use($weap2cg)  )
					return;  
		}	
		case "Chaingun":{
			if (weap2::use($weap2disc))
					return;
			else if( weap2::use($weap2gl) )
					return;			
		}
		default: {
			if(weap2::use($weap2disc))
				return;
			else if(weap2::use($weap2cg) )
				return;	
		}	
	}
}

single button press to toggle most important weapons
 
do not let tribe science mislead you

pray to the hawkbat for guidance and wisdom

not all science is proven but the hawkbat is tribe and tribe is real
 
i have been using hotkey 4 exact precise weapon switching and my in game score has gone up 75%

thx tms

my scouting of distance movement has also improved and i have noticed many ppl crying
 
i use 123 disc cg nade 4 is laser 5 is mortar q is next weapon p is previous and mouse wheel wepon scrolls up and down

som many button gg
 
Back
Top