Vaettir Bot V0.2

09/16/2020 13:38 azerty8585#31
TY for the answer, but the one you talk about fail in render mode, i don't know why :(
09/17/2020 17:50 lemoutondu10#32
the same goes for all bot i believe. Just don't disable rendering^^
10/07/2020 16:05 xamkta#33
How do I run this bot? Is there any guide on this forum for running them?

Thanks in advance.
10/07/2020 16:30 Restia Ashdoll#34
Quote:
Originally Posted by xamkta View Post
How do I run this bot? Is there any guide on this forum for running them?

Thanks in advance.
Install AutoIt launch the file script in 86x

But be aware if you have 0 clue there could be maleware in the files so if you want to be save go into a VM and keep your account save
10/15/2020 04:35 Leguron#35
OP can you release a version that supports Ele/Me?


Like in the video.

Is anyone aware of a bot that supports ele for legendary survivor?
10/17/2020 13:33 youallcheat#36
hey guys.
I tried your bot.. amazing... no words.

But... donc you think we can get ban for using it ?
Do you use it on your main account or on alt account only ?

do we have a recent report ? I found the topic that speak about several years ago...

Thanks again
10/17/2020 14:25 Restia Ashdoll#37
Quote:
Originally Posted by youallcheat View Post
hey guys.
I tried your bot.. amazing... no words.

But... donc you think we can get ban for using it ?
Do you use it on your main account or on alt account only ?

do we have a recent report ? I found the topic that speak about several years ago...

Thanks again
you are always in danger of getting banned if you bot

if you wanna stay more save there are simple rules:

not more than 2 Acc for ea IP
don't bot for a longer time (12h +)
don't use public scripts
Use dis changer & random pathing
don't bot PVP
10/20/2020 02:48 timtimcharoo#38
the v0.3 works great. i've made some little changes where I wanted to, but the one thing I still can't figure out is how to script storing golds that have a q8 stat on them. I don't need to store all the other junk, but in case there happens to drop a q8, I'd like to save it

any idea how to code it? I tried years ago when I was playing to no avail. thought I'd ask now that I'm messing around again
10/20/2020 11:11 Restia Ashdoll#39
Quote:
Originally Posted by timtimcharoo View Post
the v0.3 works great. i've made some little changes where I wanted to, but the one thing I still can't figure out is how to script storing golds that have a q8 stat on them. I don't need to store all the other junk, but in case there happens to drop a q8, I'd like to save it

any idea how to code it? I tried years ago when I was playing to no avail. thought I'd ask now that I'm messing around again
here an example for shields with max armor .. but there are no q8 in hm anyway ^^
Code:
Case $TYPE_SHIELD
		 If $aReq = 9 And GetItemMaxDmg($aItem) = 16 Then ; Req8 Shields
			Return False
		 ElseIf $aReq = 8 And GetItemMaxDmg($aItem) = 16 Then ; Req8 Shields
			Return False
		 ElseIf $aReq = 7 And GetItemMaxDmg($aItem) = 15 Then ; Req7 Shields
			Return False
		 ElseIf $aReq = 6 And GetItemMaxDmg($aItem) = 14 Then ; Req6 Shields
			Return False
		 ElseIf $aReq = 5 And GetItemMaxDmg($aItem) = 13 Then ; Req5 Shields
			Return False
		 ElseIf $aReq = 4 And GetItemMaxDmg($aItem) = 12 Then ; Req4 Shields
			Return False
		 EndIf
10/20/2020 13:57 timtimcharoo#40
ah right i forgot about that. i got a q8/16 shield from a killroy once and by luck happened to see it in the inventory before it autosold
10/20/2020 14:08 poalagra_t#41
Hey guys, i'm having an issue with the bot not selling anything and thus having the inventory full all the time.
What shoud I do to fix it?

Edit: i fixed it by leaving my guild, as when in the guild hall my char was heading to the rune merchant and not merchant.
How should i fix it when still in the guild?
10/20/2020 14:45 Restia Ashdoll#42
Quote:
Originally Posted by poalagra_t View Post
Hey guys, i'm having an issue with the bot not selling anything and thus having the inventory full all the time.
What shoud I do to fix it?

Edit: i fixed it by leaving my guild, as when in the guild hall my char was heading to the rune merchant and not merchant.
How should i fix it when still in the guild?
Check if your bot recognizes which guild he is in - if he runs to the wrong merchant he probably has the wrong pathing for your GH - This is what i use for Aftercare

Code:
Func Inventory()
	Out("Travel to Guild Hall")
	TravelGH()
	WaitMapLoading()

	Out("Checking Guild Hall")
	CheckGuildHall()

	Merchant()

	Out("Identifying")
	Ident(1)
	Ident(2)
	Ident(3)
;~ 	Ident(4)

	Out("Selling")
	Sell(1)
	Sell(2)
	Sell(3)
;~ 	Sell(4)

	If GetGoldCharacter() > 80000 Then
		Out("Depositing Gold")
		DepositGold()
	EndIf

	Sleep(GetPing()+1000)

	If GetGoldCharacter() > 80000 Then
		Out("Buying Rare Materials")
		RareMaterialTrader()
	EndIf
    Chest()
	StoreGolds()
	LeaveGH()
	WaitMapLoading()
 EndFunc
10/20/2020 16:43 poalagra_t#43
Quote:
Originally Posted by Restia Ashdoll View Post
Check if your bot recognizes which guild he is in - if he runs to the wrong merchant he probably has the wrong pathing for your GH - This is what i use for Aftercare

Code:
Func Inventory()
	Out("Travel to Guild Hall")
	TravelGH()
	WaitMapLoading()

	Out("Checking Guild Hall")
	CheckGuildHall()

	Merchant()

	Out("Identifying")
	Ident(1)
	Ident(2)
	Ident(3)
;~ 	Ident(4)

	Out("Selling")
	Sell(1)
	Sell(2)
	Sell(3)
;~ 	Sell(4)

	If GetGoldCharacter() > 80000 Then
		Out("Depositing Gold")
		DepositGold()
	EndIf

	Sleep(GetPing()+1000)

	If GetGoldCharacter() > 80000 Then
		Out("Buying Rare Materials")
		RareMaterialTrader()
	EndIf
    Chest()
	StoreGolds()
	LeaveGH()
	WaitMapLoading()
 EndFunc

thanks, i will try this, i'm no programmer so it could take some time haha
other issue I noticed, since i'm no longer in a guild, it's sometimes talking to Longeye instead of the merchant.
Is this related to this issue ?
10/20/2020 17:34 youallcheat#44
hey guys, it seems like sometime you can fail to -60%.
In this case, the bot keep going on its routines, but your character do not move (at -60%, you have to go back to city).
Is there a way to go back to town if this happens ?

btw with only 11 in shadow, it also seems that you can get hexed (mobs have like 0.2 seconds to cast it for the last sf use). I use to play with 12 and less in dom. That works the same for the killing phasis.

sorry for my english.....

Thanks
10/31/2020 10:49 riceprot94#45
Hello people,

can someone explain me how i can Edit the Script that the Bot does not pick up Blue and Purple Items?

Thanks in advance :)