Forum in READ ONLY mode! All questions and discussions on Discord official server, invite link: https://discord.gg/VxsGzJ7

Search found 49 matches

by mixers
13.02.2014 9:07
Forum: Scripts
Topic: move one step so wait one minute.
Replies: 2
Views: 8187

Re: move one step so wait one minute.

the dead pet move speed slowly, can not follow me.
by mixers
11.02.2014 16:37
Forum: Scripts
Topic: move one step so wait one minute.
Replies: 2
Views: 8187

move one step so wait one minute.

i can do that in euo.

Code: Select all

while #charposx <> %x || #charposy <> %y
  {
   move %x %y a 1s
   gosub waitpet
  }

What should I do in Stealth ?
by mixers
11.02.2014 8:45
Forum: Help
Topic: help me, Unknown identifier
Replies: 4
Views: 5628

Re: help me, Unknown identifier

thank Crome696.
i think the code must like this
in euo

Code: Select all

sub ***
return

main:
gosub ***

goto main
sub must before main
by mixers
11.02.2014 6:54
Forum: Scripts
Topic: i want to find item id, not type
Replies: 6
Views: 11502

Re: i want to find item id, not type

i finded 2 same type item,if i need item in backpack, so unquip all armor and equip the item.
thanks.
by mixers
10.02.2014 13:53
Forum: Scripts
Topic: i want to find item id, not type
Replies: 6
Views: 11502

Re: i want to find item id, not type

ok , i know ,
'GetDistance' can help me.
now i want know how to find item by id?
by mixers
10.02.2014 13:21
Forum: Scripts
Topic: i want to find item id, not type
Replies: 6
Views: 11502

i want to find item id, not type

Program New; const pet = $0001C94A; procedure waitpet; begin repeat finddistance := 2; findtype(pet,ground); addtosystemjournal(inttostr(finditem)); until finditem > 0; end; begin repeat movexy(1206,1536,true,0,false); waitpet movexy(1207,1522,true,0,false); waitpet until dead; end. finditem value ...
by mixers
07.02.2014 4:13
Forum: Help
Topic: help me, Unknown identifier
Replies: 4
Views: 5628

help me, Unknown identifier

Program New; const shovel = $0F39; box_1 = $40311147; //ingot_box box_2 = $401B777E; shovel_box_1 = $401EF50F; //shovel_box shovel_box_2 = $4070BC0D; ingot = $1BF2; tinker_tool = $1EB8; var shovel_box : integer; box : integer; begin repeat movexy(1202,1545,true,0,false); shovel_box := shovel_box_1;...
by mixers
17.01.2014 15:57
Forum: Help
Topic: can not connect server
Replies: 4
Views: 5040

Re: can not connect server

由于目标机器积极拒绝,无法连接
translate: because target computer refuse,can not connect server
by mixers
16.01.2014 17:17
Forum: Help
Topic: can not connect server
Replies: 4
Views: 5040

Re: can not connect server

An exception raised at 21:44:32:546 Windows socket error: 由于目标机器积极拒绝,无法连接。 (10061), on API 'connect' (0021205E){Stealth_Mining.exe} [0061305E] System.Win.ScktComp.CheckSocketResult (Line 512, "System.Win.ScktComp.pas") Call stack: (00212059){Stealth_Mining.exe} [00613059] System.Win.ScktC...
by mixers
16.01.2014 16:42
Forum: Help
Topic: can not connect server
Replies: 4
Views: 5040

can not connect server

because target computer refuse,can not connect server

uo client can connect, but can not connect stealth.

help me, thanks.
by mixers
10.12.2013 14:10
Forum: Scripts
Topic: script can not working
Replies: 3
Views: 9103

Re: script can not working

thanks. now it's ok.
by mixers
10.12.2013 12:20
Forum: Scripts
Topic: how to get current skill level
Replies: 2
Views: 8011

how to get current skill level

getskillvalue('resisting spells')
it's can get real skill level.
the skill value 100, now cast spell "protection", current skill value 66, if use getskillvalue, the value still keep 100.
by mixers
05.12.2013 16:54
Forum: Scripts
Topic: script can not working
Replies: 3
Views: 9103

Re: script can not working

no one can help me :cry: :cry: :cry:
by mixers
02.12.2013 17:07
Forum: General Discussion
Topic: Stealth in other countries
Replies: 23
Views: 31272

Re: Stealth in other countries

update to 6.1.4, now it's ok
thanks every one.
by mixers
02.12.2013 17:03
Forum: Scripts
Topic: script can not working
Replies: 3
Views: 9103

script can not working

Program Moongate; const moongate = $0F6C; var currentgumpscount : integer; begin currentgumpscount := getgumpscount; findtype(moongate,ground); useobject(finditem); while getgumpscount <= currentgumpscount do wait(100); numgumpbutton(getgumpscount-1,12); wait(1000); numgumpbutton(getgumpscount-1,1)...