RoM bot
- Administrator
- Site Admin
- Posts: 5329
- Joined: Sat Jan 05, 2008 4:21 pm
Re: RoM bot
RoM bot version 2.26 for game version 1823 is up for grabs. There are no real changes other than the addresses changing. For those of you who don't want to re-install the scripts again, just change your staticcharbase_address to 0x87AD90.
-
- Posts: 8
- Joined: Wed Mar 11, 2009 1:48 am
Re: RoM bot
I'm still getting no love, still says wrong address and I can't figure out how to make it right..I've reinstalled everything..
Error:
Code:
Error:

Code:

- Administrator
- Site Admin
- Posts: 5329
- Joined: Sat Jan 05, 2008 4:21 pm
Re: RoM bot
Then use one of the other 3 addresses given after the --. One of them should work. If not, reinstall the game and repatch.
Re: RoM bot
Thank you, the new version is working good.
Wanted to ask ... i made a small looping script to automatically revive me, what i need it to find a way to press DEL as soon as i'm alive again to continue on with botting. Can you please give me a hint?
Wanted to ask ... i made a small looping script to automatically revive me, what i need it to find a way to press DEL as soon as i'm alive again to continue on with botting. Can you please give me a hint?
- Administrator
- Site Admin
- Posts: 5329
- Joined: Sat Jan 05, 2008 4:21 pm
Re: RoM bot
kokowiki wrote:Thank you, the new version is working good.
Wanted to ask ... i made a small looping script to automatically revive me, what i need it to find a way to press DEL as soon as i'm alive again to continue on with botting. Can you please give me a hint?
Code: Select all
keyboardPress(key.VK_DELETE);
Re: RoM bot
I did this instead ... (i think it's easier, at least for me) ...
Code: Select all
local sk = startKey;
if( getVersion() >= 100 ) then sk = getStartKey(); end;
cprintf(cli.red, "You have died... Sorry.\n");
-- printf("Script paused until you revive yourself. Press %s when you\'re ready to continue.\n", sk)
logMessage("Player died.\n");
-- stopPE();
end
- Administrator
- Site Admin
- Posts: 5329
- Joined: Sat Jan 05, 2008 4:21 pm
Re: RoM bot
That works, too. You won't need to do that in the next version, as you can just disable the pausing on death in your profile. You will be able to just put a short wait in your onDeath event in profile, and then call your resurrect macro.
Re: RoM bot
Thanks. The reviving function is called 'AcceptResurrect()', if anyone needs it.Administrator wrote:That works, too. You won't need to do that in the next version, as you can just disable the pausing on death in your profile. You will be able to just put a short wait in your onDeath event in profile, and then call your resurrect macro.
Also, I use an addon called AutoCombat along with your bot script, since it's a bit more advanced when it comes to AFK combat, hehe. Anyway, i just remove all the skills from my profile, and modify that addon to run in a loop without ending when the mob dies like it does. The result is uber botting.
Thank you for this great script.
note: I noticed some people keep rotating in circles and pull mobs, are they using this script?
Re: RoM bot
I have a slight problem with the revive-system i made; after i'm dead, and revived, errors are spammed in the MicroMacro window, and i keep rotating around myself in-game! To fix it, i have to press CTRL+L, and then run the script again, i don't have to restart the game though.
Any idea why that happens? If you need a screenshot of the error please tell me.
EDIT: Here's a screenie ...

Any idea why that happens? If you need a screenshot of the error please tell me.
EDIT: Here's a screenie ...

Re: RoM bot
Hey,
i have a big Problem. I have a Mage28/Priest15 and my XML is this:
The problem is that sometimes the bot does not see mobs right in front of him. It stupidly runs into it. The mob is near enough for TAB. I tried it several times.
Is there a solution?
i have a big Problem. I have a Mage28/Priest15 and my XML is this:
<profile>
<options>
<option name="HP_LOW" value="85" />
<option name="MP_LOW_POTION" value="50" />
<option name="HP_LOW_POTION" value="40" />
<option name="COMBAT_TYPE" value="ranged" />
<option name="COMBAT_DISTANCE" value="225" />
<option name="ANTI_KS" value="true" />
<option name="WAYPOINTS" value="test.xml" />
<option name="LOOT" value="true" />
<option name="LOOT_TIME" value="2000" />
<option name="ENERGY_STORAGE_1" value="mana" />
<option name="ENERGY_STORAGE_2" value="none" />
<option name="POTION_COOLDOWN" value="15" />
<option name="MAX_FIGHT_TIME" value="30" />
<option name="DOT_PERCENT" value="90" />
</options>
<friends>
<friend name="MyOtherCharacter1" />
<friend name="MyOtherCharacter2" />
</friends>
<hotkeys>
<hotkey name="HP_POTION" key="VK_MINUS" modifier="" />
<hotkey name="MP_POTION" key="VK_EQUAL" modifier="" />
<hotkey name="ATTACK" key="VK_0" modifier="" />
</hotkeys>
<skills>
<skill name="MAGE_FLAME" level="28" hotkey="VK_1" modifier="" />
<skill name="MAGE_FIREBALL" level="28" hotkey="VK_2" modifier="" />
<skill name="PRIEST_URGENT_HEAL" level="1" hotkey="VK_4" modifer="" />
<skill name="PRIEST_REGENERATE" level="1" hotkey="VK_5" modifier="" />
</skills>
<onDeath>
-- Additional Lua code to execute on death
</onDeath>
<onLeaveCombat>
-- Additional Lua code to execute after killing an enemy
</onLeaveCombat>
<onSkillCast>
-- Additional Lua code to execute when casting a skill
-- Note: arg1 contains the skill being used.
-- i.e. arg1.Name will be the name of the skill being cast.
</onSkillCast>
</profile>
The problem is that sometimes the bot does not see mobs right in front of him. It stupidly runs into it. The mob is near enough for TAB. I tried it several times.
Is there a solution?
- Administrator
- Site Admin
- Posts: 5329
- Joined: Sat Jan 05, 2008 4:21 pm
Re: RoM bot
The pointers seem to change sometimes when moving to new zones or dieing. Hopefully in the next version, I'll have a system to automatically detect the change and look up the new pointers.I have a slight problem with the revive-system i made; after i'm dead, and revived, errors are spammed in the MicroMacro window, and i keep rotating around myself in-game! To fix it, i have to press CTRL+L, and then run the script again, i don't have to restart the game though.
Any idea why that happens? If you need a screenshot of the error please tell me.
No, it's being worked on.The problem is that sometimes the bot does not see mobs right in front of him. It stupidly runs into it. The mob is near enough for TAB. I tried it several times.
Is there a solution?
Re: RoM bot
i get this error when i try to run a script "d:\micromacro\scripts\howelingmountainsl10.xml:1: unexpected symbol near '<'"
please help
please help

- Administrator
- Site Admin
- Posts: 5329
- Joined: Sat Jan 05, 2008 4:21 pm
Re: RoM bot
The real question is, why are you trying to run a waypoint XML file rather than a script?frankie wrote:i get this error when i try to run a script "d:\micromacro\scripts\howelingmountainsl10.xml:1: unexpected symbol near '<'"
please help
Re: RoM bot
Administrator wrote:The real question is, why are you trying to run a waypoint XML file rather than a script?frankie wrote:i get this error when i try to run a script "d:\micromacro\scripts\howelingmountainsl10.xml:1: unexpected symbol near '<'"
please help
i were trying to run the profile neway found the problem i didnt have MicroMacro 1.0 but .99
thanks for the help neway =)
running like a charm on a priest
Re: RoM bot
I think we should share our waypoints.xml. Someone could open a thread so we can put in our Waypoints with additional information. (lvl, starting point,etc.)
Re: RoM bot
I was hope i will be botting tommorow.I have error that i dont know how to fix
Thanks in foward.
Thanks in foward.
Re: RoM bot

edit: darn my download just stoped and iv been waiting 2hrs -.-



Re: RoM bot
Anyone thinking about getting this bot should definitely get it!
It is by far the best bot there is currently for RoM (unless there are better private bots) that I have found after a lot of searching.
The only other bot I have found that is comparable is R Bot and that don't even have waypoints (unless you pay).
It is by far the best bot there is currently for RoM (unless there are better private bots) that I have found after a lot of searching.
The only other bot I have found that is comparable is R Bot and that don't even have waypoints (unless you pay).
Re: RoM bot
Pls help,i get around 15 errors invalid memory acess when i try to crate path



- Administrator
- Site Admin
- Posts: 5329
- Joined: Sat Jan 05, 2008 4:21 pm
Re: RoM bot
Have you tried changing the staticcharbase_address in addresses.lua as advised?lazeta10 wrote:Pls help,i get around 15 errors invalid memory acess when i try to crate path![]()
Who is online
Users browsing this forum: Bing [Bot] and 1 guest