|
You last visited: Today at 07:59
Advertisement
Simple Presearing Lvl Bot GWA² based
Discussion on Simple Presearing Lvl Bot GWA² based within the GW Exploits, Hacks, Bots, Tools & Macros forum part of the Guild Wars category.
02/29/2012, 22:30
|
#31
|
elite*gold: 5
Join Date: Jul 2009
Posts: 217
Received Thanks: 45
|
Quote:
Originally Posted by Lordsocke
Still crashing when leaving, And I also got 2.6 ;(
|
Try this  .
Quote:
Originally Posted by einkeks95
Try this
Code:
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_icon=160px-Miniatur-Prinz_Rurik.ico
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <GUIListBox.au3>
#include <WindowsConstants.au3>
#include "GWA².au3"
Opt("GUIOnEventMode",1)
FileInstall("C:\Dokumente und Einstellungen\Jonas\Desktop\GWA²\PresearingLvlBot\Rurik.jpg", @TempDir & "Rurik.jpg")
Global $loopVar = False
Global $questId = 46
Global $ModelID = 30847
Global $moveVar = 7260
Global $health = 51
Global $speed = Random(2000, 3000, 1)
Global $runsDone = 0
Global $startXp = 0
Global $earnedXp = 0
Global $timeElapsed = 0
Global $listText
Global $windowName = "Guild Wars"
Global $stealth
Global $timer
#Region ### START Koda GUI section ### Form=
$gui = GUICreate("Presearing_LevelBot2.5 by Jonas93", 425, 220, 195, 124)
GUISetOnEvent($GUI_EVENT_CLOSE, "_eventHandler")
GUISetBkColor(0xFFFFFF)
$list = GUICtrlCreateList("", 8, 8, 305, 150, BitOR($LBS_NOTIFY,$WS_VSCROLL,$WS_BORDER))
$startButton = GUICtrlCreateButton("start", 8, 160, 40, 21)
GUICtrlSetOnEvent(-1,"_eventHandler")
$infoButton = GUICtrlCreateButton("info", 55, 160, 40, 21)
GUICtrlSetOnEvent(-1,"_eventHandler")
$windowButton = GUICtrlCreateButton("set window name", 225, 160, 90, 21) ;320,10,
GUICtrlSetOnEvent(-1,"_eventHandler")
$stoneCheckBox = GUICtrlCreateCheckbox("Summoning Stone",8,185)
$useSkillCheckBox = GUICtrlCreateCheckbox("Use Skill",120,185)
$survivorCheckBox = GUICtrlCreateCheckbox("Survivor",190,185)
$slowpcCheckBox = GUICtrlCreateCheckbox("Slow Pc",260,185)
GUICtrlCreatePic(@TempDir & "Rurik.jpg", 314, 5, 123, 175)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
_startMessage()
HotKeySet("{F1}" , "_stealth")
While 1
If $loopVar Then _botLoop()
WEnd
Func _eventHandler()
Switch(@GUI_CtrlId)
Case $infoButton
If $loopVar = True Then
$milisecs = TimerDiff($timer)
$secs = $milisecs /1000
$mins = $secs/60
If $secs < 60 Then
$timeElapsed = round($secs) & " secs"
Else
$timeElapsed = round($mins) & " mins"
EndIf
EndIf
UpdateStatus("-------------BotStatus-------------")
UpdateStatus("runs Done: " & $runsDone )
UpdateStatus("experience earned: " & $earnedXp)
UpdateStatus("time elapsed: " & $timeElapsed)
UpdateStatus("-------------BotStatus-------------")
Case $startButton
Initialize(WinGetProcess($windowName),True, True)
$startXp = GetExperience()
$timer = TimerInit()
$loopVar = Not $loopVar
Case $windowButton
$windowName = InputBox("Settings - WindowName","Please Insert your GuildWars window name")
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
EndFunc
Func _botLoop()
If GUICtrlRead($slowpcCheckBox) = 1 Then
$speed = Random(5000, 6000, 1)
endif
UpdateStatus("Abandon Quest")
AbandonQuest($questId)
UpdateStatus("Move to Rurik")
MoveTo(5740,10636)
UpdateStatus("Accept Quest")
$agent = GetNearestNPCToAgent(-2)
GoToNPC($agent)
AcceptQuest($questId)
RndSleep(1000)
UpdateStatus("Move out of Ascalon")
MoveTo(7118,10695)
MoveTo(7483,10459)
MoveTo(7404,5933)
Move($moveVar,5450); because MoveTo() crash in Portals
UpdateStatus("Wait map to load")
Sleep(Random(3000,4000,1)); for the way to the Portal
Sleep($speed)
Do
RndSleep(500)
$lMe = GetAgentByID(-2)
$x = DllStructGetData($lMe, 'X')
Until $x <> 0
UpdateStatus("Wait for Rurik")
MoveTo(5526,4505,100)
RndSleep(6000)
UpdateStatus("Move infront of Charr")
MoveTo(4498,5469,100)
MoveTo(3297,6157,100)
MoveTo(2149,6378,100)
MoveTo(836,6645,100)
MoveTo(-382,7450,100)
MoveTo(-1032,7992,100)
MoveTo(-2125,8739,100)
UpdateStatus("Follow Rurik")
Do
$rurikAgent = GetNearestNPCToAgent(-2)
$aX = DllStructGetData($rurikAgent, 'X')
$aY = DllStructGetData($rurikAgent, 'Y')
MoveTo($aX,$aY)
$nearestEnemy = GetNearestEnemyToAgent()
$distance = GetDistance($nearestEnemy,-2)
Until $distance < 1800
RndSleep(250)
If GUICtrlRead($stoneCheckbox) = 1 Then
$id = GetItemByModelID($ModelID)
UseItem($id)
EndIf
UpdateStatus("Wait until all Charr are dead")
Do
$nearestEnemy = GetNearestEnemyToAgent()
Attack($nearestEnemy)
If GUICtrlRead($useSkillCheckBox) = 1 then
If GetSkillbarSkillRecharge(1) = 0 Then
If GetEnergy() > 10 then UseSkill(1,$nearestEnemy)
EndIf
EndIf
$distance = GetDistance($nearestEnemy,-2)
$living = GetIsLiving(-2)
If GUICtrlRead($survivorCheckBox) = 1 Then $health = GetHealth()
sleep(250)
Until $distance > 3000 or $living <> True or $health < 50
UpdateStatus("Travel back to Ascalon")
TravelTo(148)
Sleep($speed)
Do
RndSleep(500)
$lMe = GetAgentByID(-2)
$x = DllStructGetData($lMe, 'X')
Until $x <> 0
UpdateInfos()
Endfunc
Func UpdateStatus($text)
GUICtrlSetData($list, "")
$listText = $text & "|" & $listText
GUICtrlSetData($list,$listText)
EndFunc
Func UpdateInfos()
$runsDone +=1
$currentXp = GetExperience()
$earnedXp = $currentXp - $startXp
EndFunc
Func _stealth()
If $stealth = 0 Then
WinSetState($gui, "", @SW_HIDE)
WinSetTrans($gui, "", 0)
WinSetState($windowName, "", @SW_HIDE)
WinSetTrans($windowName, "", 0)
Opt("TrayIconHide", 1)
$stealth =1
ElseIf $stealth = 1 Then
WinSetState($gui, "", @SW_SHOW)
WinSetTrans($gui, "", 255)
WinSetState($windowName, "", @SW_SHOW)
WinSetTrans($windowName, "", 255)
Opt("TrayIconHide", 0)
$stealth = 0
EndIf
Endfunc
Func _startMessage()
GUICtrlSetData($list, " Presearing_LevelBot2.5 by Jonas93")
GUICtrlSetData($list, "_________________________________________________")
GUICtrlSetData($list, "To hide and show the Bot window and Guild Wars window")
GUICtrlSetData($list, "press F1")
GUICtrlSetData($list, " ")
GUICtrlSetData($list, 'check "Summoning Stone" to use Summoning Stone.')
GUICtrlSetData($list, 'check "Use Skill" to Use 1. SkillbarSkill in fight.')
GUICtrlSetData($list, 'check "Survivor" to Travel back if your Health < 50')
EndFunc
|
|
|
|
03/02/2012, 02:15
|
#32
|
elite*gold: 44
Join Date: Sep 2008
Posts: 1,515
Received Thanks: 687
|
Quote:
Originally Posted by Ibfjord
Okay, I see. It doesn't farm bandits for 10-20? If not does it do something else besides Charr At The Gate?
|
I've modified one to pick up flowers that are nearby once done with charr at gate, but i haven't used it since i lost my internet ._.
|
|
|
03/04/2012, 18:27
|
#33
|
elite*gold: 1
Join Date: Jul 2008
Posts: 72
Received Thanks: 71
|
ich weiß fragen sind nicht erlaubt aber ich dachte wenn ich sie hir stelle krige ich schneller ne antwort
da GW ja nicht mehr so populär ist und jeder eis eig schon 50 mal durch genudelt hatt
wolte ich mal wissen ob es ein DMG hack gibt damit man sich schnell neuer machen kann und die auch schnell auf 20 hatt ?
|
|
|
03/04/2012, 19:00
|
#34
|
elite*gold: 0
Join Date: Oct 2008
Posts: 212
Received Thanks: 35
|
Nein gibt es nicht.
|
|
|
04/28/2012, 14:29
|
#35
|
elite*gold: 0
Join Date: Jul 2009
Posts: 3
Received Thanks: 1
|
Work well but sometimes the character get lost
|
|
|
 |
|
Similar Threads
|
Simple Packet based Shaiyabot Beta
05/19/2010 - Shaiya Hacks, Bots, Cheats & Exploits - 0 Replies
removed
|
[WTB] Black Dyes/Schwarz in Presearing/Tutorial
04/06/2010 - Guild Wars Trading - 0 Replies
Hey epvp-lers,
ich kaufe Schwarze Farbstoffläschen im Tutorial von Proph.
Preisvorstellungen bitte per PM:
-Ektos im Post-Game also im Hauptspiel
-Oder €
|
Looking for a presearing bot
02/16/2010 - GW Bots - 1 Replies
I found two bots here in the forums, from a while back, one a bandit farming bot and one a scale farming bot. both for farms in presearing. I couldnt get either to work and didnt want to bump such old threads, does anyone know of a bot for either of these farms which works well.
|
[RELEASE] I named my bot LILPROHACKER, based "Disconnect'S packet based BOT"
02/08/2010 - Shaiya Hacks, Bots, Cheats & Exploits - 6 Replies
Hello guys Thats release section right???
http://img686.imageshack.us/img686/8051/fuckthate .jpg
Shaiya Packet Bot By lilprohacker - G-R - Your Gaming Community
DLL error, but its not my problem i did it just for show people what is dll error.
Solution: Put "pipeClient.dll" and "packet.dll" to Shaiya Packet Bot v1023 folder
http://img707.imageshack.us/img707/4519/fuckthat. jpg
|
All times are GMT +1. The time now is 08:00.
|
|