Help dudes [auto it] menu

Shout-Out

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    WannaBeProgrammer's Avatar Member
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    156
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Help dudes [auto it]

    Hey i make this auto it jump hack but it dont work can some 1 help me to see whats the problem
    Code:
    #region _Memory
    
    Func _MEMORYOPEN($IV_PID, $IV_DESIREDACCESS = 0x127F13C, $IV_INHERITHANDLE = 1)
    	If Not ProcessExists($IV_PID) Then
    		SetError(1)
    		Return 0
    	EndIf
    	Local $AH_HANDLE[2] = [DllOpen("kernel32.dll")]
    	If @error Then
    		SetError(2)
    		Return 0
    	EndIf
    	Local $AV_OPENPROCESS = DllCall($AH_HANDLE[0], "int", "OpenProcess", "int", $IV_DESIREDACCESS, "int", $IV_INHERITHANDLE, "int", $IV_PID)
    	If @error Then
    		DllClose($AH_HANDLE[0])
    		SetError(3)
    		Return 0
    	EndIf
    	$AH_HANDLE[1] = $AV_OPENPROCESS[0]
    	Return $AH_HANDLE
    EndFunc
    
    
    Func _MEMORYREAD($IV_ADDRESS, $AH_HANDLE, $SV_TYPE = "dword")
    	If Not IsArray($AH_HANDLE) Then
    		SetError(1)
    		Return 0
    	EndIf
    	Local $V_BUFFER = DllStructCreate($SV_TYPE)
    	If @error Then
    		SetError(@error + 1)
    		Return 0
    	EndIf
    	DllCall($AH_HANDLE[0], "int", "ReadProcessMemory", "int", $AH_HANDLE[1], "int", $IV_ADDRESS, "ptr", DllStructGetPtr($V_BUFFER), "int", DllStructGetSize($V_BUFFER), "int", "")
    	If Not @error Then
    		Local $V_VALUE = DllStructGetData($V_BUFFER, 1)
    		Return $V_VALUE
    	Else
    		SetError(6)
    		Return 0
    	EndIf
    EndFunc
    
    
    Func _MEMORYWRITE($IV_ADDRESS, $AH_HANDLE, $V_DATA, $SV_TYPE = "dword")
    	If Not IsArray($AH_HANDLE) Then
    		SetError(1)
    		Return 0
    	EndIf
    	Local $V_BUFFER = DllStructCreate($SV_TYPE)
    	If @error Then
    		SetError(@error + 1)
    		Return 0
    	Else
    		DllStructSetData($V_BUFFER, 1, $V_DATA)
    		If @error Then
    			SetError(6)
    			Return 0
    		EndIf
    	EndIf
    	DllCall($AH_HANDLE[0], "int", "WriteProcessMemory", "int", $AH_HANDLE[1], "int", $IV_ADDRESS, "ptr", DllStructGetPtr($V_BUFFER), "int", DllStructGetSize($V_BUFFER), "int", "")
    	If Not @error Then
    		Return 1
    	Else
    		SetError(7)
    		Return 0
    	EndIf
    EndFunc
    
    
    Func _MEMORYCLOSE($AH_HANDLE)
    	If Not IsArray($AH_HANDLE) Then
    		SetError(1)
    		Return 0
    	EndIf
    	DllCall($AH_HANDLE[0], "int", "CloseHandle", "int", $AH_HANDLE[1])
    	If Not @error Then
    		DllClose($AH_HANDLE[0])
    		Return 1
    	Else
    		DllClose($AH_HANDLE[0])
    		SetError(2)
    		Return 0
    	EndIf
    EndFunc
    
    
    Func SETPRIVILEGE($PRIVILEGE, $BENABLE)
    	Const $MY_TOKEN_ADJUST_PRIVILEGES = 32
    	Const $MY_TOKEN_QUERY = 8
    	Const $MY_SE_PRIVILEGE_ENABLED = 2
    	Local $HTOKEN, $SP_AUXRET, $SP_RET, $HCURRPROCESS, $NTOKENS, $NTOKENINDEX, $PRIV
    	$NTOKENS = 1
    	$LUID = DllStructCreate("dword;int")
    	If IsArray($PRIVILEGE) Then $NTOKENS = UBound($PRIVILEGE)
    	$TOKEN_PRIVILEGES = DllStructCreate("dword;dword[" & (3 * $NTOKENS) & "]")
    	$NEWTOKEN_PRIVILEGES = DllStructCreate("dword;dword[" & (3 * $NTOKENS) & "]")
    	$HCURRPROCESS = DllCall("kernel32.dll", "hwnd", "GetCurrentProcess")
    	$SP_AUXRET = DllCall("advapi32.dll", "int", "OpenProcessToken", "hwnd", $HCURRPROCESS[0], "int", BitOR($MY_TOKEN_ADJUST_PRIVILEGES, $MY_TOKEN_QUERY), "int*", 0)
    	If $SP_AUXRET[0] Then
    		$HTOKEN = $SP_AUXRET[3]
    		DllStructSetData($TOKEN_PRIVILEGES, 1, 1)
    		$NTOKENINDEX = 1
    		While $NTOKENINDEX <= $NTOKENS
    			If IsArray($PRIVILEGE) Then
    				$PRIV = $PRIVILEGE[$NTOKENINDEX - 1]
    			Else
    				$PRIV = $PRIVILEGE
    			EndIf
    			$RET = DllCall("advapi32.dll", "int", "LookupPrivilegeValue", "str", "", "str", $PRIV, "ptr", DllStructGetPtr($LUID))
    			If $RET[0] Then
    				If $BENABLE Then
    					DllStructSetData($TOKEN_PRIVILEGES, 2, $MY_SE_PRIVILEGE_ENABLED, (3 * $NTOKENINDEX))
    				Else
    					DllStructSetData($TOKEN_PRIVILEGES, 2, 0, (3 * $NTOKENINDEX))
    				EndIf
    				DllStructSetData($TOKEN_PRIVILEGES, 2, DllStructGetData($LUID, 1), (3 * ($NTOKENINDEX - 1)) + 1)
    				DllStructSetData($TOKEN_PRIVILEGES, 2, DllStructGetData($LUID, 2), (3 * ($NTOKENINDEX - 1)) + 2)
    				DllStructSetData($LUID, 1, 0)
    				DllStructSetData($LUID, 2, 0)
    			EndIf
    			$NTOKENINDEX += 1
    		WEnd
    		$RET = DllCall("advapi32.dll", "int", "AdjustTokenPrivileges", "hwnd", $HTOKEN, "int", 0, "ptr", DllStructGetPtr($TOKEN_PRIVILEGES), "int", DllStructGetSize($NEWTOKEN_PRIVILEGES), "ptr", DllStructGetPtr($NEWTOKEN_PRIVILEGES), "int*", 0)
    		$F = DllCall("kernel32.dll", "int", "GetLastError")
    	EndIf
    	$NEWTOKEN_PRIVILEGES = 0
    	$TOKEN_PRIVILEGES = 0
    	$LUID = 0
    	If $SP_AUXRET[0] = 0 Then Return 0
    	$SP_AUXRET = DllCall("kernel32.dll", "int", "CloseHandle", "hwnd", $HTOKEN)
    	If Not $RET[0] And Not $SP_AUXRET[0] Then Return 0
    	Return $RET[0]
    EndFunc
    #endregion
    
    
    $WINHANDLEWOW = WinGetProcess("World of Warcraft", "") 
     $wow = _MEMORYOPEN($WINHANDLEWOW)
    	   
    $VALUESS = 0x92F588
    
    
    $val = 10
    
    
    
    	
    
    
    
    while 1
    	_MEMORYWRITE($VALUESS, $wow, $VAL, "float")
    	wend

    Help dudes [auto it]
  2. #2
    kynox's Avatar Member
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    We're not your ****ing tech support, furthermore, ****off.

  3. #3
    bhpushnslide's Avatar Member
    Reputation
    5
    Join Date
    Feb 2009
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What part of it don't work? Can you narrow it down a bit.. Does it error or just not do what you want it to?

  4. #4
    WannaBeProgrammer's Avatar Member
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    156
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kynox View Post
    We're not your ****ing tech support, furthermore, ****off.
    Dude chill i dont know where i turn to . I asked members here at mmowned and some helpt me but still doesnt work




    (P.S the problem is that when i Complie it and "run as admin" Then it starts memory write wow but nothing happens just normal jump hight)

  5. #5
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    First of all: I have _no_ clue of AutoIT.

    Func _MEMORYOPEN($IV_PID, $IV_DESIREDACCESS = 0x127F13C, $IV_INHERITHANDLE = 1)

    Local $AV_OPENPROCESS = DllCall($AH_HANDLE[0], "int", "OpenProcess", "int", $IV_DESIREDACCESS, "int", $IV_INHERITHANDLE, "int", $IV_PID)
    Is that the autoit version of calling

    HANDLE WINAPI OpenProcess(
    __in DWORD dwDesiredAccess,
    __in BOOL bInheritHandle,
    __in DWORD dwProcessId
    );
    ?

    If so, why on earth are you passing the static localplayer pointer as dwDesiredAccess?

    Edit: Also, is there even a 'main-function' in your post? Or are you just posting some copypasted function wrappers for the memory api?

    Then again I might be terribly wrong, AutoIt is strange. :/
    Last edited by SKU; 03-13-2009 at 07:54 AM.

  6. #6
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For ****s sake. You can't copy-paste code you don't understand, then come here and expect us to fix it for you.

  7. #7
    swollen's Avatar Member
    Reputation
    36
    Join Date
    May 2007
    Posts
    124
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Edit:
    I did post a fix, but then I remembered you flaming me in my thread for using AutoIt.
    Fix it yourself
    Last edited by swollen; 03-13-2009 at 11:24 AM.

  8. #8
    WannaBeProgrammer's Avatar Member
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    156
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cypher View Post
    For ****s sake. You can't copy-paste code you don't understand, then come here and expect us to fix it for you.
    omfg :gtfo2: .. i understand alot of the code i got the WI code and took the memory ewrite func and look at the velocity part and study it close a long time. i started to program this hack.

  9. #9
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by WannaBeProgrammer View Post
    omfg :gtfo2: .. i understand alot of the code i got the WI code and took the memory ewrite func and look at the velocity part and study it close a long time. i started to program this hack.
    The funniest part of this entire ordeal is that you don't even realize how stupid you seem/are.

    Read the section rules. We're not here to spoonfeed you, and if you're an idiot you WILL get shot down. Simple as that.

    This is not a tech support forum, you can't paste a huge chunk of (terrible) code then complain "waaah this no work, fix it!". Do some debugging, narrow down the problem, document your code, document your decisions, etc etc. We don't spoonfeed here, so you can tell me to GTFO all you want but in the end you'll only be hurting yourself (Protip: Don't bite the hand that feeds you).

  10. #10
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Telling Cypher to gtfo wont help
    he's one of the guys in this section who helps/knows the most and pming ppl asking them if they can help you code a jumphack in autoit doesnt help

  11. #11
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by WannaBeProgrammer View Post
    omfg :gtfo2: .. i understand alot of the code i got the WI code and took the memory ewrite func and look at the velocity part and study it close a long time. i started to program this hack.
    Hmmmm copypasta.

    @SKU, the actual code he wrote himself is at the bottom of the script, be ready to cover your eyes though.
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

  12. #12
    Pixion's Avatar Member
    Reputation
    59
    Join Date
    Jan 2008
    Posts
    289
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Use SETPRIVILEGE before calling the _memorywrite function.
    And Cypher is, i think, the best here, and HE is the one who can help.
    But if he says you "copy-paste code", that's because you don't understand anything and you can't try to complete this ****in' 3 line program alone...
    Last edited by Pixion; 03-13-2009 at 02:42 PM.

  13. #13
    corderoy's Avatar Member
    Reputation
    7
    Join Date
    May 2008
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't want to hijack this great thread but what makes auto-it so popular? I know some languages better or worse, some others I just heard they egsist, but still, never heard about auto-it before I came to these forums. Is it teached in high schools in some countries or something?

  14. #14
    Xarg0's Avatar Member
    Reputation
    61
    Join Date
    Jan 2008
    Posts
    389
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by corderoy View Post
    I don't want to hijack this great thread but what makes auto-it so popular? I know some languages better or worse, some others I just heard they egsist, but still, never heard about auto-it before I came to these forums. Is it teached in high schools in some countries or something?
    No, it's allabout the PixelSearch() and MouseMove function!!!!!!!!!!
    You can search ze pixel and click it!!!!!!!!!
    I hacked 127.0.0.1

  15. #15
    argh44z's Avatar Member
    Reputation
    19
    Join Date
    Nov 2007
    Posts
    93
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by corderoy View Post
    I don't want to hijack this great thread but what makes auto-it so popular? I know some languages better or worse, some others I just heard they egsist, but still, never heard about auto-it before I came to these forums. Is it teached in high schools in some countries or something?
    AutoIT has been popular in the scr1pt k1dd13 community for years. Unfortunately. Although I don't know AutoIt, in first glance I don't understand why people can stand it. It looks ugly as sin.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Help] LF Auto Reply AddOn
    By ariyan1991 in forum WoW UI, Macros and Talent Specs
    Replies: 1
    Last Post: 11-02-2014, 04:38 PM
  2. Help! - Mouse Auto Clicker
    By QwEEErtzu in forum World of Warcraft General
    Replies: 5
    Last Post: 07-13-2013, 02:28 PM
  3. Help with auto login - Push login button?/Select Realm?
    By zavis in forum WoW Memory Editing
    Replies: 5
    Last Post: 05-12-2013, 08:51 PM
  4. [HELP]CTM auto loot prob
    By kosacid in forum WoW Memory Editing
    Replies: 12
    Last Post: 08-29-2012, 05:24 PM
  5. Help with Auto-it!!
    By Krazzee in forum World of Warcraft General
    Replies: 7
    Last Post: 06-12-2006, 09:22 PM
All times are GMT -5. The time now is 09:54 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search