ScriptUO

Official ScriptUO EasyUO Scripts => Script Snippets => Topic started by: Khameleon on September 02, 2010, 12:39:39 AM

Title: Falling Rocks - Navri
Post 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...

Title: Re: Falling Rocks - Navri
Post by: bendel on May 10, 2011, 11:09:53 PM
Thanks Khameleon !

This will help me alot
Title: Re: Falling Rocks - Navri
Post by: Cerveza on May 11, 2011, 03:56:36 AM
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 ;)
Title: Re: Falling Rocks - Navri
Post by: Khameleon on May 12, 2011, 05:57:20 PM
oh... that's a great idea...
Title: Re: Falling Rocks - Navri
Post by: Outlaw Josey Wales on May 12, 2011, 07:07:30 PM
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
Title: Re: Falling Rocks - Navri
Post by: UOMaddog on May 12, 2011, 09:34:37 PM
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!!
Title: Re: Falling Rocks - Navri
Post by: Outlaw Josey Wales on May 12, 2011, 09:46:40 PM
I discoverd it one night when i was soloing navri
Title: Re: Falling Rocks - Navri
Post by: Khameleon on October 20, 2011, 12:49:15 PM
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
Title: Re: Falling Rocks - Navri
Post by: Cerveza on October 20, 2011, 01:28:32 PM
Timers.

Code: [Select]
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
Title: Re: Falling Rocks - Navri
Post by: Khameleon on October 20, 2011, 05:44:50 PM
Thanks I think I got something going to test it out now :)
Title: Re: Falling Rocks - Navri
Post by: tandj99 on April 02, 2014, 05:13:22 PM
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?