Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ZeroDX

Pages: [1] 2 3
1
Stealth scripts / Re: [C#, ScriptSDK] EggFarmer
« on: September 25, 2020, 10:06:28 AM »
It is preferable to use tuples instead lists if the arrays will not be edited.
There is no need to use global operator if your variables will not be reassigned (OnClilocSpeech function).
There is a wrong using SetFindDistance and SetFindVertical functions. They are functions.

I hope you continue to write python scripts, cause this script is a good one. If you will, there is some styling conventions PEP-8.

2
Stealth Client / Re: Stealth Client packets and other stuff
« on: July 08, 2020, 08:09:48 AM »
sorry, but i never played with euo. i dont know, what it can do

3
Stealth Client / Re: Stealth Client packets and other stuff
« on: July 06, 2020, 03:07:31 PM »
wow, this will be hard to create uo client solo. stealth does not provide packages-api.

4
Stealth Client / Re: C# Compatibility
« on: February 07, 2019, 07:15:14 AM »
sorry, but i can't help with that. i am not the author, i just fixed errors

5
Stealth Client / Re: [Release] ScriptSDK 0.9.3 [UPDATED 28.05.2016]
« on: February 05, 2019, 12:07:26 PM »
the last known working dll. author - Maxwell. stealth version 8.8.7

6
Stealth Client / Re: Required C# tester
« on: February 05, 2019, 12:01:45 PM »
no more need

7
Stealth Client / Re: C# Compatibility
« on: February 05, 2019, 12:01:09 PM »
try this. It works fine now.

8
Stealth Client / Re: C# Compatibility
« on: February 01, 2019, 02:50:01 AM »
ok. i found some bugs
try with this package

9
Stealth Client / Re: Required C# tester
« on: January 31, 2019, 11:36:58 PM »
any event

10
Stealth Client / Required C# tester
« on: January 31, 2019, 12:52:30 PM »
Need someboby to test an event handling with fixed sdk + stealth 8.8.7. I have no idea how to use that thing  :)

11
Stealth Client / Re: C# Compatibility
« on: January 30, 2019, 11:15:39 PM »
ะก# repo
wait for a few days. will be updated soon

12
Stealth Client / Re: WHat has changed
« on: December 29, 2018, 11:55:20 PM »
That means it is receiving a packet from UO that it doesn't know what to do with.  I would suggest you getting the most current version of Stealth as it keeps up to date with major client updates and packet updates.
nope! that means there is an error in the external scripts protocol
Having trouble with the client, my script works with an older client 6.7.0 but when you try to connect the character connects for like 1 second.

When i use the latest client 8.8.85 i can connect no problem but i get an error when i try and run  certain script. :-[
what language do you use?

13
Stealth Snippets\Library / Re: Python item counter, for backpack
« on: December 19, 2018, 08:25:28 PM »
Code: Python
  1. LIMIT = 100
  2.  
  3. def get_count(type=-1, color=-1, container=Backpack(), recurse=False):
  4.     FindTypeEx(type, color, container, recurse)
  5.     return FindCount()
  6.  
  7. total = Count(-1)  # total items quantiry (if you have only 100gp in your pack, this will return 100)
  8. if total > LIMIT:
  9.     AddToSystemJournal("total quantity: " + str(total) + " greater than LIMIT: " + str(LIMIT))
  10. count = get_count()
  11. if count > LIMIT:
  12.     AddToSystemJournal("quantity: " + str(count) + " greater than LIMIT: " + str(LIMIT))
  13.  

14
Stealth Snippets\Library / Re: Python item counter, for backpack
« on: December 19, 2018, 11:31:18 AM »
Code: Python
  1. LIMIT = 120
  2.  
  3. if Count(-1) > LIMIT:
  4.     pass  # items quantity in a backpack more than 120
  5.  

15
Stealth Snippets\Library / Re: Python item counter, for backpack
« on: December 19, 2018, 08:05:06 AM »
here you are
CountEx
Count

Pages: [1] 2 3