All pastes #1868865 Raw Edit

Unnamed

public text v1 · immutable
#1868865 ·published 2010-04-20 01:37 UTC
rendered paste body
import com.quirlion.script.*;
import com.quirlion.script.types.*;
import com.quirlion.script.types.Location.*;
import com.quirlion.script.types.Camera.*;


public class SXCFlaxySpinna extends Script {
	
	
	private Location bankTile = new Location(3208, 3220);
	
	private Location stairTile = new Location(3205, 3209);
	
	private Location pinnerTile = new Location(3209, 3213);
	
	
	private Location[] stairsPath = { new Location(3206, 3209), new Location(3209, 3213) } ;
	
	private Location[] spinnerPath = { new Location(3205,3209), new Location(3209, 3213) } ;
	 
	private Location[] bankPath = { new Location(3205, 3209), new Location(3208, 3220) } ;
	
	
	
	private int[] stairsID = { 36775, 36774 };
	
	private int[] spinnerID = { 36970 }
	
	@override
	
	public int loop() {
		
		//bank
		bank.open();
		bank.depositAll();
		bank.withdraw(1779, 28);
		bank.close();
		return 1000;
	}
}