RoMBot - micromacro problem
RoMBot - micromacro problem
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
Re: RoMBot - micromacro problem
you can try opening rom/settings.xml and adding into that file where the hotkeys are
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
change the DELETE and END to the keys you want.
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}
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
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
Re: RoMBot - micromacro problem
thank you i will try this
Re: RoMBot - micromacro problem
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
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
Re: RoMBot - micromacro problem
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
Re: RoMBot - micromacro problem
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
You might need to use all of the functions of create path but for testing purposes you can just change wpKey and saveKey
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.
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.
Code: Select all
wpKey = key.VK_J;
saveKey = key.VK_Y;
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
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
Re: RoMBot - micromacro problem
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
i dont use TortoiseSVN i use SmartSVN and it updates and allows me to edit the .xml and the .lua better than tortoise