
Forum in READ ONLY mode! All questions and discussions on Discord official server, invite link: https://discord.gg/VxsGzJ7
Search found 12 matches
- 26.05.2020 10:01
- Forum: Help
- Topic: What Pascal interpreter does Stealth use?
- Replies: 4
- Views: 13816
Re: What Pascal interpreter does Stealth use?
Alright, fair enough. Thank you for trying. 

- 26.05.2020 9:56
- Forum: Help
- Topic: What modules/units are available in Stealth's Pascal Script?
- Replies: 5
- Views: 14487
Re: What modules/units are available in Stealth's Pascal Scr
I think I get it. I suspected that magic was around here somewhere. That topic / thread looks like very helpful information. In my other thread, I was contemplating making a daemon or service to use Win32 API if I couldn't do it from Stealth scripts directly. This might be better: just put a .dll an...
- 26.05.2020 9:25
- Forum: Help
- Topic: Ultima Mapper while using Stealth Client?
- Replies: 3
- Views: 12161
Re: Ultima Mapper while using Stealth Client?
Thank you for the confirmation! :) Is there any way to make Win32 API calls from within scripts? (I played with it a bit, and couldn't seem to do it in an obvious way.) With the right Win32 functions I could implement the UOAssist API: http://www.uor-razor.com/help/uoaapi/ http://web.archive.org/web...
- 26.05.2020 9:12
- Forum: Help
- Topic: [SOLVED] "'BEGIN' expected"; How do I use Pascal "Units"?
- Replies: 6
- Views: 15621
Re: [SOLVED] "'BEGIN' expected"; How do I use Pascal "Units"
Wow, thank you! 

- 23.05.2020 0:59
- Forum: Help
- Topic: Ultima Mapper while using Stealth Client?
- Replies: 3
- Views: 12161
Ultima Mapper while using Stealth Client?
Hello, Has anyone managed to get Ultima Mapper to work while using the graphical client launched from Stealth? https://www.ultimamapper.com/ I'm starting the Classic Client from Stealth and logging in before I run Ultima Mapper. Ultima Mapper runs but is unable to track my character's position. It j...
- 20.05.2020 22:34
- Forum: Help
- Topic: What Pascal interpreter does Stealth use?
- Replies: 4
- Views: 13816
Re: What Pascal interpreter does Stealth use?
Great! I will try to find RemObjects documentation/examples when I am scouting for Pascal features.
Is there any documentation or source code (ex: forked github repository) I can look at to see what was modified?
Is there any documentation or source code (ex: forked github repository) I can look at to see what was modified?
- 20.05.2020 22:32
- Forum: Help
- Topic: What modules/units are available in Stealth's Pascal Script?
- Replies: 5
- Views: 14487
Re: What modules/units are available in Stealth's Pascal Scr
That does make sense as a limitation for sake of security. Thanks for the info! If I needed to, how would I use external Delphi scripts? I'm wondering if the stealth_script.pas file in Stealth's root directory would allow me to expose things for my scripts, including .DLLs. Maybe that would be how t...
- 20.05.2020 22:23
- Forum: Help
- Topic: [SOLVED] "'BEGIN' expected"; How do I use Pascal "Units"?
- Replies: 6
- Views: 15621
Re: "'BEGIN' expected"; How do I use Pascal Units in Stealth
I was wondering about that. Good to know! But when I let the main script just pull in the module, I instead get the "Unit '____' not found or contains errors" error from the calling module/program. It always points at the beginning of the module (Unit), so I still have no way to debug the ...
- 17.05.2020 20:51
- Forum: Help
- Topic: What modules/units are available in Stealth's Pascal Script?
- Replies: 5
- Views: 14487
What modules/units are available in Stealth's Pascal Script?
What modules/units are available in Stealth's Pascal Script? I've been able to put SysUtils without error, ex: Program MyProgramName; Uses SysUtils; But many other things from Pascal examples online are not working. Ex: System.IOUtils, System.Generics.Collections, System.(anything really), IOUtils, ...
- 17.05.2020 20:39
- Forum: Help
- Topic: What Pascal interpreter does Stealth use?
- Replies: 4
- Views: 13816
What Pascal interpreter does Stealth use?
What Pascal interpreter does Stealth use? (Ex: RemObjects Pascal Script, something else, or does Stealth implement its own dialect of Pascal?)
Thanks!
Thanks!
- 17.05.2020 19:48
- Forum: Help
- Topic: [SOLVED] "'BEGIN' expected"; How do I use Pascal "Units"?
- Replies: 6
- Views: 15621
Re: "'BEGIN' expected"; How do I use Pascal Units in Stealth
Yes, I have the Scripts\Uses\ in my Stealth folder. It has two examples in it from when I downloaded Stealth: Scripts\Uses\checksave.pas Scripts\Uses\hungry.pas Whenever I try to "run" either of them, I get the "Compiler: [Error] at (1:1): 'BEGIN' expected" error. I need to have ...
- 17.05.2020 1:41
- Forum: Help
- Topic: [SOLVED] "'BEGIN' expected"; How do I use Pascal "Units"?
- Replies: 6
- Views: 15621
[SOLVED] "'BEGIN' expected"; How do I use Pascal "Units"?
Hello, I am trying to make Pascal/Delphi "Units" for my scripts to use, but I think I don't understand the workflow in Stealth Client. These are my questions: How does the compiler find "Unit" scripts when I reference them in the "Uses" statement? How do you troubleshoo...