Register for your free account! | Forgot your password?

You last visited: Today at 11:20

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

Advertisement



Party Tränke Bot

Discussion on Party Tränke Bot within the GW Exploits, Hacks, Bots, Tools & Macros forum part of the Guild Wars category.

Closed Thread
 
Old 01/02/2010, 15:51   #16
 
elite*gold: 60
Join Date: Dec 2009
Posts: 19
Received Thanks: 0
Ok I found some code on the "internet"

Code:
Global $FrostyTonicModel = 30648   ;Frosttränke
Global $YuletideTonicModel = 21490 ;Weihnachtstränke
Global $FruitCakesModel = 21492    ;Früchtebrot
Global $SnowMannModel = 6376       ;Schneemann-Macher
Global $Squash_SerumModel = 6369   ;Kürbisserum
Global $GiftsModel = 21491         ;Wintertags-Geschenke
Global $Gost_In_Da_BoxModel = 6368 ;Schachtelgeister
Global $ToT_BagsModel = 28434      ;Süßes-oder-Saures Taschen
Global $ChocoBunniesModel = 22644  ;Schokoladhasen
 
#include <GWCAConstants.au3>
#include <NomadMemory.au3>
 
Global $Name = "Guild Wars"         ;GW Name eintragen
Global $Tonic = true                ;True/False Trank oder nich
Global $DistNrMem = 0xa165dc        ;Distrikt Nummer
Global $Model = $FrostyTonicModel   ;Model eintragen
 
Global $sGW = $Name
Global $hwnd = WinGetHandle($Name)
Global $PID = WinGetProcess($hwnd)
Global $hprocess = _MemoryOpen($PID)
 
Opt("WinTitleMatchMode", 3)
Opt("TrayIconDebug", 1)
 
$cGUI = GUICreate("GWCA " & $Name)
GUIRegisterMsg(0x500, "WndCallback")
 
Dim $Paused
$EngineHook = "OFF"
HotKeySet("{pause}", "Pause")
HotKeySet("{end}", "Exitit")
HotKeySet("{INSERT}", "AutoChangeEngineMode")
 
While 1
        $ID = CmdCb($CA_FindItemByModelId, $Model)
        $ID = $ID[0]
        If $ID = 0 Then Exitit()
        If $Tonic = True Then
                For $i = 1 To 2
                        cmd($CA_UseItemById, $ID)
                        Sleep(20)
                Next
                Sleep(100)
                RandomChangeDis()
                TravelSlp()
        Else
                cmd($CA_UseItemById, $ID)
                Sleep(100)
        EndIf
WEnd
 
Func RandomChangeDis()
        Do
                If Random(1, 4, 1) <> 4 Then
                        $NewDis = Random(1, 5, 1)
                        If $NewDis = 1 Then $NewDis = 0
                Else
                        $NewDis = Random(9, 10, 1)
                EndIf
        Until ReadDisNr() <> $NewDis
        Cmd($CA_CHANGEDISTRICT, 2, $NewDis)
EndFunc   ;==>RandomChangeDis
 
Func ReadDisNr()
        Return _MemoryRead($DistNrMem, $hprocess)
EndFunc   ;==>ReadDisNr
 
Func GetMapLoading()
        $Loading = CmdCb($CA_GetMapLoading)
        Return $Loading[0]
EndFunc   ;==>GetMapLoading
 
Func TravelSlp()
        $travelslp = TimerInit()
        While GetMapLoading() <> 2
                Sleep(100)
                If TimerDiff($travelslp) > 10000 Then ExitLoop
        WEnd
        While GetMapLoading() = 2
                Sleep(100)
                If TimerDiff($travelslp) > 10000 Then ExitLoop
        WEnd
        Sleep(2500)
EndFunc   ;==>TravelSlp
 
Func AutoChangeEngineMode()
        Select
                Case StringUpper($EngineHook) = "ON"
                        Cmd($CA_SETENGINEHOOK, 0)
                        Global $EngineHook = "OFF"
                Case Else
                        Cmd($CA_SETENGINEHOOK, 1)
                        Global $EngineHook = "ON"
        EndSelect
EndFunc   ;==>AutoChangeEngineMode
 
Func _Tooltip($Text, $x = "Standard", $y = "Standard")
        $size = WinGetPos($hwnd)
        Select
                Case $x = "Standard"
                        $x = $size[0]
        EndSelect
        Select
                Case $y = "Standard"
                        $y = $size[1]
        EndSelect
        ToolTip($Text, $x, $y)
EndFunc   ;==>_Tooltip
Func Pause()
        $Paused = Not $Paused
        While $Paused
                Sleep(100)
                _Tooltip("Script is Paused!")
        WEnd
        _Tooltip("")
EndFunc   ;==>Pause
Func Exitit()
        Cmd($CA_SETENGINEHOOK, 0)
        Exit
EndFunc   ;==>Exitit
Just change the type of tonic/gift/what ever you want! Here
Code:
Global $Model = $FrostyTonicModel   ;Model eintragen
Refer to the Global Tonics variable at the top of the script
khios is offline  
Old 01/02/2010, 16:00   #17
 
elite*gold: 100
Join Date: Oct 2007
Posts: 738
Received Thanks: 485
hey thats an old code by me

you have to change more

Code:
Global $Name = "Guild Wars"         ;Guild Wars Window Name
Global $Tonic = true                ;If it´s a tonic or not
Global $DistNrMem = 0xa165dc        ;the district number mem
Global $Model = $FrostyTonicModel   ;the model of the item to be used
ddl is offline  
Thanks
1 User
Old 01/03/2010, 01:36   #18
 
elite*gold: 60
Join Date: Dec 2009
Posts: 19
Received Thanks: 0
Quote:
Originally Posted by DDL View Post
hey thats an old code by me

you have to change more

Code:
Global $Name = "Guild Wars"         ;Guild Wars Window Name
Global $Tonic = true                ;If it´s a tonic or not
Global $DistNrMem = 0xa165dc        ;the district number mem
Global $Model = $FrostyTonicModel   ;the model of the item to be used
I've made the changes for yuletide tonics and wintersday gifts!

Thank You verry much got my Party Animal title in 1 day Thx to Snowball Domina bot too
khios is offline  
Old 01/03/2010, 14:40   #19
 
elite*gold: 0
Join Date: Oct 2008
Posts: 11
Received Thanks: 1
wie bekomm ich den die Mem adresse aus
fu25fps is offline  
Old 01/03/2010, 14:52   #20
 
elite*gold: 0
Join Date: Apr 2008
Posts: 362
Received Thanks: 353
Quote:
Originally Posted by fu25fps View Post
wie bekomm ich den die Mem adresse aus
mem sammelthread.
Garry goes Sheep is offline  
Old 01/03/2010, 15:06   #21
 
elite*gold: 0
Join Date: Jan 2010
Posts: 3
Received Thanks: 0
Quote:
Originally Posted by h3llh0und0815 View Post
Das funzt bei mir irgendwie nicht. Bei der eingabe der DistNrMem Adresse beendet sich der bot...was mach ich falsch?
Bei mir auch Iwelche Idee warum?
kewl story is offline  
Old 01/03/2010, 15:07   #22
 
elite*gold: 0
Join Date: Apr 2008
Posts: 362
Received Thanks: 353
Richtige mem eingeben. Findest du im mem sammelthread...
Garry goes Sheep is offline  
Old 01/03/2010, 15:09   #23
 
elite*gold: 100
Join Date: Oct 2007
Posts: 738
Received Thanks: 485
oder so ne graphics.dll im gw ordner haben
ddl is offline  
Closed Thread


Similar Threads Similar Threads
Suche / Searching Silkroad Party Reformer / Auto Party script / tool
11/18/2009 - Silkroad Online - 4 Replies
Schönen Guten Tag :) Kennt Jemand von euch ein Party Reform script für silkroad online? am besten wäre eine funktion wie beim Agbot (Revbot), die auch weiter läuft, wenn silkroad minimiert ist. freue mich auf eure Antworten :rolleyes:
[Request] Working party skills w/ out party
09/09/2009 - Cabal Online - 3 Replies
ello guyz is there any working hack that u can use party skills w/out party? i read the release hack of this but i think its not working in official server.. i hope someone will release it or someone will give us a hint... tnx
(Kingmt2 Party) Eine Party zum gunsten von dme ersten deutschen lvl 90! ;)
05/17/2009 - Metin2 Private Server - 1 Replies
Ist egal wurde abgesagt wegen Kb xD
how to edit the starting party name at party match?
04/26/2009 - Silkroad Online - 2 Replies
First, what file I need? data.pk2? media.pk2? and how i change it so whos open party it will be the name i chose. plz help.



All times are GMT +2. The time now is 11:20.


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.