Page 1 of 1

Spamming 1 button only

Posted: Sun Mar 20, 2011 11:33 am
by solarium
Hi,

i did some tries but didn't succeed to do so.

I would like to use the program to spam 1 button only of my char.

I prefer him not to move.

Is it doable ? If so, how ?

Thanks in advance for you help

Re: Spamming 1 button only

Posted: Sun Mar 20, 2011 2:31 pm
by Giram
Maybe something like this? After running waypoint it starts spamming x in this example. Just change that to key you want to spam.

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints type="TRAVEL">
<onLoad>

	while (true) do
		keyboardPress( key.VK_X );
	end
	
</onLoad>
</waypoints>

Re: Spamming 1 button only

Posted: Mon Mar 21, 2011 3:50 am
by solarium
works perfect.

I'm noob, thank you very much