Cbug Script

SeKT0r

Member
Joined
Aug 30, 2016
Messages
10
Reaction score
0
Guys, all i want is a faster cbug script, i use to have one really fast but i lost it, it looks like this 

LALT::

    While GetKeyState("LALT", "P")
    {
       Click down Right
       sleep 40
       click down Left
       sleep 20
       click up Right
       click up Left
       sleep 5
       SendInput {c down}
       sleep 40
       SendInput {c up}
       sleep 20
    }
    return

I Tried my self , but i failed :c ,  i want it really faster ,thx
 

not490

Well-known member
Joined
Feb 8, 2014
Messages
438
Reaction score
4
SeKT0r said:
Guys, all i want is a faster cbug script, i use to have one really fast but i lost it, it looks like this 

LALT::

    While GetKeyState("LALT", "P")
    {
       Click down Right
       sleep 40
       click down Left
       sleep 20
       click up Right
       click up Left
       sleep 5
       SendInput {c down}
       sleep 40
       SendInput {c up}
       sleep 20
    }
    return

I Tried my self , but i failed :c ,  i want it really faster ,thx
What scripting language this is based on? And is this going to be .asi file?
 

Pu$$y

Active member
Joined
Feb 18, 2015
Messages
44
Reaction score
0
No it's an autohotkey script and yeah i got it as well

#IfWinActive GTA:SA:MP

LAlt::
While GetKeyState("LALT", "P")
{
Click down Right
sleep 40
click down Left
sleep 20
click up Right
click up Left
sleep 5
SendInput {c down}
sleep 40
SendInput {c up}
sleep 20
}
return
 

SeKT0r

Member
Joined
Aug 30, 2016
Messages
10
Reaction score
0
Pu$$y said:
No it's an autohotkey script  and yeah i got it as well

#IfWinActive GTA:SA:MP

LAlt::
   While GetKeyState("LALT", "P")
   {
      Click down Right
      sleep 40
      click down Left
      sleep 20
      click up Right
      click up Left
      sleep 5
      SendInput {c down}
      sleep 40
      SendInput {c up}
      sleep 20
   }
   return
 I want faster !!
 

Pu$$y

Active member
Joined
Feb 18, 2015
Messages
44
Reaction score
0
SeKT0r said:
Pu$$y said:
No it's an autohotkey script  and yeah i got it as well

#IfWinActive GTA:SA:MP

LAlt::
   While GetKeyState("LALT", "P")
   {
      Click down Right
      sleep 40
      click down Left
      sleep 20
      click up Right
      click up Left
      sleep 5
      SendInput {c down}
      sleep 40
      SendInput {c up}
      sleep 20
   }
   return
 I want faster !!

i don't think it can be faster :/
 

FAM0ZiN

Member
Joined
Aug 4, 2016
Messages
5
Reaction score
0
LAlt::

    While GetKeyState("LALT", "P")
    {
       Click down Right
       sleep 1
       click down Left
       sleep 1
       click up Right
       click up Left
       sleep 1
       SendInput {c down}
       sleep 1
       SendInput {c up}
       sleep 1
    }
    return

Mais rápido impossível!

pode também optar por usar minha versão.
 

Attachments

  • Macro FasterC-Bug V3.0.rar
    1 MB · Views: 136
Top