Aide apprend autof5 ou name changer

    Publicités

Users Who Are Viewing This Thread (Total: 1, Members: 0, Guests: 1)

iSkin

Membre actif
Sep 6, 2014
207
0
81
Je suis ici :)
www.cheat-gam3.com
bonjour
comme le nom du post l'indique quelqun pourrait m'apprendre a faire un bot f5 ou un name sur vb ou sur autre svp. si quel qu'un veux bien mon Skype est dans ma signature
merci
 
Last edited:
Jun 7, 2010
1,895
0
762
Vétéran CG3

1-Crée depuis le koda une interface avec un boutton (avec form)

2-copier le code du koda dans autoit

3-ajouter les includes(important: en dessus de la form):

Code:
#RequireAdmin
#NoTrayIcon
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>

#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Auto F5 By Kyan", 393, 169, 192, 114)
$Button1 = GUICtrlCreateButton("Start", 160, 80, 209, 73)
GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###


Ajouter Case $Button1!!!

While 1
   $nMsg = GUIGetMsg()
   Switch $nMsg
      Case $GUI_EVENT_CLOSE
         Exit
                      Case $Button1
                          _Hack()
   EndSwitch
 WEnd
 Func _Hack()

GUISetState(@SW_HIDE)
ToolTip("Wait S4League", 0, 0)
ProcessWait("S4Client.exe")
ProcessExists("S4Client.exe")
ControlSend("S4 Client", "", 0, "{F5}")
Sleep(3000)
If Not WinExists("S4 Client") = 1 Then Exit
Exit

C'est dans l'archive de la video , il y a un fichier en autoit aussi mais je peux pas l'ouvrir car j'ai pas autoit sur ce pc.
 
Last edited:

Evaelis

La Voix de la Sagesse
V
Ancien staff
Apr 28, 2010
22,949
468
1,699
Valhalla
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1 // Si on clique sur le bouton
Hack() // Utiliser la fonction hack
EndSwitch
WEnd
Func _Hack() // La fonction
GUISetState(@SW_HIDE) // Cacher notre fenêtre
ToolTip("Wait S4League", 0, 0) // Afficher une tooltip (Bord bas-droit)
ProcessWait("S4Client.exe") // Attendre S4 avant de continuer le code
ProcessExists("S4Client.exe") // Sans if je doute que ce soit utile, bref
ControlSend("S4 Client", "", 0, "{F5}") // Envoyer la touche F5 (Via controlsend) à S4 Client
Sleep(3000) // Attendre 3s
If Not WinExists("S4 Client") = 1 Then Exit // Si S4 a été fermé : quitter
Exit // Sinon bah ... quitter ?

Voilà, après ça fait 3ans que j'ai pas touché mais si ça peut t'aider