AoA323 0 Posted July 7, 2017 Share Posted July 7, 2017 I'd like to be able to convert a simcraft profile to c# or lua fight class kind of how Ovale addon does for rotation scripts or taking Ovale scripts to a fight class. Any ideas? Link to comment https://wrobot.eu/forums/topic/6392-simcraft-profile-to-c-or-lua/ Share on other sites More sharing options...
Mykoplazma 24 Posted July 7, 2017 Share Posted July 7, 2017 The simcraft rotation or other addon is not pefrect. You must write your own rotation and tune it in long run to get the proper high values of dps. Study the char , check all possible values which increase the dps etc etc. The priority system used by example by pqr can be easly simulated in c# using something like that. Pseudocodish way spellName = "fillerSpellName" if (something && something ) spellName = "spell1"; if (somethingElse && somethingElse ) spellName = "spell2"; if (somethingElse2 && somethingElse2 ) spellName = "spell3"; (..) Cast(spellName); The lowest spell in the program ( or higher in the line number ) will be executed first and then the rest if the condition from the lowest is not ready etc etc. I myself after a month of tunning and checking was able to make perfect destro lock rotation but well it was worth it ( conditions in that rotation are different than in simcraft tho ) About the automatic conversion - well there is no such program here and who knows maybe somebody will write it. Link to comment https://wrobot.eu/forums/topic/6392-simcraft-profile-to-c-or-lua/#findComment-28941 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