Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > AutoIt
You last visited: Today at 11:47

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Help for AutoIt

Discussion on Help for AutoIt within the AutoIt forum part of the Coders Den category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: May 2009
Posts: 3
Received Thanks: 0
Question Help for AutoIt

hello, I am Italian, and use a translator to write, so if you do not understand what I write is not my fault ...
Today I found a mistake when I created a program in AutoIt3 and I wanted to know your opinion ....
Code:
#include <NomadMemory.au3>
If ProcessExists ( "Kill the monster.exe") Then
GUICreate ( "Kill The Monster", 200.100)
$hack = GUICtrlCreateButton (Score Hack, 10:10)
$what = GUICtrlCreateInput ( "Value", 90,11,100,22)
$random1 = GUICtrlCreateButton (Random Hack ", 10.56)
$credits = GUICtrlCreateButton ( "Claims", 100,56,90)
GUISetState ()
While 1
$Msg = GUIGetMsg ()
Switch $msg
Case -3
Exit
Case $hack
$PID1 = WinGetProcess ( "Kill the monster.exe")
$OPENPROCCESS1 = _MEMORYOPEN ($ PID1)
$WRITE1 = _MEMORYWRITE ( "0x00587b5c" _MEMORYOPEN (ProcessExists ( "Kill the monster.exe")), GUICtrlRead ($what))
_MEMORYCLOSE ($ OPENPROCCESS1)
Case $random1
$Rand = Random (1.999999999999)
$PID1 = WinGetProcess ( "Kill the monster.exe")
$OPENPROCCESS1 = _MEMORYOPEN ($ PID1)
$WRITE1 = _MEMORYWRITE ( "0x00587b5c" _MEMORYOPEN (ProcessExists ( "Kill the monster.exe")), $rand)
_MEMORYCLOSE ($OPENPROCCESS1)
Case $credits
MsgBox (0, "By MrHyde", "Hack by MrHyde =))
Endswitch
Wend
Else
MsgBox (0, "n00b", "Open the first game n00b!")
Exit
Endif
I would like to insert a button that when I click I get a MsgBox ago with my points ... I tried to use the _MemoryRead, but nothing ... sorry if I have the wrong section


Antivir: Nothing found
ArcaVir: Nothing found
Avast: Nothing found
AVG: Nothing found
BitDefender: Nothing found
F-Prot: Nothing found
Norman: Nothing found
Rising: Nothing found
VirusBlokAda32: Nothing found
VirusBuster: Nothing found


Scanned by


The game by me
Attached Files
File Type: rar Kill The Monster + Hack.rar (1.24 MB, 10 views)
ruggero_98 is offline  
Old 06/14/2009, 17:38   #2
 
elite*gold: 0
Join Date: May 2009
Posts: 3
Received Thanks: 0
sorry ^_^

Quote:
Originally Posted by ¤ﯤ☺urće¤ View Post
Wrong Section and [no questions].
Here is the Autoit Section: .
Do not Open a new Thread in the AutoIT Section because this Thread will moved to
AutoIT Section
.
I know this is not so NABB XP
ruggero_98 is offline  
Old 06/14/2009, 18:04   #3




 
invisible's Avatar
 
elite*gold: 0
Join Date: Jul 2005
Posts: 12,457
Received Thanks: 2,961
#moved to AutoIt
invisible is offline  
Old 06/14/2009, 18:21   #4
 
elite*gold: 0
Join Date: May 2008
Posts: 489
Received Thanks: 210
Quote:
Originally Posted by ruggero_98 View Post
hello, I am Italian, and use a translator to write, so if you do not understand what I write is not my fault ...
Of course it's your fault, learn english. You can't blame the translator for your stupidity.
schlurmann is offline  
Old 06/14/2009, 19:55   #5
 
elite*gold: 20
Join Date: Feb 2007
Posts: 3,080
Received Thanks: 4,294
omg...

Code:
#include <NomadMemory.au3>
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>

If ProcessExists ( "Kill the monster.exe") Then
	GUICreate ( "Kill The Monster", 200.100)
	$hack = GUICtrlCreateButton ("Score Hack", 10,10)
	$what = GUICtrlCreateInput ( "Value", 90,11,100,22)
	$random1 = GUICtrlCreateButton ("Random Hack", 10,56)
	$credits = GUICtrlCreateButton ( "Claims", 100,56,90)
	GUISetState ()
else
	MsgBox (0, "n00b", "Open the first game n00b!")
	Exit
endif

$PID1 = WinGetProcess ( "Kill the monster.exe")
$OPENPROCCESS1 = _MEMORYOPEN ($PID1)

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit
		Case $hack
				$WRITE1 = _MEMORYWRITE(0x00587b5c, $PID1, GUICtrlRead($what))
		Case $random1
				$Rand = Random(1.999999999999,1)
				$WRITE1 = _MEMORYWRITE(0x00587b5c, $PID1, $rand)
		Case $credits
			MsgBox (0, "By MrHyde", "Hack by MrHyde =)")
	EndSwitch
WEnd
kknb is offline  
Thanks
1 User
Old 06/14/2009, 20:41   #6
 
elite*gold: 0
Join Date: May 2009
Posts: 3
Received Thanks: 0
Quote:
Originally Posted by kknb View Post
omg...

Code:
#include <NomadMemory.au3>
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>

If ProcessExists ( "Kill the monster.exe") Then
	GUICreate ( "Kill The Monster", 200.100)
	$hack = GUICtrlCreateButton ("Score Hack", 10,10)
	$what = GUICtrlCreateInput ( "Value", 90,11,100,22)
	$random1 = GUICtrlCreateButton ("Random Hack", 10,56)
	$credits = GUICtrlCreateButton ( "Claims", 100,56,90)
	GUISetState ()
else
	MsgBox (0, "n00b", "Open the first game n00b!")
	Exit
endif

$PID1 = WinGetProcess ( "Kill the monster.exe")
$OPENPROCCESS1 = _MEMORYOPEN ($PID1)

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit
		Case $hack
				$WRITE1 = _MEMORYWRITE("0x00587b5c", $PID1, GUICtrlRead($what))
		Case $random1
				$Rand = Random(1,999999999999)
				$WRITE1 = _MEMORYWRITE("0x00587b5c", $PID1, $rand)
		Case $credits
			MsgBox (0, "By MrHyde", "Hack by MrHyde =)")
	EndSwitch
WEnd

thanks ... Could you also tell me how to read the score? you do an example: in a game I have 100 points and I appear on the program 100, other items can I type 150 and the program is updated to 150

__________________________________________________ _________________________

Quote:
Originally Posted by schlurmann View Post
Of course it's your fault, learn english. You can't blame the translator for your stupidity.

-.- parlami in italiano e poi vediamo chi è lo stupido -.-


Translation:


-.- Tell in Italian and then see who is the stupid -.-
ruggero_98 is offline  
Old 06/18/2009, 13:55   #7
 
elite*gold: 0
Join Date: May 2008
Posts: 489
Received Thanks: 210
Quote:
Originally Posted by ruggero_98 View Post
-.- parlami in italiano e poi vediamo chi è lo stupido -.-


Translation:


-.- Tell in Italian and then see who is the stupid -.-
Well, English is the universal language that everyone uses to communicate in case a communication over their mother tounge isn't possible. You can't compare that to Italian, which only very few people speak. Also, if you're considering doing any kind of programming, English is the only language that's gonna get you somewhere. So please cut the bullshit, cause I'm getting really tired of people looking for excuses for their english inabilities.
schlurmann is offline  
Reply




All times are GMT +1. The time now is 11:49.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.