RoMBot - micromacro problem

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
jboggan
Posts: 55
Joined: Sun Jun 05, 2011 3:18 am

RoMBot - micromacro problem

#1 Post by jboggan »

can i change the micromacro hotkeys for ingame waypoint creation. im running on a hp g62 and there is no numpad on this notebook. neither a FN option for numpad
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: RoMBot - micromacro problem

#2 Post by lisa »

you can try opening rom/settings.xml and adding into that file where the hotkeys are

Code: Select all

		<hotkey description="STOP_BOT" key="VK_J" modifier="" />
		<hotkey description="START_BOT" key="VK_K" modifier="" />

Obviously use keys you want, not J or K or the bot will start and stop constantly if you use the keyboard for anything else.

If that doesn't work then you may have to edit the settings.lua file itself

open the file
rom/settings.lua
near the top you will see

Code: Select all

		START_BOT = {key = _G.key.VK_DELETE, modifier = nil},
		STOP_BOT = {key = _G.key.VK_END, modifier = nil}
change the DELETE and END to the keys you want.
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
jboggan
Posts: 55
Joined: Sun Jun 05, 2011 3:18 am

Re: RoMBot - micromacro problem

#3 Post by jboggan »

thank you i will try this
jboggan
Posts: 55
Joined: Sun Jun 05, 2011 3:18 am

Re: RoMBot - micromacro problem

#4 Post by jboggan »

ok that didnt work for wat i needed.
i found the hotkeys file for creatpath.lua and i edited it to wat i wanted the keys to be since i cant use numpad. but after i saved it and then ran rom/createpath.lua profile:default. it still pops up showing the hot keys as numpad keys
kanta
Posts: 424
Joined: Thu Nov 11, 2010 4:08 pm

Re: RoMBot - micromacro problem

#5 Post by kanta »

Call me paranoid, but I wouldn't advertise my user/character name and server here. That's just asking for a ban on RoM. Frogster looks for such sites and tries to catch people. In fact, Rompros was shut down for a little while because Frogster found them. And yes, I know who you are ;)
Scout/Knight/Rogue 70/66/66
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: RoMBot - micromacro problem

#6 Post by lisa »

Weird I totally missed where you said waypoint creation, not like me.

Well anyway open up createpath.lua and you should see this near the top

Code: Select all

wpKey = key.VK_NUMPAD1;			-- insert a movement point
harvKey = key.VK_NUMPAD2;		-- insert a harvest point
saveKey = key.VK_NUMPAD3;		-- save the waypoints
merchantKey = key.VK_NUMPAD4;	-- target merchant, repair and buy stuff
targetNPCKey = key.VK_NUMPAD5;	-- target NPC and open dialog waypoint
choiceOptionKey = key.VK_NUMPAD6; 	-- insert choiceOption
mouseClickKey = key.VK_NUMPAD7; -- Save MouseClick
restartKey = key.VK_NUMPAD9;	-- restart waypoints script
resetKey = key.VK_NUMPAD8;	-- restart waypoints script and discard changes
codeKey = key.VK_NUMPAD0;		-- add comment to last WP.
targetObjKey = key.VK_DECIMAL;	-- target an object and action it.
You might need to use all of the functions of create path but for testing purposes you can just change wpKey and saveKey

Code: Select all

wpKey = key.VK_J;
saveKey = key.VK_Y;
The print out on MM screen will still say to use numpad 1 and numpad 3 but that is because that is just a print message set in language and doesn't affect how the bot actually runs.
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
jboggan
Posts: 55
Joined: Sun Jun 05, 2011 3:18 am

Re: RoMBot - micromacro problem

#7 Post by jboggan »

i fixed it completely and it also shows up on my MM screen as the keys i changed

i dont use TortoiseSVN i use SmartSVN and it updates and allows me to edit the .xml and the .lua better than tortoise
Post Reply