familiar_weight()

Pazleysox

Member
Is there a command to find your heaviest (most kills) familiar, and start using it? I've searched the forums, but can't find exactly what I'm looking for.

In the case I'm looking for, I'm doing CS runs, and trying to streamline it. (yeah, I know it's out dated) I don't care which familiar it is, but the most experienced is what I need in this case.
 

lostcalpolydude

Developer
Staff member
You would need to check through each familiar on your own and find the heaviest.

Code:
familiar fam_to_use;
int weight = 0;
foreach fam in $familiars[]
{
	if ( familiar_weight( fam ) > weight )
	{
		fam_to_use = fam;
		weight = familiar_weight( fam );
	}
}
That will give you the heaviest familiar, ready to use for something else.
 
Top