Page 1 of 1

Need Some help please

Posted: Sun Jun 24, 2012 11:03 pm
by Tempest
Having some issues with bot picking up the same Quest Public and Regular Quest is there away to prevent this?

also how can i stand up after changing channels and prevent my bot from looking around? i just want it to stand at a waypoint

Re: Need Some help please

Posted: Sat Jul 21, 2012 6:35 pm
by kkulesza
Tempest wrote:Having some issues with bot picking up the same Quest Public and Regular Quest is there away to prevent this?
How you do it?
What do you want?
What don't you want?
Tempest wrote:how can i stand up after changing channels and prevent my bot from looking around? i just want it to stand at a waypoint

Code: Select all

--get up
	    keyboardHold(key.VK_W);
		rest(100);
		keyboardRelease(key.VK_W);

Re: Need Some help please

Posted: Sat Jul 21, 2012 7:59 pm
by lisa
you can do a keypress aswell, less code =)

Code: Select all

keyboardPress(key.VK_W);
Assuming W is a movement key, it is forward by default.