You are not logged in.

Applications: [GameMaster: OPEN] | [Volunteer Testers: OPEN]


This forum will be permanently shut down on Friday 13.07.2018
Please copy or save all important information from old forum before they will be deactivated
We have moved to new board. https://forum.runesofmagic.gameforge.com/Come join us.

1

Saturday, November 28th 2015, 6:33pm

Thunderstorm macro

Macro I use:

Source code

1
2
3
4
5
/cast Thunderstorm
/wait 0.1
/cast Thunderstorm
/script SpellTargetUnit()
 


I have noticed that if I spam that macro, my toon moves a couple of steps in a particular direction (doesn't matter where I TS, the direction is always the same) when the GCD triggers.

I was just curious if anyone know why or have had this happen to them.

the fix was simple, changed the macro a bit:

Source code

1
2
3
4
/cast Thunderstorm
/wait 0.1
/script SpellTargetUnit()
 

2

Saturday, November 28th 2015, 11:46pm

Well the second cast Thunderstorm in the first macro was unnecessary, which you fixed with the second one. If you make a macro of

Source code

1
2
/cast Thunderstorm
/script SpellTargetUnit()

it will send you in that direction every time. However I do not know why it's always that direction, must just be the default direction spells are tried to cast :P