ScriptUO

Official ScriptUO EasyUO Scripts => Scripting Chat => Topic started by: 8 Ball on April 09, 2013, 07:24:20 AM

Title: 'Click' item on ground?
Post by: 8 Ball on April 09, 2013, 07:24:20 AM
Hi guys, I'm trying to make a really simple script to click the summoning altar in Shame so I can kill the summons on my second account. ATM I just have a simple click/wait setup, but when I change to the second client it stops working. The altar will keep flashing yellow as though it is being highlighted but unless I manually move my cursor over it the messages won't appear. Any ideas?
Title: Re: 'Click' item on ground?
Post by: dxrom on April 09, 2013, 08:14:15 AM
finditem <whatever the id is> G_2
if #findcnt < 1
  return
set #lobjectid #findid
event macro 17 0
Title: Re: 'Click' item on ground?
Post by: Paulonius on April 09, 2013, 10:12:44 AM
Post your code up so that we can see what you did.
Title: Re: 'Click' item on ground?
Post by: 8 Ball on April 09, 2013, 10:18:38 AM
Thats amazing dxrom, did the job perfectly :) Thanks!

For my own code I simply had two lines; click [coords] d and then a wait, basically just cobbling bits together from the EUO wiki :)