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 - Crome969

Pages: 1 [2] 3 4 ... 119
16
Stealth scripts / Re: Magery Trainer
« on: December 21, 2017, 11:31:08 PM »
Hello again   8)

After a few hours of work (looking for tutorials), I finally managed to make a little mage trainer for EA Shards.
after a few tests on "Test Center", it works!

Only a little problem...
If i run the program from Visual Studio 2017 I have no crash.
But If i open the build release with Admin right, it will insta crash the Client.exe but continue working on stealth.

If you are shocked by the code structure, all tips will be welcome, I have never done anything like this before.

My goal is to learn and share, each advice received will allow me to evolve and share my achievements on the forum.
Should be reported to Vizit0r as best. He can prolly fix the issue. First i thought you mean an assembly issue, but that would crash the application not client.exe. I will check if i can reproduce it. Do you use the latest SDK-Build from my repo?

17
Stealth scripts / Re: [V6.7.1,ScriptSDK] FAIL - Fully Automated IDOC Looter
« on: December 21, 2017, 11:27:57 PM »
have not seen his code for long but SDK and Stealth should work.. if not i need to see whats the issue.

18
Stealth Client / Re: Questions from a noob
« on: December 21, 2017, 03:24:47 AM »
I just visited a good part of the forum and I just discovered that there was even more exciting than "Easyuo". Stealth!

So if I understand correctly, it is possible to use this tool without have to open the client of the game? That's wonderful ! it means that we can use it on an old pc and run lots of accounts at the same time, it's whew!

Now, I have some questions if I do not abuse,
- Do I have to learn the same language that Easyuo uses?
- I saw that he accepted other programming languages ​​Python, C # & Pascal. Am I obliged to learn all three, or would only one language suffice? If so, which would be the most suitable for a novice like me?
- Is it possible to learn to code by reading existing codes on the site or it is possible by following tutorials on the internet? (I do not know if I'll have time to read all the documentation)
- Is Stealth playable as a "UO Assistant"?
- is Stealth an finished project?

I have never programmed yet but, but I want to give a little spice to the daily of my accounts, or why not share creations of my way of thinking about the game.

I thank you for your answers.

1) No, EasyUO is written in delphi but only allows to design scripts in its own languange with own syntax. The languange is selfwritten and is interpreted by delphi.
2) Pascal Script and Python are embedded into the Editor (python requires some frameworks). This means you not need any external software to design and execute scripts. Stealth expose an external api which can be theoretical be used in any other languange. C# is just one of them (and more used due the fact that people published more samples and tutorials about it).
3) Yes but limited. If you want to learn C#, Stealth might not be the best way but if you want to script its a good way because c# has a lot of resources published.
4) Yes but Limited unless you write your own Assistant-Tools by using the external API. But then you need to define your own hooks and such.
5) Release were many years ago and stealth is in an active development obtaining more and more features every year. I have seen very complex scripts solved by stealth much more advanced then in uosteam or easyuo.

19
Stealth Client / Re: Ip's and Ports
« on: December 20, 2017, 05:39:16 AM »
Stealth.cfg exposes all you need. As far it goes about visual studio you can use the latest as community edition or higher.

20
Stealth Client / Re: [debug] Statistics
« on: December 09, 2017, 10:32:55 PM »
Hey my friend! If you have skype, hit me up later on.. i dont use icq lately. I can help you figure out a a way.

As startup to think about it is you need a start time and a current time.
Then you should figure out, if there are functions that gives you a timespan or not.
Idea 1 :

Pseudo function 1
Code: [Select]
TimeA : TDatetime;
begin
TimeA := Now;

while((Now - TimeA) < 1) do  <----------- Here we get a timespan in form of a date and need to parse
begin

end;
end;


Idea 2 :

Code: [Select]
Hour_1 : Cardinal;

TimeA : Cardinal;

Hour_1 := 3600 * 1000; //Reflects a hour

TimeA := GetTicks() + Hour_1;

if(TimeA > GetTicks()) then
begin
    // 1 hour has passed..
end;

I guess you get it. All pseudo.. had not runned stealth for a while..



21
Stealth Client / Re: c# and multi-threading
« on: December 08, 2017, 01:00:13 AM »

22
Stealth Client / Re: [c# and scriptSDK] looting
« on: November 27, 2017, 11:15:49 PM »
Why making it hard? Use Scanner (https://github.com/Crome696/ScriptSDK/blob/master/ScriptSDK/Engines/Scanner.cs) to find Items and then iterate through list and use Move commands (https://github.com/Crome696/ScriptSDK/blob/master/ScriptSDK/Model/Items/Item.cs).
That way it also subchecks certain things and handle most stuff fully automaticly. I actually dont understand why people use the stealth.client logics when there is a full framework of objects and models, enginges, parser and components to handle stuff dynamicly

*facepalm*

23
Site News / Re: So long, and thanks for all the fish!
« on: October 19, 2017, 06:45:04 AM »

24
Stealth Client / Re: help
« on: October 18, 2017, 09:25:41 PM »
yeap - i agree - i run stealth and a client that runs easyuo. It would be nice if stealth could run euo scripts directly - but I assume that will never happen.
It would require that someone write a syntax component for gui that is able to wrap euo code and convert it to stealth.  A lot of efforts and would slow down speed on stealth. I think with some work it's possible either in delphi or .net by using API

25
UOSteam / Re: uosteam source code
« on: September 26, 2017, 02:12:32 AM »
Hello, can you find the source code for uosteam?
I believe Kraz wrote a statement back then, that they wont release the sourcecode. I believe, that anyone who would want to toy with the sourcecode also need the proper experience to understand its complexity. That would kinda already lead to the point, that you could write your own assistance tool. The informations about structure, encryption and all exist on the web...

Simple dig in and modding without knowing what to do leads to a ban anyways (its so eay to catch up idiots who send wrong packets).

26
Freeshard specific scripts / Re: Heartwood Fletcher Quest for Bolts
« on: September 04, 2017, 05:18:31 AM »

27
Stealth Client / Re: how do I compile a script thats posted????
« on: August 12, 2017, 12:17:31 AM »
i might can check his source this weekend. Guess he builds a click once solution and thats interfering.

28
Stealth Client / Re: how do I compile a script thats posted????
« on: August 10, 2017, 07:56:49 PM »
Quote
C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\Microsoft.Common.CurrentVersion.targets(1964,5): warning MSB3245: Could not resolve this reference. Could not locate the assembly "ScriptSDK". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
This is your error and the assembly reference issue i spoke of in my previous post.

Here are the steps to solve it:

1) Add ScriptSDK Project to Eggfarmer Project  https://msdn.microsoft.com/en-us/library/h970wzkb.aspx
2) Add the Assemblies of ScriptSDK as reference to Eggfarmer Project https://stackoverflow.com/questions/9219555/make-reference-to-c-sharp-code-from-multiple-projects
3) Click on Egg-Farmer Project with right mouse click and set it up as startup project.
4) Build project and Eggfarmer will generate ScriptSDK.dll and drop it to Eggfarmer.exe. Both files must be in same folder to run Eggfarmer.

5) Run your Exe as admin.

Quote
C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\Microsoft.Common.CurrentVersion.targets(3032,5): warning MSB3327: Unable to find code signing certificate in the current user's Windows certificate store. To correct this, either disable signing of the ClickOnce manifest or install the certificate into the certificate store.
C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\Microsoft.Common.CurrentVersion.targets(3032,5): error MSB3323: Unable to find manifest signing certificate in the certificate store.

This is just a warning but can be disbaled by https://stackoverflow.com/questions/3901267/how-to-disable-clickonce-or-at-least-that-are-you-sure-you-want-to-install-thi

Edit :
Try to solve it yourself as a good exercise how to build applications. Its not allowed to upload the compiled exe here due the fact, that using an exe without seeing the source adds the risk of security leaks. A bad person could add malicous code to it and scriptuo cant be responsible for it.

Else Unisharp or me could had provided a compiled exe.

29
Stealth Client / Re: how do I compile a script thats posted????
« on: August 10, 2017, 06:19:55 AM »
All I get is errors when I try to build it. It says "build failed. do you want to continue debugging?

after that more errors.

I tried to do it to the other egg getter script and it says cant attach stealth.

If you could please try and build it and let me know what happens...Or post the exe that would be great!!!!!
can be that Stealth assemblies of his egg farmer are outdated. if i remember correct he uses scriptSDK or? then you might try the latest build with stealth fixes

Edit :
https://gitlab.com/unisharp/EggFarmer/commit/10768e44813436fb223d2ee948f180b7ba88909c shows you need to get ScriptSDK https://github.com/Crome696/ScriptSDK

30
Stealth Client / Re: C# Help with gumps
« on: August 09, 2017, 05:56:29 AM »
you might try out my SDK for C# : https://github.com/Crome696/ScriptSDK
It should help you on your journey through stealth and C# and allows anyone to support me via merge requests or issue reports.

Pages: 1 [2] 3 4 ... 119