ForsakenGod
Active Members-
Posts
125 -
Joined
-
Last visited
ForsakenGod's Achievements
Adventurer (3/7)
0
Reputation
-
Hello , I ve made a tool in autoit and now i m trying to rewrite it to c# however i ve some problems . This is the autoit code $name1 = _MEMORYREAD($Curobj + $objname01, $VAR1, "dword") $name2 = _MEMORYREAD($name1 + $objname02, $VAR1, "dword") $name = _MEMORYREAD($name2, $VAR1, "char[40]") ankwards you can use the $name variable which gives you the result wanted however when i try to rewrite this to c# (looks like this) string name5 = m_memoryacess.ReadASCIIString(m_memoryacess.ReadUInt(m_memoryacess.ReadUInt(m_memoryacess.ReadUInt((uint)curobj) + (uint)Offsets.objname01 ) + (uint)Offsets.objname02), 255); m_memoryacess is static public Magic.BlackMagic m_memoryacess = new Magic.BlackMagic(); If anyone would be able to help me with this i would be more than gratefull !
-
How to check if user clicks where you want to ?
ForsakenGod replied to ForsakenGod's topic in AutoIt General Help and Support
Ok people ! After doing some more searching i found my answer ! If anyone has problem like me just look at function _IEPropertyGet() ! -
How to check if user clicks where you want to ?
ForsakenGod replied to ForsakenGod's topic in AutoIt General Help and Support
Anyone ? -
How to check if user clicks where you want to ?
ForsakenGod replied to ForsakenGod's topic in AutoIt General Help and Support
Thanks alot melba ! Will definelly try this however does anybody know how to get the current adress in the explorel ? like the one that opens in my gui -
How to check if user clicks where you want to ?
ForsakenGod replied to ForsakenGod's topic in AutoIt General Help and Support
Whoopa sorry i didnt post the code xD And no they can even click the scroll bar and it will go further . here s the code #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <SendMessage.au3> #include <GUIConstantsEx.au3> #include <EditConstants.au3> #include <GUIEdit.au3> #Include <Array.au3> #Include <File.au3> #include <IE.au3> $GUI = GUICreate("Simple Web Browser", 800, 450,-1,-1, $WS_POPUP) $object = ObjCreate("Shell.Explorer.2") $label = GuiCtrlCreateLabel("",16,10,760,400) $object_ctrl = GUICtrlCreateObj($object, 16, 10, 780, 340) ;~ $url_button = GUICtrlCreateButton("URL", 16, 410, 750, 25, 0) _IENavigate($object, "www.google.com") GUISetState() While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE Exit ;~ Case $GUI_EVENT_PRIMARYDOWN ; Mouse button down ;~ sleep(3000) Case $msg = $label MsgBox(1,"","trigger") EndSelect ToolTip("Reload",0,0) WEnd -
Hello , We ll i d like to make user click an add before he would be able to start my tool however i ve some problems with it . I ve tryed it this way however the label is blocking me from clicking . Anyone has better solution ? I did it this way because i dont want to allow him proceed untill the actuall adress does not change (i know this i s asolution but idk how to get the adress . Thanks in advace !
-
Auto add processes to the list ?
ForsakenGod replied to ForsakenGod's topic in AutoIt General Help and Support
Thanks ! : ) Gonna try it out -
Hello , Lets say we have a simple gui like this #include <ComboConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= Global $Form1 = GUICreate("Form1", 216, 79, 836, 404) Global $Combo1 = GUICtrlCreateCombo("Combo1", 40, 24, 145, 25) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd I would like to ask how can i get process of every programm named Notepad and list them into this combobox? I did this but the script was pretty huge Yes i did write it all by hand Is there any other , simplier way? : ) Ps - thre will be always 10 + of those windows opened
-
Passing variables to PHP ?
ForsakenGod replied to ForsakenGod's topic in AutoIt General Help and Support
Its not an key logger lol . Anyway i think i ve found the answer here #include <WindowsConstants.au3> GUICreate("Please Input Question", 260, 50, 193, 125, -1, BitOR($WS_EX_TOOLWINDOW, $WS_EX_WINDOWEDGE)) $i = GUICtrlCreateInput("Enter Question Here", 16, 8, 185, 21) $b = GUICtrlCreateButton("OK", 216, 16, 33, 25, 0) GUISetState(@SW_SHOW) While 1 If GUIGetMsg() = $b Then $WinHttpReq = ObjCreate("WinHttp.WinHttpRequest.5.1") $s_URL = "http://nick761.mango12.com/oodles/api.php?clue=" & GUICtrlRead($i) $WinHttpReq.Open("GET", $s_URL, False) $WinHttpReq.Send() $c = $WinHttpReq.ResponseText MsgBox(1, "Answer", $c) EndIf WEnd If anyone got stuck on the same point as i did -
Hello , I would really like to know how could i pass variables to an online PHP file somethink like status.php?key=15151515415&status=down I would like to actually do this without user seing it ( like not opening it in explorel or firefox or wahtever) Is there some say to do this ? Thanks in advance !
-
Hello again I was just curious if anyone has an idea how could i rewrite this to autoit uint TheTimeTillStart = ((uint)Environment.TickCount - Memory.ReadUInt(Offsets.TimeTillStart)) / 1000 I am pretty new to this And i really need some help with it Thanks in advance !
-
Making an authentication server ?
ForsakenGod replied to ForsakenGod's topic in AutoIt General Help and Support
Actually you may be right however WoW isnt safe at all . Too easy to write an bot nowdays and also there are several hacks that bend the rules there . I am however not creating a game or anythink common with it . Anyway i am just looking for a bit safe auth system Any suggestions ? -
Making an authentication server ?
ForsakenGod replied to ForsakenGod's topic in AutoIt General Help and Support
Water thanks will definelly look at it ! And the prog is used for our "team" to share the work they ve done on the project . You know so we wont do smthink that s1 already did (in out team ) also it allows to make a note for the future visitors etc -
Well hello , I ve finished creating my product ( and app in autoit ) and i want to share it with several people throught internet . To dont make it so easy to steal it i actually want to make some kind of authntication before the user is able to use the app . Actually what i think should the sequence be is : 1 . Get the key from inputbox and via php/or auth server check its validity if it is or its not in DB 2 . Return valid/invalid 3 . Every 15 seconds refresh if the connection is still active (to prevent from multi using one key) 4 . If the connection to server has failed stop the app (or close it) 5 . If the key is used 2 times from 2 diff IPs somehow bann the IP ( Absolutely no idea how could be this done ) 6 . The data between auth server and the app should be somehow protected to dont allow it to be cracked that easily (Still new to this) If i forgot somethink please post it here . I am also looking for your suggestions or sample codes really everythink is appreciated ! Thanks again , Unreal
-
Getting the right control
ForsakenGod replied to ForsakenGod's topic in AutoIt General Help and Support
gonna try it out but i quess it wont help thanks for a suggestion tought