MrKitties 0 Posted July 26, 2018 Share Posted July 26, 2018 where do I start with lua? I have a rogue and I wish to look cleaner like apply poisins, vanish at 20 percent reset from fight then regen, and range pulling certain targets with melee classes that have range weapons. SHOW ME THE WAY COMMANDER. SOMEONE BE THE COMMANDER O.O Link to comment https://wrobot.eu/forums/topic/9842-how-do-i-get-into-lua/ Share on other sites More sharing options...
MrKitties 0 Posted July 26, 2018 Author Share Posted July 26, 2018 I Know for sure the way to try harding in botting is knowing lua programming and that's the best way to make it somewhat more lifelike and have more features than the base purchase bot you make. Link to comment https://wrobot.eu/forums/topic/9842-how-do-i-get-into-lua/#findComment-46064 Share on other sites More sharing options...
Droidz 2738 Posted July 27, 2018 Share Posted July 27, 2018 Hello, about how to apply poisons search on the forum and look existing fightclasses, about change regen system in BG you need good programming skill and you need to know WRobot API. Link to comment https://wrobot.eu/forums/topic/9842-how-do-i-get-into-lua/#findComment-46084 Share on other sites More sharing options...
Matenia 627 Posted July 27, 2018 Share Posted July 27, 2018 Can also be modified to use Regeneration in Battlegrounder. For things like vanishing in combat and staying in stealth to regen you need C# to subscribe to fight events and block the bot's main thread to stop it from engaging in combat (really advanced - better start slow). Link to comment https://wrobot.eu/forums/topic/9842-how-do-i-get-into-lua/#findComment-46088 Share on other sites More sharing options...
MrKitties 0 Posted July 27, 2018 Author Share Posted July 27, 2018 where can I start at? any suggestions? anything would be much appreciated. ok I get it now. I am looking into C# now Link to comment https://wrobot.eu/forums/topic/9842-how-do-i-get-into-lua/#findComment-46099 Share on other sites More sharing options...
exuals 2 Posted July 27, 2018 Share Posted July 27, 2018 Look at the other fightclasses and check for simple numbers at first near spells names to get an idea of what it's doing. eg. Most fight classes will have ObjectManager.Me.HealthPercent which is a check to see if your health is greater or less than a certain threshold. "If health less than 70%, cast renew" Start tweaking numbers to change what percentage what spells trigger, if you don't want it to do a spell, comment it out by placing '//' infront of the lines of code. if (RaptorStrike.KnownSpell && ObjectManager.Target.GetDistance < 8) { RaptorStrike.Launch(); } change to if (RaptorStrike.KnownSpell && ObjectManager.Target.GetDistance < 8) { //RaptorStrike.Launch(); } Here's a more complex line that is almost human readable, hopefully the fightclasses you download were written well: if (ObjectManager.Me.HealthPercent <= 40 && FlashHeal.KnownSpell && !ObjectManager.Me.HaveBuff("Shadowform") && ObjectManager.Me.ManaPercentage > 15) { FlashHeal.Launch(); } "If my health is less than 40% and I know flash heal, I'm not in shadowform (the ! means inverse) and I have some mana" Link to comment https://wrobot.eu/forums/topic/9842-how-do-i-get-into-lua/#findComment-46117 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now