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.

141

Tuesday, February 10th 2009, 2:21am

anyone know how to produce an icon (like a buff) on the top-right of the screen when your macro has been enabled?

142

Wednesday, February 11th 2009, 12:22am

1ke the only way i can tell ya how to put a buff any where on your screen with my limited knowledge is... mabey make 1 of the 4 hotbar options we have availibe for us.
This process would go like this once your character is loaded up :

-press esc
-click interface settings
-on interface settings click top middle tab(Quick bar)
-than enable a hot bar you would like ( main hotbar is already enabled)
-on your new enabled hotbar u will see 2 slide bars, you can customize them from rows to lenghts.
-so now what u can do is add w/e skill from skill bar or a macro you made, and than slide bar to only show 1 or 2 or 3 w/e slots you want showing.
-so now you have 1 buff showing or 2,3 w/e, what u do to move it on your screen now is to put mouse cursor on the corner of it and hold shift + right mouse button and drag it to where you would like it.

143

Wednesday, February 11th 2009, 5:18pm

Hello,

I am trying to bind an action to my mouse button and I've been told I could do that with a macro. Someone could tell me how to do that? I'm new to the world of macroing! :-)

Would "/cast [button:4,target=player] Regenerate;" do the trick?

Thanks

144

Monday, February 16th 2009, 9:13pm

Other target data

How do you find a target's guild? And is there a way to check your current location with a macro? Like how the map shows the title of where your at.

145

Friday, February 20th 2009, 11:09am

need Macro to Auto-use mana pot

I have tried many different approaches and all fail.
I need to know the way to get actual mana of the toon and then to use mana pot if needed.

any help would be great.

146

Saturday, February 21st 2009, 1:15am

/script if(UnitMana("player")/UnitMaxMana("player")<.5) then UseAction(X);end

Note: if your mana is on the second bar, you will need to replace the above with UnitSkill and UnitMaxSkill.

147

Saturday, February 21st 2009, 7:22am

I am trying my best to create some macros but it is not allowing me to put more than 36 characters in the macro box. Any thing Im doing wrong?

148

Sunday, February 22nd 2009, 11:43am

I seek a makro like following:

/cast buff
/wait 60
/wait 60
/abort current cast
/cast buff

Is there such an abort/cancel command for casts?
Because i want that this buff is up all the time.
Without "abort" buffcast will not be executed if player is already casting stuff. :(

Gnarly

Beginner

  • "Gnarly" has been banned

Posts: 1

Location: Ontario Canada

Occupation: computer consultant, ba in behavioural psychology

  • Send private message

149

Tuesday, February 24th 2009, 10:21pm

Can someone post a macro that will take an item off and put it in a certain bag slot please?

can /unequip be used like /equip can?

150

Friday, February 27th 2009, 7:52pm

Quoted from "Monsterdaddy;38862"

/script if(UnitMana("player")/UnitMaxMana("player")<.5) then UseAction(X);end

Note: if your mana is on the second bar, you will need to replace the above with UnitSkill and UnitMaxSkill.



Thank you!!!

151

Monday, March 2nd 2009, 8:08am

I was wondering if there was a way to change the zoom, my scroll on my mouse doesnt work and i cant find anyway to change the keys in the keybindings.

152

Friday, March 6th 2009, 2:44pm

Has anyone figured out how to make mouselook toggle-able? I want to play RoM on my gamepad :P

153

Monday, March 23rd 2009, 8:14am

Quoted from "Monsterdaddy;32270"


Question, is there a UnitRage, UnitEnergy, UnitConcentration??? So I can launch combos only when I know I have the total amount needed for the full combo?


I also have problem with this UnitRage check, it doesn't seem to exist itself or any variations. I someone can give us a clue on this, I'd be gratefull.

154

Tuesday, March 31st 2009, 11:46pm

Posted in the wrong area.

155

Wednesday, April 1st 2009, 4:06pm

Example of Modifier Macro

Just an example for those of us used to using the [mod:X][nomod] construct from WoW to assign 4 actions to a single button.

This is using Priest spells as an example. The conditions and actions could be changed obvisouly. This is just to show how to assign alt,ctrl,shift, and no modifier to 1 key.

One note, the WoW API listed IsControlKeyDown. RoM uses IsCtrlKeyDown. I dont know if this is a game related difference or if the wow api site was just wrong.

Source code

1
/script if (IsShiftKeyDown()) then CastSpellByName(”Rising Tide”); elseif (IsAltKeyDown()) then CastSpellByName(”Bone Chill”); elseif (IsCtrlKeyDown()) then CastSpellByName(”Ice Fog”); else CastSpellByName(”Chain of Light”); end;

156

Thursday, April 2nd 2009, 1:39am

Is there a way to target a player using the Player's Name??

I've tried /target PlayerName; and /script TargetUnit("PlayerName"); but neither work.

thanks

157

Thursday, April 2nd 2009, 2:57am

Quoted from "pipgup209;68704"

Just an example for those of us used to using the [mod:X][nomod] construct from WoW to assign 4 actions to a single button.

This is using Priest spells as an example. The conditions and actions could be changed obvisouly. This is just to show how to assign alt,ctrl,shift, and no modifier to 1 key.

One note, the WoW API listed IsControlKeyDown. RoM uses IsCtrlKeyDown. I dont know if this is a game related difference or if the wow api site was just wrong.

Source code

1
/script if (IsShiftKeyDown()) then CastSpellByName(&#8221;Rising Tide&#8221;); elseif (IsAltKeyDown()) then CastSpellByName(&#8221;Bone Chill&#8221;); elseif (IsCtrlKeyDown()) then CastSpellByName(&#8221;Ice Fog&#8221;); else CastSpellByName(&#8221;Chain of Light&#8221;); end;


pipgup209 your macro isnt working.

Source code

1
/script if isAltKeyDown() then useAction() else useAction() end 


is someone can help me please ?

158

Thursday, April 2nd 2009, 6:58pm

is there a macro to move to a certain coordinate?

like example in obsidian city. i click 1 button it moves me to the AH or the House.

159

Saturday, April 4th 2009, 4:20pm

Can some1 help with this

how do I end/cancel a chain of repeating macro?

eg.

/script UseAction (1)
/wait 2
/script if (UnitHealth("target")>0)then UseAction(1); end;

Trip

Beginner

Posts: 1

Location: California

Occupation: school

  • Send private message

160

Monday, April 6th 2009, 1:07am

anyone know a macro command for next nearest enemy target?