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

Search found 33 matches

by Boydon
09.10.2012 14:01
Forum: Requests
Topic: Features i would love
Replies: 4
Views: 10225

Re: Features i would love

In case you didn't notice Tooltip facilities are here: http://stealth.od.ua/forum/viewtopic.php?p=14389#p14389 :)
by Boydon
19.09.2012 19:56
Forum: General Discussion
Topic: Stealth ver 4
Replies: 5
Views: 17258

Re: Stealth ver 4

Is there any up to date beta version of 4.05 so I can test Python fixes? :)
by Boydon
16.09.2012 23:47
Forum: Help
Topic: [Python] GetGumpId makes stealth crash
Replies: 7
Views: 7567

Re: [Python] GetGumpId makes stealth crash

This is the surrogate replacement function that I put together while Alex come out with an official fix. Only partially tested with Python 3.x def gumpDict(gumpIndex): """Returns the Gump information obtained by GetGumpFullLines formatted in a handy and pretty dictionary""&q...
by Boydon
16.09.2012 23:27
Forum: General Discussion
Topic: Integration with OpenEUO
Replies: 2
Views: 9317

Integration with OpenEUO

Hello, as you probably know OpenEUO (the new version of EasyUO) is based on a public dll that is available and somewhat documented ( ref 1 and ref 2 ). Considering that the project is open source ( here you can find a not up to date version of the src) and written in pascal I think that it could be ...
by Boydon
11.09.2012 21:37
Forum: Help
Topic: [Python] GetGumpId makes stealth crash
Replies: 7
Views: 7567

Re: [Python] GetGumpId makes stealth crash

I see that there is another error with Python and Gumps.

A binding is missing to a Pascal Script available Method:

Code: Select all

NameError: global name 'GetGumpInfo' is not defined
Can this be fixed also with the new version of Stealth?
by Boydon
29.08.2012 23:25
Forum: Help
Topic: [Python] GetGumpId makes stealth crash
Replies: 7
Views: 7567

Re: [Python] GetGumpId makes stealth crash

No problem, it is my pleasure. :mrgreen: Hope this is the right board to report bugs. ;) Before you release the hot-fix here is the my dirty work-around. def GetGumpID(gump_index): for line in GetGumpFullLines(gump_index): if line.find('GumpID') != -1: gump_id_line = line break else: return 0 return...
by Boydon
29.08.2012 23:20
Forum: General Discussion
Topic: Stealth ver 4
Replies: 5
Views: 17258

Re: Stealth ver 4

Thank you 1000! :)
by Boydon
28.08.2012 23:11
Forum: General Discussion
Topic: Stealth ver 4
Replies: 5
Views: 17258

Re: Stealth ver 4

Did you see the bug I reported here? It is 4.04 related yet you can have a check at it for the upcoming release. :)

One question about planned features: do think there will be hotkeys support for Python and not just PascalScript?

Will have some tests. :)
by Boydon
26.08.2012 14:08
Forum: Help
Topic: [Python] GetGumpId makes stealth crash
Replies: 7
Views: 7567

[Python] GetGumpId makes stealth crash

Whenever i use the following snippet: print(GetGumpID(GetGumpsCount() - 1)) with the Gump below stealth will crash. This seems to work fine in normal PascalScript, but returns a negative number. I'm using the latest version of stealth (4.04). Probably, but this is just a guess, GumpID is not expecti...
by Boydon
13.08.2012 12:45
Forum: Help
Topic: Problems using NewMoveXY
Replies: 4
Views: 5050

Re: Problems using NewMoveXY

Just try to start Stealth without Razor.
by Boydon
01.05.2012 16:29
Forum: Основной раздел
Topic: Stealth 4.0.
Replies: 294
Views: 200587

Re: Stealth 4.0.

Autocomplete bug in 4.0.3.

It happens whenever I hit ctr+space in the editor:

Image
View Screen Capture
by Boydon
06.04.2012 17:07
Forum: Помощь по скриптам
Topic: Stelth and Python tkinter
Replies: 0
Views: 3330

Stelth and Python tkinter

Hello, I'm having problems using Python tkinter from stealth. I'm running stealth on Python 3.2 (but I think that it is the same with Python 2.7). Here a very simple snippet that works perfectly when i run it from clean python 3.2 console (not from stealth): from tkinter import * class App: def __in...
by Boydon
19.02.2012 21:11
Forum: FAQ
Topic: How to debug Python Scripts
Replies: 2
Views: 25126

How to debug Python Scripts

Hello everyone, I'm going to show how you can debug yours Stealth scripts written in Python using Pydev . If you have any question or something is not clear please let me know, but in english (I don't speak russian!). Prerequisites Any PC able to run the Eclipse IDE (this is the platform on the top ...
by Boydon
15.02.2012 15:22
Forum: Help
Topic: Python debug
Replies: 7
Views: 7021

Re: Python debug

Alex wrote: if you are using windows try \
It was a sample, forgive my professional bias. :D
What I am really using (without any problem of sort) is "\\".
by Boydon
15.02.2012 13:47
Forum: Help
Topic: Python debug
Replies: 7
Views: 7021

Re: Python debug

you can use this http://docs.python.org/library/sys.html#sys.path to set any location for pysrc module also sys.path can be updated from windows environment variables http://docs.python.org/using/windows.html#excursus-setting-environment-variables I used sys.path.append("/my/path/to/pysrc"...