Pyx.BDO - Grinding | Fishing | Modding | Lua API

04/27/2016 22:10 kotzanfall#76
Quote:
Originally Posted by Nobpmlimit View Post
warum bekomme ich immer so eine setup.exe datei? was ist das?
Damit installierst du den Bot.
04/28/2016 16:59 ToraTenshi#77
Quote:
Originally Posted by colonelklink View Post
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 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
04/28/2016 19:40 skskz#78
Quote:
Originally Posted by ToraTenshi View Post
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

Edit - Nevermind
04/28/2016 20:45 killzone#79
Quote:
Originally Posted by colonelklink View Post
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.
I bet you can customize the bot freely using Lua or scripts that the bot supports.
04/28/2016 22:38 ToraTenshi#80
Quote:
Originally Posted by killzone View Post
I bet you can customize the bot freely using Lua or scripts that the bot supports.
as I mentioned you can easilie add the evasion into the combat script.
I also posted an example from an official combat script that does support it.
You can also change the complete Grinding script itself, because it is open and you can change anything you want.
There is also a different version in the official pyx.bdo forum.

If you are going to change the grindindg script itself, you should copy it and paste it with a different name. If you do that pyx won't overwrite it if there is an update out for it.
04/29/2016 01:17 colonelklink#81
Evasion is only one of the issues that need improving. The bot will fight an enemy and then move on to another enemy before the first one is dead. It will attack melee enemies at a distance who aren't a threat while ignoring ranged enemies that are attacking.
04/29/2016 13:12 ToraTenshi#82
all this can be added manually by yourself if you need it...
Evasion is easy to add even if you don't understand anything from lua.
My example does work for every class because it's based on keystrokes.

If you would like to have such a feature in the official combat handling / script then you should suggest it in the offical pyx.bdo forum under the section suggestions ;)
04/29/2016 21:40 imahacker#83
possible to bypass cooldown and resources?
04/30/2016 03:34 shanebroadster#84
Quote:
Originally Posted by imahacker View Post
possible to bypass cooldown and resources?
Yep.
04/30/2016 17:04 ♥ Panda.#85
Is marketplace captcha bypass possible? pretty much only thing that id risk it for.
04/30/2016 17:11 killzone#86
I read it bypasses Captcha.
05/01/2016 03:05 shanebroadster#87
Quote:
Originally Posted by ♥ Panda. View Post
Is marketplace captcha bypass possible? pretty much only thing that id risk it for.
That's one of the main features of it pretty sure :pimp:
05/03/2016 13:14 badkat44#88
Gibt es ein tutorial für Anfänger?
05/03/2016 14:06 ToraTenshi#89
Quote:
Originally Posted by imahacker View Post
possible to bypass cooldown and resources?
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:
Originally Posted by ♥ Panda. View Post
Is marketplace captcha bypass possible? pretty much only thing that id risk it for.
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.
AH sniping = positiv
Buying items that are in the bed list = positiv (you are able to roll multiple times with a script, might take some times but after 30+ rolls on the same item you should have it, normaly you can only roll once per item)

Quote:
Originally Posted by badkat44 View Post
Gibt es ein tutorial für Anfänger?
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...]
Ansonsten kannst du mich auch in skype hinzufügen. Links neben diesem Post dürfte mein skype acc verknüpft sein.
05/04/2016 18:58 Razor457#90
Do the people using your platform to do retarded game breaking shit like speedhack / cd hack raise the risk of all of your users becoming a target? mainly instead in some grinding / fishing.

I assume if they go after the speed hackers they'll aim to detect the platform if anything so all other users = rip too?