Tracking of BittyCar use

ereinion

Member
Is there any tracking of whether or not you've used a BittyCar (from Crimbo '12) each day, or of which one is active? I was editing a script, and started wondering if I could save a server-hit by checking if I'd already used one. Considering that there is no failure to use one, even if you already have one of them active it doesn't really matter much for the end results, but I got curious.

A prefref search for "bitty" and "car" seems to indicate that no such property exists, but I suppose it doesn't hurt to ask.
 

Bale

Minion
My loginScript just got a little bigger.

Code:
boolean bittycar() {
	if(get_property("_bittycar") == "")
		foreach car in $items[BittyCar MeatCar, BittyCar SoulCar, BittyCar HotCar]
			if(item_amount(car) > 0 || (closet_amount(car) > 0 && take_closet(1, car)) || (can_interact() && storage_amount(car) > 0 && take_storage(1, car)))
				return use(1, car);
	return false;
}
 
Last edited:

lostcalpolydude

Developer
Staff member
Mine is just
Code:
ashq if( item_amount($item[bittycar meatcar]) > 0 ) { use( 1, $item[bittycar meatcar] ); }
shoved into the On Login box. Mafia won't use it a second time in a day.
 
Top