Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Guild Wars
You last visited: Today at 04:55

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

Advertisement



Memory Bots

Discussion on Memory Bots within the Guild Wars forum part of the MMORPGs category.

Reply
 
Old   #1
 
Bl@ze!'s Avatar
 
elite*gold: 240
Join Date: Dec 2006
Posts: 1,579
Received Thanks: 1,609
Memory Bots

-
Bl@ze! is offline  
Old 08/13/2008, 20:45   #2
 
elite*gold: 0
Join Date: Nov 2007
Posts: 439
Received Thanks: 75
da kommt wohl ein haufen arbeit auf dich zu.
wadimwadim is offline  
Old 08/13/2008, 20:47   #3
 
Bl@ze!'s Avatar
 
elite*gold: 240
Join Date: Dec 2006
Posts: 1,579
Received Thanks: 1,609
-
Bl@ze! is offline  
Old 08/13/2008, 20:49   #4
 
elite*gold: 0
Join Date: Nov 2007
Posts: 439
Received Thanks: 75
such erstmal die moveto function in guild wars, diese sollte diese parameter haben
(x,y: float; z:integer)
und dann such nach einer möglichkeit, um sie aufzurufen.
wadimwadim is offline  
Thanks
1 User
Old 08/13/2008, 20:50   #5
 
Bl@ze!'s Avatar
 
elite*gold: 240
Join Date: Dec 2006
Posts: 1,579
Received Thanks: 1,609
-
Bl@ze! is offline  
Old 08/13/2008, 21:24   #6
 
Valvepro's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 374
Received Thanks: 198
Huhu, so kannst du die x,y Koordinaten auslesen..

Code:
func _GetCoords()
	Local $Array[2]
	Local $DllInformation = _MemoryOpen(WinGetProcess("Guild Wars"))
	$Array[0] = Floor(_MemoryRead(0x00A14818, $DllInformation, 'float')) ;x
	$Array[1] = Floor(_MemoryRead(0x00A1481C, $DllInformation, 'float')) ;y
	_MemoryClose($DllInformation)
	Return $Array
EndFunc
Valvepro is offline  
Thanks
1 User
Old 08/14/2008, 15:20   #7
 
yesar's Avatar
 
elite*gold: 0
Join Date: Feb 2008
Posts: 81
Received Thanks: 14
viel spaß beim suchen :P kauf dir vorher viel, viel kaffee xD

btw, schicke signatur
yesar is offline  
Old 08/14/2008, 15:57   #8
 
Bl@ze!'s Avatar
 
elite*gold: 240
Join Date: Dec 2006
Posts: 1,579
Received Thanks: 1,609
-
Bl@ze! is offline  
Old 08/14/2008, 16:00   #9
 
blauwiggle's Avatar
 
elite*gold: 0
The Black Market: 123/0/1
Join Date: Apr 2006
Posts: 1,722
Received Thanks: 476
bei advanced, setz da mal keinen haken bei "Automatically embed media (requires automatic parsing of links in text to be on)."
blauwiggle is offline  
Old 08/14/2008, 16:02   #10
 
Bl@ze!'s Avatar
 
elite*gold: 240
Join Date: Dec 2006
Posts: 1,579
Received Thanks: 1,609
-
Bl@ze! is offline  
Old 08/14/2008, 16:03   #11
 
elite*gold: 0
Join Date: Jan 2007
Posts: 1,753
Received Thanks: 443
Local $Array[2]

da kannst es nicht global callen

du müsstest es so machen:

Code:
#include "memory.au3"


func GetCoords()
Local $Array[2]
Local $DllInformation = _MemoryOpen(WinGetProcess("Guild Wars"))
$Array[0] = Floor(_MemoryRead(0x00A14818, $DllInformation, 'float')) ;x
$Array[1] = Floor(_MemoryRead(0x00A1481C, $DllInformation, 'float')) ;y
_MemoryClose($DllInformation)
Return $Array
EndFunc


func GiveCoords()
$koords = GetCoords()
MsgBox(0,"TEST :D","X Kooardinate :" &$koords[0]& ".");
EndFunc

func Mbot()
MsgBox(0,"Mbot - Systemnachricht", "Mbot wird gestartet")

GiveCoords();
EndFunc
ist n bisschen blöd zu handhaben das bsp von valve
Azunai is offline  
Old 08/14/2008, 16:07   #12
 
Bl@ze!'s Avatar
 
elite*gold: 240
Join Date: Dec 2006
Posts: 1,579
Received Thanks: 1,609
-
Bl@ze! is offline  
Old 08/17/2008, 16:44   #13
 
Valvepro's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 374
Received Thanks: 198
Hi, teste mal dies hier..

Code:
#include<NomadMemory.au3>

$Werte = _GetCoords()
MsgBox("","Werte","X Wert: "&$Werte[0]&@CRLF&"Y Wert: "&$Werte[1])

func _GetCoords()
	Local $Array[2]
	Local $DllInformation = _MemoryOpen(WinGetProcess("Guild Wars"))
	$Array[0] = _MemoryRead(0x00A148B8, $DllInformation) ;x
	$Array[1] = _MemoryRead(0x00A148BC, $DllInformation) ;y
	_MemoryClose($DllInformation)
	Return $Array
EndFunc
Quote:
Originally Posted by Azunai View Post
ist n bisschen blöd zu handhaben das bsp von valve
Vielen dank, aber du meinst auch du wärst der übelste Pro was... diese Kommentare kannste dir echt mal klemmen.
Valvepro is offline  
Old 08/17/2008, 17:00   #14
 
elite*gold: 0
Join Date: Jan 2007
Posts: 1,753
Received Thanks: 443
Quote:
Hi, teste mal dies hier..

Code:

#include<NomadMemory.au3>

$Werte = _GetCoords()
MsgBox("","Werte","X Wert: "&$Werte[0]&@CRLF&"Y Wert: "&$Werte[1])

func _GetCoords()
Local $Array[2]
Local $DllInformation = _MemoryOpen(WinGetProcess("Guild Wars"))
$Array[0] = _MemoryRead(0x00A148B8, $DllInformation) ;x
$Array[1] = _MemoryRead(0x00A148BC, $DllInformation) ;y
_MemoryClose($DllInformation)
Return $Array
EndFunc

Quote:
Originally Posted by Azunai View Post
ist n bisschen blöd zu handhaben das bsp von valve
Vielen dank, aber du meinst auch du wärst der übelste Pro was... diese Kommentare kannste dir echt mal klemmen.
es funktioniert längst bei ihm

und @
Quote:
aber du meinst auch du wärst der übelste Pro was...
das hab ich mir schon oft bei dir gedacht

ich sag nur "expert send/sleep"
Azunai is offline  
Old 08/17/2008, 17:56   #15
 
Valvepro's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 374
Received Thanks: 198
Quote:
Originally Posted by Azunai View Post
es funktioniert längst bei ihm

und @
das hab ich mir schon oft bei dir gedacht

ich sag nur "expert send/sleep"

Na dann... und was soll mit 'expert send/sleep' sein?! Ich finds eben praktisch. Ist ja auch eig. nur für mich gedacht.. von daher..

PS: Trotzdem kommste ganz schön eigebildet rüber und das kommt nicht nur mir so vor, soviel kann ich dir sagen.
Valvepro is offline  
Reply


Similar Threads Similar Threads
[VB]Write Memory bzw Read Memory
06/26/2010 - .NET Languages - 8 Replies
Hi Ich hab das TuT von *Guidman* benütz um einen hack zu machen. So aber nun hab ihc ein paar fragen könnte man memory teil kürzer machen und am besten wie kann man das selber machen weil ich will nihct immer C&P machen. Und zu Read Memory kann man das auch machen das ein Label immer die Bestimmte Ahnzahl angiebt von dem Pointer?.(Wenn das Read Memory ist ?) Bitte helf mir Danke
Quick Memory Editor - Alternative Memory Hacking Software
11/21/2009 - Cabal Hacks, Bots, Cheats, Exploits & Macros - 11 Replies
This might be detected or not by GameGuard, I have not tested this on Official servers however it worked perfectly fine on other private servers. http://imagenic.net/images/x0jxwzwpg2zxmkdtcf36.p ng This is just an alternative memory editing tool. Press thanks if this helps. Remember, scan before using this. Cause its 5.5MB.
Fragen Zur Memory!!!(Auslesen von Spawn/Memory)
12/31/2008 - Guild Wars - 3 Replies
hey leute, ich wollte mal einen bot schreiben und nun bin ich ganz verwirrt. könnte mir jmd bitte schritt für schritt erklären wie das mit Memory auslesen, benutzen und der Spawnpointer funktioniert. Ich wär sehr dankbar wenn jmd kontakt mit mir aufnehmen würde... und sobald der bot fertig ist bekommt der ihn natürlicherweise umsonst:D ICQ: 481799773 oder hier im forum
Sample of memory search in PW for memory bot learner
02/25/2008 - Perfect World - 6 Replies
im learning how to make a memory bot as of know.. im expirience in pixel botin but the mob seacrh for it is quite slow.. ill be using au3 and the include nomadmemory.au3 from nomad in au3 forum. credits to him... this is my sample of my memory script: it will be good for who wants to learn memory botin and has no available bot in their respective server #include <Memory.au3> Global $Pointer = d pointer in 4bytes in whch its store the modId when clicked just search in hex format in 4bytes...



All times are GMT +2. The time now is 04:55.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.