Page 1 of 1

[Orion] 4x4 fishing from a boat.

Posted: Sat Sep 25, 2021 4:49 am
by davethemage
Get in a boat... point it to open water (make sure you have a fishing pole equipped) and run

Code: Select all

function fishing()
{
	while(true)
	{
		for (var x = -4; x <= 4; x=x+8)
		{
			for (var y = -4; y <= 4; y=y+8)
			{
				Orion.EquipT('0x0DC0');
				Orion.UseType('0x0DC0', '0xFFFF');
				if (Orion.WaitForTarget(1000))
				{
					Orion.TargetTileRelative('water', x, y, 4);
					Orion.Wait('7500');
				}	
				if (Orion.InJournal("biting here", 'my|sys' ,0, any, 0, 0))   
				{
					Orion.Print("fishes all gone");
					Orion.ClearJournal();
					Orion.Say('forward'); 
					Orion.Wait('7500');
					Orion.Say('stop'); 
				}             
			}
		}	
	}
}

Re: [Orion] 4x4 fishing from a boat.

Posted: Mon Sep 27, 2021 12:51 pm
by Legilmalia
row before : Orion.UseType('0x0DC0', '0xFFFF');
ive added : Orion.EquipT('0x0DC0');
sins we have breakable fishing poles, so it equips a new fishing pole after the last one vanished.

Re: [Orion] 4x4 fishing from a boat.

Posted: Mon Sep 27, 2021 11:12 pm
by davethemage
Nice add! I might get motivated some day and check for lures and such, but as a good basic fishing script it works...now even more with not having to worry about a fishing pole.