The Fire Imp call is not working for me (after the header change)
Does someone has a Solution for this Problem?
Does someone has a Solution for this Problem?
Global Const $HEADER_HERO_TOGGLE_SKILL = 0x17 ;Enables or disables the heroes skill Global Const $HEADER_SIGNPOST_RUN = 0x4F ;Runs to signpost
That worked! Thanks so much! Still took me a couple hours of following errors and copying over old Functions to the new GWA2 but THAT I could manage! Thanks for the nudge forward!Quote:
there where 2 headers wrong as far as i found so far, changeing them to this fixed it
Code:Global Const $HEADER_HERO_TOGGLE_SKILL = 0x17 ;Enables or disables the heroes skill Global Const $HEADER_SIGNPOST_RUN = 0x4F ;Runs to signpost
Okay good points, I will manually copy them over, also yeah that is true, should I generally look for executables being called within a bot's code?Quote:
Well, some people don't have 2FA on their accounts. Generally, it is always good advice not to run foreign code without checking it first. Especially in the case of botting and such, which even for "legit" files often triggers Antivirus solutions.
However, in this case, since the only required changes are to headers and patterns, you can simply copy only the changed lines (which the people that fixed them helpfully posted seperately from their own full GWA2) and paste them over your corresponding lines. This is a bit harder of course, but generally can be a good exercise.
In theory, a lot of nastiness could be hidden deep inside the GWA2 and might be hard to spot. After all, you execute those bots with admin rights on your PC. An attacker can do a lot with admin privileges on your machine.
Okay good call for sure there are dangers to my machine. What do you mean about unreadable script? This could sound stupid but would that be hexidecimals or something?Quote:
Two Factor Authorization is definitely recomended and will protect your guild wars 1 accounts. You can log on to your log in settings on the guildwars2.com website and set this up.
However, it will not protect your computer and sensitive data or other games or financial records. Don't ever run any executable files and scan through text of autoit files for IP addresses or unreadable script and even if you are a good coder you might miss something potentially harmful. Try to only download and run things that come from reputable known members of the community. Use a good virus scanner!
What I'd recommend is to copy/paste the old and new GWA2 into something like [Only registered and activated users can see links. Click Here To Register...]Quote:
Okay good call for sure there are dangers to my machine. What do you mean about unreadable script? This could sound stupid but would that be hexidecimals or something?
Yes. Only run Bots that are supplied as source code, never anything that is a .exe file. And it can be "easy" to hide a call to some Malware. And it's also fairly easy to rename the actual malware "headers.au3" to make it look like it's not malware. There are of course always risks when executing code found on the internet, especially when not understanding it. Hence my advice, if you have a GWA2 that works for you then in this case, just copy over the changed lines. That is not to say that I expect malware in the recently posted versions, but might as well be on the safe side.Quote:
Okay good points, I will manually copy them over, also yeah that is true, should I generally look for executables being called within a bot's code?
I assume they mean any code that you don't understand at all and that looks "weird". Like random assembler code, or obfuscated stuff. There is obviously no clear guideline to follow here, just give the file a once-over if you must use it. Comparing to your existing GWA2 is a good idea.Quote:
Okay good call for sure there are dangers to my machine. What do you mean about unreadable script? This could sound stupid but would that be hexidecimals or something?