autorepkit.cs

Code:
function Auto::Health( ) {
	if ( $Health < 70 && $Health > 0 )
		use("Repair Kit");
		
	schedule::add("Auto::Health();", 0.1);
}

Event::Attach(eventConnected, Auto::Health);
 
Back
Top