Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

How to make a script for Blade and soul Kung Fu Master


  • Please log in to reply
1 reply to this topic
legend2002
  • Members
  • 1 posts
  • Last active:
  • Joined: 08 May 2015

now i just installed i program ,I has read tutorial in program but i so confuse i don't know how to make a script 

then i came here to ask someone help me to make this script to me

 

when i use[hold] Left mouse = use Left mouse wait 50 ms then press 2 repeat [i want to hold left mouse and it's can do that command]



floodindahood
  • Members
  • 383 posts
  • Last active: Apr 20 2018 01:45 PM
  • Joined: 21 Oct 2011

Not entirely sure on what your goal is but, maybe this would help.

lbutton::
send, {lbutton down}
while(GetKeyState("LButton","P")) {
   sleep, 50
   send, 2
}
send, {lbutton up}
return