Anyone know what the run function is for rombot ?

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
newton666
Posts: 81
Joined: Fri Oct 22, 2010 3:16 pm

Anyone know what the run function is for rombot ?

#1 Post by newton666 »

hi, anyone know what the run fuction is ?
everything works fine aprt from the Run("ScoutRogue()");
Ingame the macro command is" /run ScoutRogue() "and this will start my DIYCE macro.

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints>
   <onLoad>   

while(true) do

player:lootAll();
RoMScript("FollowUnit('party1');");
RoMScript("AssistUnit('party1');");
Run("ScoutRogue()");

end

   </onLoad>

</waypoints>

User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Anyone know what the run function is for rombot ?

#2 Post by rock5 »

I always thought run and script were basically the same thing. Are you sure just using RoMScript doesn't work?

Code: Select all

RoMScript("ScoutRogue()");
If not, I recently added a function for slash commands that should work.

Code: Select all

SlashCommand("run ScoutRogue()")
-- or
SlashCommand("/run ScoutRogue()")
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan
Post Reply