Quoted from "ReagenL;306135"
Is there a macro to do a range check.
Like if a monster is in a certain range run so and so script, if it isnt, it doesnt do anything?
|
|
Source code |
1 |
/run if GetActionUsable(5) then UseAction(5) end |
Quoted from "ArthuX;316271"
I want to simply create a script that casts blind spot if usable and else shadowstab >.<
i put my Blind spot on slot 61 and shadow stab in slot 62
it looked like this
/script if GetActionUsable(61) then UseAction(61) elseif GetActionUsable(62) then
UseAction(61);end
but it doesnt work >.< tried also with else instead of elseif....
a lil help over here dont think its such a complicated matter but... im missing something
any help is greatly appreciated
Quoted from "ArthuX;316334"
yup was a mistake then is there a function for evaluating the behind the target event? this is just to get one extra slot on my main action bar since shadowstab combo and blind spot combo are alike also if you keep moving in circles it triggers the event some times... if the turning speed of the target aint that fast
Quoted from "ArthuX;316334"
... oh btw i was also lookin for a function to evaluate when the target is casting to use throat attack any thoughts on that?
|
|
Source code |
1 |
/run local tspell,ttime,telapsed = UnitCastingTime("target"); if (tspell ~= nil) and (ttime >= 1) and (ttime - telapsed > 0.5) then CastSpellByName("Throat Attack") end
|
Quoted from "Yottsu;320141"
Now... I wish to be able to see numbers, not percentages, when dealing with a monster... How would I go about doing this?
Quoted from "rawnblaed;330037"
I put the first code into the in-game macro creator in the system help just as it is written. It didnt work of course. Having read a few of the early posts on this thread i know i need a /. Do i need a number for a hotkey or some action like thunder sword in between the parenthesis? What else do i need to just get toon to do the acton? Help.
|
|
Source code |
1 |
/run TgtLowestHPNotAggro() |
Quoted from "rawnblaed;330317"
So i have tried
/script TgtLowestHPNotAggro ();
and
/run TGTLowestHPNotAggro ();
neither works.
To target and attack you right click on the list. Anyway i am still confused. Any other suggestions for a complete macro would be helpful.
Quoted from "rawnblaed;330317"
I also seem to be unable to type in more than 30 characters in the macro command line in the system help.