Quote:
Originally Posted by kendor
>.< i had only 2 bags to sell stuff from selected and this bot sold all my armor and my oni daggers >.< avoid keeping anything of value in your inventory while using this bot, not the bots fault but would have been nice to get a warning
|
-Edit-
Not once in the code below does it allow it to sell Armor...Weapons yes but Armor no.
Code:
Func CanSell($q, $m, $r)
;If $m = 0 OR $q > 1 OR $r = $Rarity_Gold Then
If $m = 0 Or $q > 1 Then
Return False
ElseIf $KeepGoldItems And $r = $RARITY_Gold Then
Return False
ElseIf $KeepGreenItems And $r = $RARITY_Green Then
Return False
ElseIf $KeepPurpleItems And $r = $RARITY_Purple Then
Return False
ElseIf $KeepBlueItems And $r = $RARITY_Blue Then
Return False
ElseIf $m > 21785 And $m < 21806 Then ;Elite/Normal Tomes
Return False
ElseIf $m = 146 Or $m = 22751 Then ;Dyes/Lockpicks
Return False
ElseIf $m = 2991 Or $m = 2992 Or $m = 2989 Or $m = 5899 Then ;Sup ID/Salvage
Return False
ElseIf $m = 923 Or $m = 931 Or $m = 6533 Then ;Jade/Eye/Claw
Return False
Else
Return True
EndIf
EndFunc ;==>CanSell
Quote:
Originally Posted by Man Beer Bacon
Great post! 0 setup, and easy user interface makes this bot a nice add. Ive used this bot for around 12 hours now and it hasn't failed a single run. But how how do I make it pick up the apple cider and pie slices? Do I need to open the Globeul au3 file with the first link application? Or is that GWA2 v3.5 a separate program I have to locate and download?
|
-Edit- Added GwA2 v3.g
Quote:
Originally Posted by TheXXVCR
Hello, just wanted to say thanks for making this public.
I have 2 Questions:
How i get Globeuls thing to work?
and:
How high more or less is the chance to get banned?
Thanks in advance!
Ich checke einfach nicht wie gwa² benutzt öffnet oder was auch immer
|
Look Below :)
Im not sure if its late i haven't entered Guild wars today cause of college... Anyways You can Add Cide/Slices By going to Line 776 and you will see a code like the one below Replace the one in the script for this one..Completely. Again im not sure if event still going if its not don't bother.
Code:
Func CanPickUp($aitem)
$m = DllStructGetData(($aitem), 'ModelID')
$r = DllStructGetData(GetEtraItemInfoByItemId(DllStructGetData($aitem, 'id')), 'Rarity')
If $m == 835 Or $m == 933 Or $m == 921 Or $m == 28434 Or $m == 30855 Or $m = 2511 Or $m == 28436 Or $m == 28435 Then
Return True
ElseIf $r = $RARITY_Gold Or $r = $RARITY_Green Then
Return True
ElseIf $m = 146 Or $m = 22751 Then ;Dyes/Lockpicks
Return True
ElseIf $m > 21785 And $m < 21806 Then ;Elite/Normal Tomes
Return True
ElseIf $m = 28436 Or $m = 28435 Then ;Cider/Slice
Return True
ElseIf $pickupgstones And $m = $gstones Then
Return True
Else
Return False
EndIf
EndFunc ;==>CanPickUp