|
Post by Firefly on Aug 29, 2013 14:41:05 GMT 1
General Macros
What does it do: Use the cast spell on 2 trinkets at the same time. Code:
/run SpellStopCasting() /script UseInventoryItem(13) /run SpellStopCasting() /script UseInventoryItem(14) /run SpellStopCasting() Thanks to Jugler from Vanillagaming
----
What does it do: Code:
Code here
----
What does it do: Code:
Code here
----
What does it do: Code:
Code here
----
What does it do: Code:
Code here
|
|
|
Post by juglervg on Aug 30, 2013 13:01:56 GMT 1
Use 2x "Use:..." trinkets at once! (eg: Earthstrike, Jom Gabbar)
/run SpellStopCasting() /script UseInventoryItem(13) /run SpellStopCasting() /script UseInventoryItem(14) /run SpellStopCasting()
Type this into one macro, and when you want to use it, do it like you spam something in a fast way. You need to hit the macro button fastly 2 times and then both will be used, otherwise it doesn't work.
I hope it'll help!
|
|
|
Post by Firefly on Aug 30, 2013 13:11:20 GMT 1
Use 2x "Use:..." trinkets at once! (eg: Earthstrike, Jom Gabbar) /run SpellStopCasting() /script UseInventoryItem(13) /run SpellStopCasting() /script UseInventoryItem(14) /run SpellStopCasting() Type this into one macro, and when you want to use it, do it like you spam something in a fast way. You need to hit the macro button fastly 2 times and then both will be used, otherwise it doesn't work. I hope it'll help! Thank you for your contribution!
|
|
|
Post by cherryxo on Aug 30, 2013 16:48:24 GMT 1
Hi, I'm cherryxo from Archangel on wow-one, I've played around a fair bit with scripts while i was playing on emerald dream but i am in no way an expert. This is just my humble attempt to contribute Modifiers
ALT/script if ( IsAltKeyDown() ) then DoSomething(); end CTRL/script if ( IsControlKeyDown() ) then DoSomething(); end SHIFT/script if ( IsAltKeyDown() ) then DoSomething(); end An example might look like this: /script if ( IsShiftKeyDown() ) then CastSpellByName("Greater Heal") else CastSpellByName("Flash Heal"); end Cred to Kea @ wow-one for the modifiers.Starting simple. To cast a spell you can use this function:/script CastSpellByName("Name of spell(Rank number)"); An example of this could be/script CastSpellByName("Healing Touch(Rank 4)"); To stop a cast you can use this function /script SpellStopCasting()
This is extremely usefull for healers, an example of a script that incorporates this would be/script SpellStopCasting() CastSpellByName("Healing Touch(Rank 4)"); A macro that you can use to heal the target of a target could look like this./script SpellStopCasting() CastSpellByName("Lesser Heal") SpellTargetUnit("targettarget")
This will stop the cast if you are currently casting and heal the target of your target.
If you wanna add on this to be able to heal yourself with the same key then then it could look like thisif (IsAltKeyDown()) then CastSpellByName("Lesser Heal") SpellTargetUnit("player") else CastSpellByName("Lesser Heal") SpellTargetUnit("targettarget") end This would heal urself if the ALT key is pushed down and targetoftarget if it´s not. unfortunately i have not found a way to make this work with auto self cast enabled.
As i said, I'm no pro at this so there might be better ways of doing it but these have worked great for me.
If there is interest i could add some more and ofc comment if there is something wrong
|
|
|
Post by Impmyride on Aug 30, 2013 16:53:37 GMT 1
Resets an instance
/script ResetInstances() Retrieves corpse if it's underground/unreachable.
/script RetrieveCorpse()
|
|
|
Post by Firefly on Aug 30, 2013 17:20:53 GMT 1
Hi, I'm cherryxo from Archangel on wow-one, I've played around a fair bit with scripts while i was playing on emerald dream but i am in no way an expert. This is just my humble attempt to contribute Modifiers
ALT/script if ( IsAltKeyDown() ) then DoSomething(); end CTRL/script if ( IsControlKeyDown() ) then DoSomething(); end SHIFT/script if ( IsAltKeyDown() ) then DoSomething(); end An example might look like this: /script if ( IsShiftKeyDown() ) then CastSpellByName("Greater Heal") else CastSpellByName("Flash Heal"); end Cred to Kea @ wow-one for the modifiers.Starting simple. To cast a spell you can use this function:/script CastSpellByName("Name of spell(Rank number)"); An example of this could be/script CastSpellByName("Healing Touch(Rank 4)"); To stop a cast you can use this function /script SpellStopCasting()
This is extremely usefull for healers, an example of a script that incorporates this would be/script SpellStopCasting() CastSpellByName("Healing Touch(Rank 4)"); A macro that you can use to heal the target of a target could look like this./script SpellStopCasting() CastSpellByName("Lesser Heal") SpellTargetUnit("targettarget")
This will stop the cast if you are currently casting and heal the target of your target.
If you wanna add on this to be able to heal yourself with the same key then then it could look like thisif (IsAltKeyDown()) then CastSpellByName("Lesser Heal") SpellTargetUnit("player") else CastSpellByName("Lesser Heal") SpellTargetUnit("targettarget") end This would heal urself if the ALT key is pushed down and targetoftarget if it´s not. unfortunately i have not found a way to make this work with auto self cast enabled.
As i said, I'm no pro at this so there might be better ways of doing it but these have worked great for me.
If there is interest i could add some more and ofc comment if there is something wrong I'll add them all as soon as I can, thanks for the contribution! On a side note: Glad to see a WoW-One player here!
|
|
|
Post by cherryxo on Aug 31, 2013 1:40:13 GMT 1
Hi, I'm cherryxo from Archangel on wow-one, I've played around a fair bit with scripts while i was playing on emerald dream but i am in no way an expert. This is just my humble attempt to contribute Modifiers
ALT/script if ( IsAltKeyDown() ) then DoSomething(); end CTRL/script if ( IsControlKeyDown() ) then DoSomething(); end SHIFT/script if ( IsAltKeyDown() ) then DoSomething(); end An example might look like this: /script if ( IsShiftKeyDown() ) then CastSpellByName("Greater Heal") else CastSpellByName("Flash Heal"); end Cred to Kea @ wow-one for the modifiers.Starting simple. To cast a spell you can use this function:/script CastSpellByName("Name of spell(Rank number)"); An example of this could be/script CastSpellByName("Healing Touch(Rank 4)"); To stop a cast you can use this function /script SpellStopCasting()
This is extremely usefull for healers, an example of a script that incorporates this would be/script SpellStopCasting() CastSpellByName("Healing Touch(Rank 4)"); A macro that you can use to heal the target of a target could look like this./script SpellStopCasting() CastSpellByName("Lesser Heal") SpellTargetUnit("targettarget")
This will stop the cast if you are currently casting and heal the target of your target.
If you wanna add on this to be able to heal yourself with the same key then then it could look like thisif (IsAltKeyDown()) then CastSpellByName("Lesser Heal") SpellTargetUnit("player") else CastSpellByName("Lesser Heal") SpellTargetUnit("player") end This would heal urself if the ALT key is pushed down and targetoftarget if it´s not. unfortunately i have not found a way to make this work with auto self cast enabled.
As i said, I'm no pro at this so there might be better ways of doing it but these have worked great for me.
If there is interest i could add some more and ofc comment if there is something wrong
|
|
|
Post by EllPhacle on Nov 16, 2019 0:20:23 GMT 1
Nexium Discount Prices <a href=http://cialibuy.com>tadalafil cialis from india</a> Pharmacy Online 365 Biaxin 500 Mg Amoxil 500 Mg
|
|