Quote:
Originally Posted by shadowbane_elite
Bot works great,i am averaging about 6 minute a run with the a/mo build. A script for the a/me version would be great,but I think that is beyond my abilities. Also pondering about more profitable areas that are bottable. Would love to write a script to farm mantids or vermin in factions.
I've got 2 quepstions.
What is the difference between first and second version?
When I check pick all items it still only picks up gold/event items. Should i update mem?
|
the first version is just used to farm golds/other stuff and u can store it or not however you want, You can also edit it to pickup other stuff for events.
second version Is used just for the Event items back when Thanksgiving was dropping Ciders + Apple Pie.
Ah if you want to pick up All Items do this.
Right Click On The Corey Scrip and click Edit Script.
Then Press Ctrl + F, and search for this.
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 == 28435 or $m == 28436 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 $pickupgstones And $m = $gstones Then
Return True
Else
Return False;
EndFunc ;==>CanPickUp
It will take u straight to where u need to be Alright, So The Whole Function that looks like the one above just Copy the one below this text and Copy it over the one in the script which will change just Return False Into Return True allowing the bot to pick up all items.
Then Click Safe and your good to go.
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 == 28435 or $m == 28436 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 $pickupgstones And $m = $gstones Then
Return True
Else
Return True ;Changing this to True tells the bot to pick up everything
EndIf
EndFunc ;==>CanPickUp
Any Questions, let me know