|
You last visited: Today at 10:48
Advertisement
AutoIt error :(
Discussion on AutoIt error :( within the General Coding forum part of the Coders Den category.
08/16/2010, 14:57
|
#1
|
elite*gold: 0
Join Date: Feb 2009
Posts: 49
Received Thanks: 2
|
AutoIt error :(
hey,
hab nen kleinen Hack für pinball gemacht mit dem man die Punkte ändern kann.Da kommt immer ein Error: Incorrect number of parameters in function call.
Hier is der code:
#include <NomadMemory.au3>
#RequireAdmin
While ProcessExists("pinball.exe") = False
MsgBox(0,"Bitte starte das Spiel")
WEnd
$punkte = InputBox("Geben sie eine Punktezahl an!")
$open = _MemoryOpen(ProcessExists("pinball.exe"))
$adresse1 = 0x03215B94
$adresse2 = 0x032D24F2
_MemoryWrite($adresse1,$open,$punkte,"dword")
_MemoryWrite($adresse2,$open,$punkte,"dword")
MsgBox(0,"Punkte wurden gesetzt")
Ach und noch eine Frage:
Denkt ihr wenn man eine Ausbildung als Fachinformatiker für Softwareprogramierung macht (3 Jahre) das man größere Hackprogramme schafft?
|
|
|
08/16/2010, 16:03
|
#2
|
elite*gold: 1
Join Date: Feb 2009
Posts: 1,726
Received Thanks: 729
|
Die InputBox hat mehrere Parameter.
|
|
|
08/16/2010, 16:10
|
#3
|
elite*gold: 0
Join Date: Feb 2009
Posts: 49
Received Thanks: 2
|
kannsu mir pls schreiben wie mein code richtig heißen würde 
sry befass mich noch nicht lang damit..
|
|
|
08/16/2010, 16:16
|
#4
|
elite*gold: 1
Join Date: Feb 2009
Posts: 1,726
Received Thanks: 729
|
Dann hör bitte auf mit Speicheradressen zu arbeiten!
Code:
InputBox("MemoryWrite", "Geben sie eine Punktezahl an")
Quote:
Ach und noch eine Frage:
Denkt ihr wenn man eine Ausbildung als Fachinformatiker für Softwareprogramierung macht (3 Jahre) das man größere Hackprogramme schafft?
|
Größere als du jetzt hast auf jeden Fall.
|
|
|
08/16/2010, 17:28
|
#5
|
elite*gold: 0
Join Date: Feb 2009
Posts: 49
Received Thanks: 2
|
geht leider immernoch nicht
|
|
|
08/16/2010, 19:13
|
#6
|
elite*gold: 1
Join Date: Feb 2009
Posts: 1,726
Received Thanks: 729
|
Was geht nicht?
|
|
|
08/16/2010, 19:30
|
#7
|
elite*gold: 0
Join Date: Mar 2009
Posts: 2,317
Received Thanks: 1,255
|
Quote:
Originally Posted by o.OxXxO.o
hey,
hab nen kleinen Hack für pinball gemacht mit dem man die Punkte ändern kann.Da kommt immer ein Error: Incorrect number of parameters in function call.
Hier is der code:
#include <NomadMemory.au3>
#RequireAdmin
While ProcessExists("pinball.exe") = False
MsgBox(0,"Bitte starte das Spiel")
WEnd
$punkte = InputBox("Geben sie eine Punktezahl an!")
$open = _MemoryOpen(ProcessExists("pinball.exe"))
$adresse1 = 0x03215B94
$adresse2 = 0x032D24F2
_MemoryWrite($adresse1,$open,$punkte,"dword")
_MemoryWrite($adresse2,$open,$punkte,"dword")
MsgBox(0,"Punkte wurden gesetzt")
Ach und noch eine Frage:
Denkt ihr wenn man eine Ausbildung als Fachinformatiker für Softwareprogramierung macht (3 Jahre) das man größere Hackprogramme schafft?
|
du hast wohl grade angefangen damit...solltest dich erst mit einpar simplen input+msgbox machen... -.-
PHP Code:
MsgBox(0,"Bitte starte das Spiel"); falsch
PHP Code:
MsgBox(0,"Info", "Bitte starte das Spiel")
PHP Code:
$punkte = InputBox("Geben sie eine Punktezahl an!"); falsch
PHP Code:
$punkte = InputBox("Info", "Geben sie eine Punktezahl an!")
und wenn du das startest kommt sowas:
\AutoIt v3 Script.au3(19,35) : ERROR: MsgBox() [built-in] called with wrong number of args.
MsgBox(0,"Bitte starte das Spiel")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
\AutoIt v3 Script).au3(23,51) : ERROR: InputBox() [built-in] called with wrong number of args.
$punkte = InputBox("Geben sie eine Punktezahl an!")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
\AutoIt v3 Script.au3(33,33) : ERROR: MsgBox() [built-in] called with wrong number of args.
MsgBox(0,"Punkte wurden gesetzt")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
\AutoIt v3 Script.au3 - 3 error(s), 0 warning(s)
Zeilen Nummer
Fehler
einfach mal genauer schauen....
|
|
|
 |
Similar Threads
|
AutoIt Error
04/13/2010 - Guild Wars - 10 Replies
Heya all,
For some reason I'm not able to run any bot anymore (especially Titel-Package & XGB Vaettir Bot 1.1.0) These are compiled versions. And I, like many others, do not have the knowledge to compile from source. These bots (and many others i try to download) all give the same error.
http://img255.imageshack.us/img255/1676/autoiterr orsubscript.png
OS: Windows 7 64bit
AutoIt: v3.3.6.0
|
New Autoit = tt6 error
01/03/2010 - GW Bots - 0 Replies
I have just updated to the latest autoit but the latest version give me an error when i try to run a couple of my scripts.
I am not so great with scripting and i do not understand the problem but if you could help me fix the problem i would be very grateful :handsdown:
"Picture Attached at bottom"
"EDIT"
The problem is when my script is trying to do ::
resign()
resign()
|
Autoit quellcode Hilfe--funcktion error..missing separator character after keywords
02/27/2009 - Rappelz - 9 Replies
Hey Leute Habe nen Problem
Also mein bot sollte eignt laufen tut er aber nich ..keine ahnung wieso nach mouseclick schliest er automatisch ..
hier mal der quellcode
MouseClick ("left",536, 367)
|
All times are GMT +1. The time now is 10:49.
|
|