StrategicX
Active Members-
Posts
43 -
Joined
-
Last visited
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
StrategicX's Achievements
Seeker (1/7)
0
Reputation
-
Hey guys, Im working on Au3 Injection/Execution of ASM.. So far ive done it perfectly with my own thread, Ya alot think its not possible to inject with Autoit like its done in C# well they thought wrong, all the functions are mostly DLL calls or _WinAPI. Anyway, the problem I have is I cannot call some functions with my injected code since its not being executed in the external processes main thread... So I need to... #1. Be able to find the processes main thread. #2. Open it will access rights. #3.Suspend/Inject.Execute/ResumeThread. Injection of assembly code is great for debugging my other apps, adding functionality to others etc. But mostly this project is for learning purposes, AND to prove to the Au3 Haters that you can Inject and Execute your own code in an external process with Autoit and clean up the mess just as good as you can in C#. yes yes, I know Autoit isnt the best thing to be scripting this sort of project in, But I love the functionality of autoit and the ability to overcome challenges like this that are deemed 'not possible'. Other developers that are code monkeys, etc know what I mean and Im sure they all have a nice Au3 Injection UDF, in the dark depths of their hard drive somewhere xD If youvr done something like this before please post your sample code if possible, or just direct me to the functions needed to do the steps above to Get the Main thread handle/Open/access it/Injec.Execute my code etc. Thanks alot guys. -Respect *Credits to monoceres for inspiring this project
-
There really is a god... Thank you jesus xD
-
Im sure a few people have tryed to update and its very easy to succeed this... But the bot was never finished and didnt work very well anyway, My advice is to go download one of the plenty open source bot's out there...like wow sharp, hell even ebots source is public now on mmowned lol, and you could use this bot as a starting point to convert everything to autoit. If anyone wants to start a shareware community wow grinding bot, let me know im down. (Note: only will work with someone that knows what their doing...Otherwise it will be to much of a project... I got all the offsets and descriptors needed for a very ncie grind bot
-
Hey guys, Wonderin if anyone knows how to stop a function from completing if an If--Then statement becomes true, Im having a problem with detecting one thing with an If--Then statment that calls a dif, function if the expression is true, But after that function is done, the one called before it finishes and ruins things, since its wayyy out of order. Thanks guys, p.s Im pretty sure thats called 'Break' in C++ but in autoit, break is comething totally different....
-
Turning GUIOnEventMode On/off?! help
StrategicX replied to StrategicX's topic in AutoIt General Help and Support
So how did you fix this problem? btw, I think he answered my problem basicly If I call a function from OnEvent Mode and it happens to have a Infinite loop in it , it will not work any,more since the function never returns am i right? Thanks for that , only one who even tryed answering it. Thx to melba too., and no im not asking the user to change anything, there just a start/stop button and theres loops in the script and I wanted it to be able to stop tin the middle of the loop on a dime (without lagging) -
Turning GUIOnEventMode On/off?! help
StrategicX replied to StrategicX's topic in AutoIt General Help and Support
How would that work then? its 2 commands, set to 1 should turn on, set to 0 shoudl turn off.. .is there certain rules or conditions that must be met when using it?? -
Turning GUIOnEventMode On/off?! help
StrategicX replied to StrategicX's topic in AutoIt General Help and Support
well my source code is simply to big to post and private at that, But anyway an icon is the button im using, It wors the first time but will not turn back on once its been turned off. dont know what the deal is, tryed multiple compilers.... all im trying to do is turn it off then on again Opt("GUIOnEventMode, 1) and Opt("GUIOnEventMode, 0) do I have to declare it on at the very top first? Cuz Im declaring it off then,. on then on/off depending on user input. -
Turning GUIOnEventMode On/off?! help
StrategicX replied to StrategicX's topic in AutoIt General Help and Support
Well i got it to work on ur script , But iM using an icon for it but it still works but will NOT turn back on like wtf help here -
Turning GUIOnEventMode On/off?! help
StrategicX replied to StrategicX's topic in AutoIt General Help and Support
Edit: got it to work on your script.... trying it out on mine, I think it was the compiler i was using... thx for the help ^^ -
Hey Im trying to turn on Opt("GUIOnEventMode", 1) For the task of calling a function that stops my program from running (stop button) and since this option works so well for an instant result Id like to use it, Problem is that since my program uses loops for certain tasks, The GUIgetMsg() function doesnt work so well or sometimes not at all, because of other loops in process So when I tryed GUIOnEventMode it worked great, and when the user presses the Stop button the script stops and I call a function that changes the variable conditions controling the loop(s) to turn them off. So after that function is called I turn off GUIOnEventMode with Opt("GUIOnEventMode", 0).... But when the user presses the start button again, (It passes Opt("GUIOnEventMode", 1)) again to turn OnEvent mode back on... But when the user presses start again, then trys to press the start button it doesnt call the function So its not turning it back on.... How can I turn GUIOnEventMode on/off? Since im using GUIgetmsg() in my other loops.. I also tryed using AutoItSetOption("GUIOnEventMode", 0) and AutoItSetOption("GUIOnEventMode", 1) and it still only turns on/off one time. Please help thanks.
-
well i wanted to go with the autoit functionality since it doesnt bother with all the rules of chars, charW, Const Char*Buthole etc... Its just you put in a string and get back an array....not some stupid Strtok function that needs a const char?? wtf is that its call STRINGTOKENIZE lol Thanks for the help tho, and ya i got the autoit source code, I was gonna tweek the compiler a bit for better compression on the source and insert fake scripts and token files (hehehehe) any devleopers have a future in A3x with making the UDF;s into DLLS?
-
Title says it all, id love to use all the functions from String.udf.au3 in my C++ apps strtok and all the other normal C++ functions seem to suck compared to the way autoit handles stringsplit and holds the tokens in an easy to use array Let me know, our if someone has already done so PLEASE post! or could a developer go into any detail on how i could do this myself? thanks alot.
-
Can i please get an answer from a developer or someone that knows how to avoid this bug in Au3 API?? Please im really in need one this for background mode, any methods, functions or w,e, or a code snippet in C++ that can send a string like "/script CastSpellByName("Tawny Wind Rider')" to an inactive window, Thanks for any help offered,
-
I couldnt find the function for controlsend in that, just header file with it being defined, Damn no one knows how to send a string in keys to an inactive window with a dif language? can i get one of the developers to respond here? a way to get around this bug in the API would be grwat from the developers...