Go to X, Y && use pickaxe

Ask for help

Moderators: Murderator+, Murderator

Post Reply
r4z13l
Posts: 4
Joined: 2005-08-08 19:24:44

Go to X, Y && use pickaxe

Post by r4z13l »

So, I've made a script for a boring prison system (view : viewtopic.php?t=12140), but I've 2 problems :

1st : the way I move isn't the best, I need something that never break which will allow my player to go to X, Y.

Code: Select all

   while x<>5304 or y<>1173
      uo.press(38)
      wait(100)
      x=uo.getx("self")
      y=uo.gety("self")
   wend


2nd : here is how I tell my player to take the pikeaxe and mines in front of him, it works well but I couldn't use my computer anymore ... a bit boring :(

Code: Select all

   uo.usetype(0x0e85)
   wait(100)
   uo.lclick(375,255)


Thanks You !!!
Rivory
Posts: 205
Joined: 2005-01-06 11:49:28

Post by Rivory »

1) you need this walker

2) I am not understanding.. whats a trouble ?
r4z13l
Posts: 4
Joined: 2005-08-08 19:24:44

Post by r4z13l »

Rivory wrote:1) you need this walker


Thanks you, will try it :wink:

Rivory wrote:2) I am not understanding.. whats a trouble ?


For exemple, if I answer a friend on MSN, during that time, my player doesn't mine. I must stay in front of the game all the time.
Mihail
Expert!
Posts: 548
Joined: 2005-05-20 20:30:10
Contact:

Post by Mihail »

do not use mouse-click emulation to mine!
injection has special functions for this

for example U can use this script viewtopic.php?t=842

(to translate instruction use Online Translator( http://www.worldlingo.com/en/websites/u ... lator.html ))
r4z13l
Posts: 4
Joined: 2005-08-08 19:24:44

Post by r4z13l »

Thank you very much, I'm gonna read ^^.
Post Reply