If you want to have a private Witch script for PYX contact me via skype or pm. We can discuss a price.Quote:
Are there any plans to improve the combat AI? I have a well geared witch that can kill everything easily but still dies when grinding because the bot doesn't use any evasion.
if actorPosition.Distance3DFromMe <= monsterActor.BodySize + 100 and selfPlayer.Stamina > 200 and selfPlayer.HealthPercent > 95 then
local rnd = math.random(1, 3)
if rnd == 1 then
print("GTFO! Teleporting time! To the left!")
selfPlayer:SetActionStateAtPosition(ACTION_FLAG_EVASION | ACTION_FLAG_MOVE_LEFT, actorPosition, 1750)
return
end
if rnd == 2 then
print("GTFO! Teleporting time! To the right!")
selfPlayer:SetActionStateAtPosition(ACTION_FLAG_EVASION | ACTION_FLAG_MOVE_RIGHT, actorPosition, 1750)
return
end
if rnd == 3 then
print("GTFO! Teleporting time! To the rear!")
selfPlayer:SetActionStateAtPosition(ACTION_FLAG_EVASION | ACTION_FLAG_MOVE_BACKWARD, actorPosition, 1750)
return
end
end
Quote:
If you want to have a private Witch script for PYX contact me via skype or pm. We can discuss a price.
You can easily add evasion by yourself. The evasion can be handled with the combat script.
If mob distance < XXXX then do evasion shit with random numbers etc.
It's not sth that should be handled with the Grinding script itself, because you have different evasion moves for each class.
So it's based on the script's that are located in this folder
????\PyxBDO\scripts\Grinder\Combats
One example would be sth like that. It's from an official combat script that comes a long with pyx.
Code:if actorPosition.Distance3DFromMe <= monsterActor.BodySize + 100 and selfPlayer.Stamina > 200 and selfPlayer.HealthPercent > 95 then local rnd = math.random(1, 3) if rnd == 1 then print("GTFO! Teleporting time! To the left!") selfPlayer:SetActionStateAtPosition(ACTION_FLAG_EVASION | ACTION_FLAG_MOVE_LEFT, actorPosition, 1750) return end if rnd == 2 then print("GTFO! Teleporting time! To the right!") selfPlayer:SetActionStateAtPosition(ACTION_FLAG_EVASION | ACTION_FLAG_MOVE_RIGHT, actorPosition, 1750) return end if rnd == 3 then print("GTFO! Teleporting time! To the rear!") selfPlayer:SetActionStateAtPosition(ACTION_FLAG_EVASION | ACTION_FLAG_MOVE_BACKWARD, actorPosition, 1750) return end end
as I mentioned you can easilie add the evasion into the combat script.Quote:
I bet you can customize the bot freely using Lua or scripts that the bot supports.
It is possible to bypass the cooldown and mana/resources consumption from many skills. not EVERY skill. But it's very close to every skill.Quote:
possible to bypass cooldown and resources?
there are multiple marketplace lua "mods" that will do this for you by just downloading it and putting it into the right folder from pyx.Quote:
Is marketplace captcha bypass possible? pretty much only thing that id risk it for.
Schau dich doch einfach mal auf der Seite um da gibt es einige tipps tricks und guides auf englisch [Only registered and activated users can see links. Click Here To Register...]Quote:
Gibt es ein tutorial für Anfänger?