|
What is the problem with my scipt, he dont attack only aggro is working.. i have only change the waitpoint...
Thanks!
RunScript "includes\VGService.vbs"
RunScript "includes\navigation.vbs"
'********************************************************************'
'* Author : Binafus *'
'* Release : 3/26/07 *'
'* Version : 2.4 *'
'* License : TaultUnleashed Premium Members ONLY *'
'* Credits : Wyvernx's and Tault_mississippi *'
'********************************************************************'
'********************************************************************'
'* Set up your primary HOT BAR in game as follows *'
'* Slot 1 = Autoattack *'
'* Slot 2 = Cyst Spell Line *'
'* Slot 3 = BloodUnion Spell Line *'
'* Slot 4 = Despoil Line *'
'* Slot 5 = Scarlet Spell Line *'
'* Slot 6 = Mental Health to Power Buff *'
'* Slot 7 = *'
'* Slot 8 = *'
'* Slot 9 = Self Heal *'
'********************************************************************'
'********************************************************************'
'* Set up your ALT HOT BAR in game as follows *'
'* Slot 1 = Loot Macro *'
'* Slot 2 = Harvest Macro *'
'* Slot 3 = Serak's Aug *'
'* Slot 4 = Serak's Man *'
'* Slot 5 = Health Graft *'
'* Slot 6 = Vitilize *'
'* Slot 7 = Ment *'
'* Slot 8 = Blood Feast *'
'* Slot 9 = Transmutation INVIS *'
'* Slot 10 = Symbiote Buff *'
'********************************************************************'
'****************************************************'
'* MOVEMENT KEYS MUST BE SET AS FOLLOWS *'
'* a = Turn LEFT *'
'* d = Turn RIGHT *'
'* w = FORWARD *'
'****************************************************'
'****************************************************'
'* EDIT the following Consts to match your settings *'
'****************************************************'
Const HOTKEY_AUTO_ATTACK = "1" ' Auto Attack Key
Const CYST = "2" ' Cyst Line ' Level 1
Const BLOOD_UNION = "3" ' Blood Union Line ' Level 4
Const DESPOIL = "4" ' Despoil Line
Const SCARLET_RITUAL = "5" ' Scarlet Ritual Higher level of Blood Union Greater Damage
Const HOTKEY_HEALTH_POWER = "6" '
Const HEAL_PLAYER = "9" ' Infuse Line
'* The % sign stands for the alt key you can change it to match whatever your want to use to get to your secondary hotbars *
Const BUFF_FIRST_BUFF= "%3" '"Serak's Augmentation II"
Const BUFF_SECOND_BUFF = "%4" '"Serak's Mantle III"
Const BUFF_THIRD_BUFF = "%5" '"Health Graft III"
Const BUFF_FOURTH_BUFF = "%6" '"Vitalize II"
Const BUFF_FIFTH_BUFF = "%7" '"Mental Infusion I"
Const BUFF_FIFTH_TEEN_MINUTE = "%8" '"Blood Feast"
Const HOTKEY_INVIS = "%9" ' Invis
Const BUFF_6TH_BUFF = "%0" ' Place the 1 hour Symbiote buff you wish to have
Const LEVEL_TRAINED = "21" ' Last level trained
Const AVOID_PLAYERS = 1 ' Set to 1 to avoid players, invis move to next waypoint to stay away from them
Const STOP_DEAD = 1 ' Set to 1 if you wish Vanguard to exit if you die or it runs max loops
Const QuitOnTell = 0 ' Set to 1 if you wish the bot to exit on recieving a tell
Const MAX_MOB_LEVEL = 39 ' Max level of mob you wish to attack
Const MIN_MOB_LEVEL = 2 ' Min level of a mob to attack, some world items are level 1
Const HOTKEY_NEXT_MOB = "z" ' Cycle mobs
Const HOTKEY_NEAREST_MOB = "q" ' Nearest Mob
Const MAX_RUNS = 5000 ' How many loops to do
Const SPELL_SLEEP = 2900 ' Spell cooldown
Const WALK = 3200 ' How long the player will walk to the next waypoint, he will not stoped if attacked.
' Raise this number will increase the risk of dragging mobs with you.
' Lower this number is safer but you may not have time to make it to your waypoints
Const XMAX = 2000 ' Max Difference X Cords of Waypoints
Const YMAX = 2000 ' Max Difference Y Cords of Waypoints
Const ZMAX = 500 ' Max Difference Z Cords of Waypoints
'**********************************************************************************************************************'
'* WAYPOINTS = needs to equal how many waypoints u are actually using *'
'* WAYPOINTS = 0 will equal no movement just stand in one place and kill
'* Dim WAYPOINT_ARRAY(X,2) fill in X with the number that you put in WAYPOINTS
'**********************************************************************************************************************'
Const WAYPOINTS = 13 ' Set to 0 if you are not using Waypoints
Dim WAYPOINT_ARRAY(13,3) ' Set to x,3 where x is the number of waypoints
WAYPOINT_ARRAY(0,0) = 51779
WAYPOINT_ARRAY(0,1) = -77652
WAYPOINT_ARRAY(1,0) = 50863
WAYPOINT_ARRAY(1,1) = -73559
WAYPOINT_ARRAY(2,0) = 47983
WAYPOINT_ARRAY(2,1) = -74722
WAYPOINT_ARRAY(3,0) = 46002
WAYPOINT_ARRAY(3,1) = -71368
WAYPOINT_ARRAY(4,0) = 44528
WAYPOINT_ARRAY(4,1) = -66879
WAYPOINT_ARRAY(5,0) = 37891
WAYPOINT_ARRAY(5,1) = -69396
WAYPOINT_ARRAY(6,0) = 27644
WAYPOINT_ARRAY(6,1) = -73219
WAYPOINT_ARRAY(7,0) = 27293
WAYPOINT_ARRAY(7,1) = -78325
WAYPOINT_ARRAY(8,0) = 29074
WAYPOINT_ARRAY(8,1) = -84924
WAYPOINT_ARRAY(9,0) = 32979
WAYPOINT_ARRAY(9,1) = -84932
WAYPOINT_ARRAY(10,0) = 36503
WAYPOINT_ARRAY(10,1) = -83826
WAYPOINT_ARRAY(11,0) = 40521
WAYPOINT_ARRAY(11,1) = -81685
WAYPOINT_ARRAY(12,0) = 46656
WAYPOINT_ARRAY(12,1) = -78902
WAYPOINT_ARRAY(13,0) = 52079
WAYPOINT_ARRAY(13,1) = -78519
'*****************************************************************************************************************************************'
' If you wish to Skin/Harvest the mobs you kill Change HARVEST_MOB = 1 and fill in the mobs you will be harvesting in the GoodSpawns
'*****************************************************************************************************************************************'
Const HARVEST_MOB = 0 ' Try to Skin mobs just killed ? 1 = true 0 = False
Const HARVEST_DELAY = 6 ' If you are still Harvesting when it tries to Loot raise this number, if it is waiting too long to loot lower it
'***********************************************************************'
'* EDIT the following Mob list if you will be Harvesting them *'
'***********************************************************************'
Dim GoodSpawns(8)
GoodSpawns(0) = "Strange Clump of Grass"
GoodSpawns(1) = "Cackler Fury"
GoodSpawns(2) = "Sandburster of Veleri"
GoodSpawns(3) = "Hunter Spider"
GoodSpawns(4) = "Boar"
GoodSpawns(5) = "Plains Wolf"
GoodSpawns(6) = "Small Ringback Adder"
GoodSpawns(7) = "Snake"
GoodSpawns(8) = "Plains Wolf"
|