PierreDeRosette 13 Posted December 31, 2015 Share Posted December 31, 2015 Bonjour Pourrais tu m'eclaircir ces deux points : 1/ L'extension .IsSpellUsable : Tient elle compte du GCD (c'est a dire est elle false pendant qu on est en GCD) ? Qu'est ce que prend en compte exactement IsSpellUsable. 2/ Le monk MistWeaver (Healer donc) a besoin de canaliser un sort et d'en lancer en meme temps pendant qu'il canalise afin d'effectuer ses soins (Particularité du monk) Je ne sais pas comment on ecrirait cela sous wrobot. Car avec wrobot, quand on lance un sort permettant la canalisation, on ne peut tout en maintenant la canalisation, en lancer un second. exemple : Brume apaisante doit etre canalisee afin de pouvoir lancer instantanement "Brume enveloppante" Link to comment https://wrobot.eu/forums/topic/2558-2-questions-interressantes/ Share on other sites More sharing options...
Droidz 2738 Posted January 2, 2016 Share Posted January 2, 2016 Salut, 1/ IsSpellUsable utilises: http://wow.gamepedia.com/API_IsUsableSpell et http://wow.gamepedia.com/API_GetSpellCooldown (Quand le GCD est activé IsSpellUsable r'envoi "false"). 2/ Avec un code de ce genre: var spell1 = new Spell("spell1"); // sort qui canalise var spell2 = new Spell("Spell2"); // sort a lancer pendant que sort1 canalise spell1.Launch(false, false); // stopMove = false, waitIsCast = false spell2.Launch(true, true, true); // stopMove = true, waitIsCast = true, ignoreIfCast = true Link to comment https://wrobot.eu/forums/topic/2558-2-questions-interressantes/#findComment-11688 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