[EasyUO] quest fix

If you make a Client-side script you can publish it here for other players to use
Post Reply
Luna
Expert Scribe
Posts: 33
Joined: Tue Dec 05, 2017 6:32 am

[EasyUO] quest fix

Post by Luna »

I had problems finding Meteorite in the Orange Belt Karate quest. Some items were hidden by the mountains south of the location so I quickly wrote a script that dblclicks every item on the ground around you once:

Code: Select all

ignoreItem reset 1
while #true
{
  finditem * G_2
  if #FINDCNT > 0
  {
    for #FINDINDEX 1 #FINDCNT
    {
      set #LOBJECTID #FINDID
      event macro 17 0
      ignoreItem #FINDID
    }
  }
}
Start this script and run around the mountain. Make sure to stop it manually when you have 5 meteorite in your pack.
No support. Have fun
Post Reply