Page 1 of 1

Anyone know what the run function is for rombot ?

Posted: Thu Jul 28, 2011 2:59 am
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>


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

Posted: Thu Jul 28, 2011 3:19 am
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()")