ScriptUO
		Official ScriptUO EasyUO Scripts => Script Snippets => Topic started by: Khameleon on September 02, 2010, 12:39:39 AM
		
			
			- 
				this is just a little something I wrote to help me trip the rocks while fighting Navri...
Updated to alert you using the old System message when the rocks are ready to be tripped...
			 
			
			- 
				Thanks Khameleon !
This will help me alot
			 
			
			- 
				Now when you write the part that has a popup when the rocks are ready to be done you'll have what I've been doing for months ;)
			
 
			
			- 
				oh... that's a great idea... 
			
 
			
			- 
				just something intersting i experimented with if u triger the rocks and cast spell plague on navery she drops 3 times faster than just useing rocks alone
			
 
			
			- 
				
just something intersting i experimented with if u triger the rocks and cast spell plague on navery she drops 3 times faster than just useing rocks alone
Wow! Never thought about that!!
			 
			
			- 
				I discoverd it one night when i was soloing navri
			
 
			
			- 
				
Now when you write the part that has a popup when the rocks are ready to be done you'll have what I've been doing for months ;)
hrm i need some suggestions how this can be done without tripping the message box 5 million times 
			 
			
			- 
				Timers.
set %timer #sCnt
repeat
if #sCnt > %timer
gosub dothisthing
wait 1
until #false
sub dothisthing
finditem XXX ; the colored block, you may need a findcol in here too, don't remember and I'm at work
if #findCnt > 0
{
display OK Lets do this thing!!!!
set %timer ( #sCnt + 60 ) ; one minute
}
return ; or put in your click stuff here
			 
			
			- 
				Thanks I think I got something going to test it out now :)
			
 
			
			- 
				wonder if it would be possible to set up a menu of which order to click them in and it would remember it and move you to the locations and click them automatically?