|
MyMiasma Wanderer
Joined: 26 Oct 2012 Posts: 56
|
Posted: Sat May 28, 2016 10:18 am
Locate and kill monster |
There is a forest I visit that contains ents that walk around.
They don't show up in room, you have to 'exa ent' or 'poke ent'
etc to check for them.
I am looking for a alias or script that will walk me through the forest and poke/exa
ents until I find one, and then try to 'poke ent 2' to make sure there isnt a second one in the
same room(because they hit hard) and then attack the ent after locating.
I have never used speedwalks/slowwalks before. basically my aliases are my speedwalks
but reading through help it seemed that might be an option..
Any suggestions? |
|
_________________ It is better to die on your feet than to live on your knees. |
|
|
|
shalimar GURU
Joined: 04 Aug 2002 Posts: 4691 Location: Pensacola, FL, USA
|
Posted: Sat May 28, 2016 1:03 pm |
eh... i would use something like:
#EVENT onRoomEnter {
#IF (%zonename="your forest zone") {
poke ent
#WAITFOR {You poke} 2000 {} {#PRINT Nothing here.;#EXIT}
poke ent 2
#WAITFOR {You poke} 2000 {#PRINT Keep going, there are two of them!} {attack ent}
}}
Now, you could make use of this with a speedwalk as well, with pauses and whatnot... this will only check the rooms themselves. |
|
_________________ Discord: Shalimarwildcat |
|
|
|
|
|