Page 1 of 1

Newbie needs a script for SWTOR

Posted: 15 Jul 2017, 20:58
by Wookieschnitzel
I am new here. Would anyone be willing to make a script for star wars the old republic that would make space bar rapid fire while pressed? I tried a spacebar script from the forum's but it won't work in game

Re: Newbie needs a script for SWTOR

Posted: 18 Aug 2020, 05:00
by Sneakysnail
Can you show me the script that you used? I need a frame of reference to find out what the problem might be.

Re: Newbie needs a script for SWTOR

Posted: 18 Aug 2020, 05:32
by Epialis
Hit the space bar to activate the repeat hits on space bar. Then hit space bar again to stop it.

Code: Select all

#maxthreadsperhotkey 2 ;*1
$space:: ;2
 {
   toggle:=!toggle ;*3

   while, toggle ;*4
    {
	  send, {space} ;*5
	  sleep, 500 ;*6
    }
}
return ;*7

end::exitapp ;*8
You can change the time to make it go faster.