|
You last visited: Today at 09:58
Advertisement
Kleines Problem
Discussion on Kleines Problem within the AutoIt forum part of the Coders Den category.
06/21/2012, 22:04
|
#1
|
elite*gold: 5
Join Date: Dec 2011
Posts: 3,930
Received Thanks: 1,918
|
Kleines Problem
[hallo E*pvp Da ich ein anfänger bin hab ich mir dieses TuT durch geleden und befolgt 
Aber bei mit kommt immer noch eine fehler meldung könnt ihr mir vlt. noch paar tipps geben ?
PHP Code:
#include <GUIConstants.au3> #include <NomadMemory.au3> #Region ### START Koda GUI section ### Form= $Trainer = GUICreate("Tainer", 329, 129, 398, 250) $ShopHack = GUICtrlCreateCheckbox("ShopHack", 56, 16, 105, 33) $NoFog = GUICtrlCreateCheckbox("No Fog", 56, 56, 105, 49) $Start = GUICtrlCreateButton("Start", 176, 24, 113, 49) GUISetState() #EndRegion ### END Koda GUI section ### #RequireAdmin If ProcessExists("S4Client.exe") <> 0 Then Func _ Trainer ToolTip("Starte S4...",0,0) $PID = ProcessExists("S4Client.exe") $Open = _MemoryOpen($PID) If GUICtrlRead($ShopHack) = 1 Then _MemoryWrite(0x00769190,$OPEN,"500","Float") EndIf If GUICtrlRead($NoFog) = 1 Then EndIf _MemoryClose($OPEN) Exit EndFunc ;==>_Trainer While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit
EndSwitch WEnd
Func _ Trainer
Func _ Trainer^ ERROR
>Exit code: 1 Time: 0.247
die Meldung
|
|
|
06/21/2012, 22:17
|
#2
|
elite*gold: 64
Join Date: May 2011
Posts: 1,229
Received Thanks: 854
|
Probier das mal:
PHP Code:
#include <GUIConstants.au3>
#include <NomadMemory.au3>
#Region ### START Koda GUI section ### Form=
$Trainer = GUICreate("Tainer", 329, 129, 398, 250)
$ShopHack = GUICtrlCreateCheckbox("ShopHack", 56, 16, 105, 33)
$NoFog = GUICtrlCreateCheckbox("No Fog", 56, 56, 105, 49)
$Start = GUICtrlCreateButton("Start", 176, 24, 113, 49)
GUISetState()
#EndRegion ### END Koda GUI section ###
#RequireAdmin
If ProcessExists("S4Client.exe") <> 0 Then
_Trainer()
EndIf
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Func _Trainer()
ToolTip("Starte S4...",0,0)
$PID = ProcessExists("S4Client.exe")
$Open = _MemoryOpen($PID)
If GUICtrlRead($ShopHack) = 1 Then
_MemoryWrite(0x00769190,$OPEN,"500","Float")
EndIf
If GUICtrlRead($NoFog) = 1 Then
EndIf
_MemoryClose($OPEN)
Exit
EndFunc ;==>_Trainer
|
|
|
06/21/2012, 22:41
|
#3
|
elite*gold: 5
Join Date: Dec 2011
Posts: 3,930
Received Thanks: 1,918
|
Quote:
Originally Posted by BladeTiger12
Probier das mal:
PHP Code:
#include <GUIConstants.au3>
#include <NomadMemory.au3>
#Region ### START Koda GUI section ### Form=
$Trainer = GUICreate("Tainer", 329, 129, 398, 250)
$ShopHack = GUICtrlCreateCheckbox("ShopHack", 56, 16, 105, 33)
$NoFog = GUICtrlCreateCheckbox("No Fog", 56, 56, 105, 49)
$Start = GUICtrlCreateButton("Start", 176, 24, 113, 49)
GUISetState()
#EndRegion ### END Koda GUI section ###
#RequireAdmin
If ProcessExists("S4Client.exe") <> 0 Then
_Trainer()
EndIf
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Func _Trainer()
ToolTip("Starte S4...",0,0)
$PID = ProcessExists("S4Client.exe")
$Open = _MemoryOpen($PID)
If GUICtrlRead($ShopHack) = 1 Then
_MemoryWrite(0x00769190,$OPEN,"500","Float")
EndIf
If GUICtrlRead($NoFog) = 1 Then
EndIf
_MemoryClose($OPEN)
Exit
EndFunc ;==>_Trainer
|
Mir Felt auf ich hab die funz. mit dem button vergessen oh man kann jmd helfen
|
|
|
06/21/2012, 22:46
|
#4
|
elite*gold: 64
Join Date: May 2011
Posts: 1,229
Received Thanks: 854
|
Komm in Skype und ich helf dir...
Als sowas hier zu schreiben.
Weil es sehr viele Tutorials gibt mit dem Case u.s.w
Naja hier mehr kann ich dir nimmer helfen Bypass und so nicht mein ding:
PHP Code:
#RequireAdmin
#include <GUIConstants.au3>
#include <MemoryPointer.au3>
#Region ### START Koda GUI section ### Form=
$Trainer = GUICreate("Tainer", 329, 129, 398, 250)
$ShopHack = GUICtrlCreateCheckbox("ShopHack", 56, 16, 105, 33)
$NoFog = GUICtrlCreateCheckbox("No Fog", 56, 56, 105, 49)
$Start = GUICtrlCreateButton("Start", 176, 24, 113, 49)
GUISetState()
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Start
_Trainer()
EndSwitch
WEnd
Func _Trainer()
ToolTip("Starte S4...",0,0)
While 1
$PID = ProcessWait("S4Client.exe")
If $PID Then
ToolTip("S4league gefunden...",0,0)
Sleep(1000)
$Open = _MemoryOpen($PID)
If GUICtrlRead($ShopHack) = $GUI_CHECKED Then
_MemoryWrite(0x00769190,$OPEN,"500","Float")
EndIf
If GUICtrlRead($NoFog) = $GUI_CHECKED Then
EndIf
_MemoryClose($OPEN)
Exit
EndIf
WEnd
EndFunc ;==>_Trainer
|
|
|
06/22/2012, 11:33
|
#5
|
elite*gold: 5
Join Date: Dec 2011
Posts: 3,930
Received Thanks: 1,918
|
Quote:
Originally Posted by BladeTiger12
Komm in Skype und ich helf dir...
Als sowas hier zu schreiben.
Weil es sehr viele Tutorials gibt mit dem Case u.s.w
Naja hier mehr kann ich dir nimmer helfen Bypass und so nicht mein ding:
PHP Code:
#RequireAdmin
#include <GUIConstants.au3>
#include <MemoryPointer.au3>
#Region ### START Koda GUI section ### Form=
$Trainer = GUICreate("Tainer", 329, 129, 398, 250)
$ShopHack = GUICtrlCreateCheckbox("ShopHack", 56, 16, 105, 33)
$NoFog = GUICtrlCreateCheckbox("No Fog", 56, 56, 105, 49)
$Start = GUICtrlCreateButton("Start", 176, 24, 113, 49)
GUISetState()
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Start
_Trainer()
EndSwitch
WEnd
Func _Trainer()
ToolTip("Starte S4...",0,0)
While 1
$PID = ProcessWait("S4Client.exe")
If $PID Then
ToolTip("S4league gefunden...",0,0)
Sleep(1000)
$Open = _MemoryOpen($PID)
If GUICtrlRead($ShopHack) = $GUI_CHECKED Then
_MemoryWrite(0x00769190,$OPEN,"500","Float")
EndIf
If GUICtrlRead($NoFog) = $GUI_CHECKED Then
EndIf
_MemoryClose($OPEN)
Exit
EndIf
WEnd
EndFunc ;==>_Trainer
|
Ok ty.
|
|
|
 |
Similar Threads
|
Kleines Problem,
04/10/2012 - Minecraft - 1 Replies
Ich habe ein kleines problem mit dem Plugin Minequerly
Es kommt folgender Error:
Warning: implode() : Invalid arguments passed in C:\xampp\htdocs\test.php on line 33
In der Zeile 33 habe ich :
Players: <?php echo implode(',', $info); ?>
bitte auf schnelle hilfe.
------------------------------------------------- ------
|
ABO kleines Problem.
09/17/2011 - Off Topic - 8 Replies
Tag, ich mal wieder mit nem Problem und zwar habe ich seit gestern mein Galaxy S2 und wie es sich gehört erst mal alles untersuchen und und und.
Doch heute als ich auf ... ging (kennen vielleicht welche hier) um mirn Buch zu laden kam ne Werbung musste die weg klicken dabei handelte es sich um ne Pr0n Werbung naja und aufeinmal bekomme ich ne SMS das ich ein Abo gekauft haben soll!(Ohne Bestätigung geht das eig.?) Naja und habe dabei sofort reagiert und das Abo gekündigt. Kenne vielleicht...
|
Kleines Problem
07/12/2011 - Technical Support - 4 Replies
Hallo liebe Com.
Ich habe ein kleines Problem.
Hoffentlich ist dieser Thread hier richtig.
Es geht um folgendes:
http://s1.directupload.net/images/110711/v492v94b .png
Den Samsung Mist kriege ich nicht vom Rechner runter.
Ich habe normalerweise das Programm komplett gelöscht und dies ist
|
Kleines Problem
05/08/2010 - Metin2 Private Server - 7 Replies
Hey Com
hab ein kleines Problem mit hamachi server, wenn ich nach dem sura kopf das Fenster anklicke kommt da (LoadLocaleError), manchem meinte ich bräuchte einen anderen Ordner wie z.B von Neon. Ja hab ich runtergeladen hat leider auch nix gebracht. Ist hier jemand der sich damit auskennt bzw helfen könnte? Danke..
|
Kleines Problem
11/12/2006 - General Coding - 11 Replies
irgentwo hier isn fehler drin ich kann mir auch schon genau denken wo der liegt aber ich weiß net wie ich ihn beheben soll da ich delphi fast garnicht kann und des für die schule fertig machen muss
program Project1;
{$APPTYPE CONSOLE}
uses
SysUtils;
|
All times are GMT +1. The time now is 09:59.
|
|