Hi there,
i have changed the createpath.lua to be able to insert quest accept and complete commad.
It also inserts a one second break after target a npc and complete or accept a quest.
note for use:
if there is one quest to accept and under it one to complete then you must
use 1 instead of 2 because it scans only for completed quests.
Is there a way to make the bot.lua autostarting after executing?
And a command for rename the attached window with a waypoint?
Thank you in advance
Changed createpath.lua for quests and some questions
Changed createpath.lua for quests and some questions
- Attachments
-
- questcreatepath.rar
- note for use:
if there is one quest to accept and under it one to complete then you must
use 1 instead of 2 because it scans only for completed quests.
----only german translations for the new options are given please add youreself - (37.65 KiB) Downloaded 143 times
Re: Changed createpath.lua for quests and some questions
Can't someone help me?
I only want the bot.lua to autostart after having executed in MicroMacro.
So that i don't have to press the Del key, it can loose the ability for multiclients.
I need this because i wrote a tool which is closing RoM and MicroMacro after loosing connection to the gameserver, and start it again.
Please help me !
thanks in advance
I only want the bot.lua to autostart after having executed in MicroMacro.
So that i don't have to press the Del key, it can loose the ability for multiclients.
I need this because i wrote a tool which is closing RoM and MicroMacro after loosing connection to the gameserver, and start it again.
Please help me !
thanks in advance
- Administrator
- Site Admin
- Posts: 5342
- Joined: Sat Jan 05, 2008 4:21 pm
Re: Changed createpath.lua for quests and some questions
It would not work with multiclient, no. You'd have to disable that first. Open functions.lua, go to line 70. You'll see this:
Below that line, add this:
Now, open bot.lua, and go all the way to the bottom. You'll be changing the last line to this:
Code: Select all
local windowList = findWindowList("Runes of Magic", "Radiant Arcana");
Code: Select all
if( #windowList > 0 ) then
return windowList[1];
end
Code: Select all
startMacro(main, true);
Re: Changed createpath.lua for quests and some questions
Thank you very much! 