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

Search found 18 matches

by verbin
14.03.2015 15:49
Forum: Help
Topic: evTimer question
Replies: 2
Views: 3868

evTimer question

Program New; procedure timer1(); begin uosay('this sub thread'); end; begin SetEventProc(evTimer1,'timer1'); while true do begin uosay('this main thread'); wait(10); end; end. this code,timer1 Don't work and....where set Time interval? User manual is Russian,not english SetEventProc function is Mul...
by verbin
13.03.2015 17:48
Forum: Help
Topic: i want create form and show backpack
Replies: 5
Views: 5745

Re: i want create form and show backpack

PS is "RemObjects Pascal Script"?
i install it,and use this code,system info is Unknown type 'TSTForm'
install ps,need config?how do?
by verbin
08.03.2015 13:44
Forum: Help
Topic: i want create form and show backpack
Replies: 5
Views: 5745

Re: i want create form and show backpack

what is ps?
and i scropts run in 2days after,the scripts can't find a box of iron,only rerun scripts
by verbin
08.03.2015 11:41
Forum: Help
Topic: how do debug pascal code?
Replies: 4
Views: 4828

Re: how do debug pascal code?

stealth can't use chinese filename.......i use english filename can debug
by verbin
08.03.2015 11:37
Forum: Help
Topic: i want create form and show backpack
Replies: 5
Views: 5745

i want create form and show backpack

i want create form show my backpack
i use this code

Code: Select all

Var
MainForm : TSTForm;
Image : TSTImage;
Quit : Integer;
but system tell me " Compiler: [Error] at (3:12): Unknown type 'TSTForm'
"

how do?
by verbin
20.02.2015 10:46
Forum: Help
Topic: how do findtype and goto found item's Coordinates
Replies: 2
Views: 3685

how do findtype and goto found item's Coordinates

how do findtype and goto found item's Coordinates
by verbin
13.02.2015 22:37
Forum: Help
Topic: connect to remote stealth server?
Replies: 4
Views: 4694

Re: connect to remote stealth server?

http://sh.yun.ftn.qq.com/ftn_handler/7f6546d6688c2cfef03641597c835574ff7825104150f035dd1047d58d6ddc74/?fname=QQ%e5%9b%be%e7%89%8720150214020624.png&cn=0&cv=30111&size=640*640 this is my razor [Server Options] Encryption=No encryption Port=5005 Only LocalHost=0 Login=StealthClient Passwo...
by verbin
13.02.2015 14:40
Forum: Help
Topic: connect to remote stealth server?
Replies: 4
Views: 4694

Re: connect to remote stealth server?

i use razor,"Path Client Encryption" checked can't connect,don't checked can't connect to.....
by verbin
08.02.2015 3:12
Forum: Help
Topic: connect to remote stealth server?
Replies: 4
Views: 4694

connect to remote stealth server?

I have a Server,run stealth in this server,i want use my computer UO Client connect this server
Stealth 'allow to connect only from lcalhost' is not checkde
username:StealthClient password:Admin
but,say my username or password is error?
how do?
by verbin
23.01.2015 11:23
Forum: Help
Topic: how do debug pascal code?
Replies: 4
Views: 4828

Re: how do debug pascal code?

Vizit0r wrote:PS or python?
Pascal,not python
by verbin
22.01.2015 15:02
Forum: Help
Topic: how do debug pascal code?
Replies: 4
Views: 4828

how do debug pascal code?

Iam check EnableDebugMode and press F7 F8 F9 but not work or don't stop with breakpoint
How to do it?
by verbin
21.01.2015 1:52
Forum: Help
Topic: how move something from BoxA to BoxB?
Replies: 6
Views: 5925

Re: how move something from BoxA to BoxB?

function mvitem() :integer; var BoxA, BoxB, Temp : Cardinal; //Mistake! BoxA and BoxB must be Cardinal, word is for types of items, Cardinals for IDs; begin if FindType($9aa, Ground) > 0 then //there FindQuantity is 2 BoxA := FindItem; //now, how do find other Box? UseObject(BoxA); //But System Tel...