1
Razor Enhanced / Re: Razor Enhanced section
« on: September 05, 2018, 12:23:35 AM »
Well C# without debugging is like grabbing the engine but dont take the car
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.
All you really need to do is look at the scripts page... There's 4 or 5 current scripts in stealth and 100s in easyuo. Most of the scripts for stealth are from 2015 and back! Why not make it easier to code in?Stealth has non sharing community most of them not play EA, most of them use scripts to make some money by it or pvp. Its a russian driven community.
I get it...and I picked up a lesson in python and pascal this weekend when they were on sale...But it would be helpful to understand the basics first. One of the things I have an issue with is that the examples of coding on the stealth site...I cant get to work at all...Like this is taken right from the page:
function Hidden():Boolean
if(not Hidden) then
begin
UseSkill('Hiding');
end;
doesn't work. Even is I add the
program new;
The only thing I can get to work is:
UseSkill('Hiding');
as a single line of text. Also it fails to compile anything I type in the edit script tab..I've added spaces in where it says if (not Hidden) then I've added ; in..If I cant copy and paste code right from the webpage...Learning is going to be fun...Now with easyuo you can copy and paste right from the site...its easy to string together a simple script to start to learn to code.
So please PM me or post whats missing and why coping and pasting from the site wont work!
Thanks
Unit Test;
function myHiding():Boolean;
if(not Hidden) then
begin
UseSkill('Hiding');
Result := Hidden;
end;
begin
if(myHiding()) then
begin
AddToSystemJournal('Yes i did it');
end;
end.
Can someone write a dll add in... So us easyuo coders can code in stealth?This is a discussion between people in past and will be also a discussion for future.
yes, i can reoppen it just after without bug and see the work doing.Well your char doesnt disconnect, means it will still perform the script and all regardless if client.exe is running or not.
Hello againShould 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?
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.