Page 1 of 1

Changing the hotkey to pause script?

Posted: Wed Feb 11, 2009 4:17 pm
by Kizami
I was just wondering if there was a way to change the hotkey that paused and restarted the bot for RoM.

It's currently on "end" and I find that quite a useful button. Sometimes i'm botting in the background, press end without even realising and load up RoM with a dead character because of it.

Can I change it to "pause/break" or something instead?

Kiz

Re: Changing the hotkey to pause script?

Posted: Wed Feb 11, 2009 5:21 pm
by Administrator
bot.lua, line 11

Code: Select all

if( getVersion() < 100 ) then
	startKey = key.VK_DELETE;
	stopKey = key.VK_END;
else
	setStartKey(key.VK_DELETE);
	setStopKey(key.VK_END);
end

Re: Changing the hotkey to pause script?

Posted: Thu Feb 12, 2009 8:41 am
by Kizami
Thanks :)

Kiz