Aide Créer un bot

  • Partenaires

Utilisateurs qui regardent le poste (Total: 0, Members: 0, Invité: 0)

H

-_Hotkey_-

Level 3
Level 2
Level 1
4 Mars 2013
69
0
206
Salut tout le monde, je post pour vous demander comment créer un bot sur s4league (instant wj et rc), ou alors que vous me donniez un tuto ou un bot en lui même, merci d'avance :).
 
Nociif

Nociif

2b || !2b
Level 5
Level 4
Level 3
Level 2
Level 1
23 Sept. 2011
2,607
5
944
push location
Discord
Nociif#5969
Sinon l'autoit est pratique pour les bot ;)
 
H

-_Hotkey_-

Level 3
Level 2
Level 1
4 Mars 2013
69
0
206
Voila ----> [YOUTUBE]https://www.youtube.com/watch?v=EJ4jaiqfKns[/YOUTUBE]

Merci, mais la vidéo explique comment créer un trainer InGame et non un bot, je vous parle de maccro, du genre je clique sur la molette et dans le jeu mon personnage fais un RC etc...

Et oui Nociif, mais ça serai vraiment mon premier logiciel de cheat, donc je ne sais pas trop comment on crée un bot avec Autoit.
 
¥Mangaka¥

¥Mangaka¥

Membre Banni
28 Avr. 2013
1,509
2
241
Si j'ai le temps (entre mon bot League of legends / dofus et mes trainers / bypass) je te fait un free cs .
Mais sinon je crois avoir un CS qui traine attend je cherche .

EDIT :

Code:
#RequireAdmin
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=D:\333sa.ico
#AutoIt3Wrapper_Run_Obfuscator=y
#Obfuscator_Parameters=/cs 1 /cn 1 /cf 1 /cv 1 /sf 1 /sv 1
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
HotKeySet("{F1}","_pressf1")
HotKeySet("{F2}","_pressf2")
HotKeySet("{F3}","_pressf3")
HotKeySet("{F4}","_quitter")
Global $wid = @DesktopWidth / 2, $hei = @DesktopHeight / 2
Global $dl = DllOpen("user32.dll")
Global $o = 0
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("[U]nknown[T]eam - Sniper Bot v1.0", 281, 255, 192, 124)
GUISetIcon("D:\333sa.ico", -1)
GUISetBkColor(0xFFFFFF)
$Group1 = GUICtrlCreateGroup("Sniper Bot", 8, 8, 185, 121)
$Button1 = GUICtrlCreateButton("Start Bot!", 16, 24, 171, 25, $BS_FLAT)
$Button2 = GUICtrlCreateButton("Stop Bot!", 16, 55, 171, 25, $BS_FLAT)
GUICtrlSetState(-1, $GUI_DISABLE)
$Label1 = GUICtrlCreateLabel("Sleep entre chaque tir:", 48, 80, 111, 17)
$Input1 = GUICtrlCreateInput("100", 16, 96, 169, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER))
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Label2 = GUICtrlCreateLabel("F1: Start Bot !", 200, 16, 69, 17)
$Label3 = GUICtrlCreateLabel("F2: Stop Bot !", 200, 40, 69, 17)
$Group2 = GUICtrlCreateGroup("Cam Hack", 8, 136, 185, 89)
$Label6 = GUICtrlCreateLabel("Cam", 96, 152, 25, 17)
$Input2 = GUICtrlCreateInput("350", 16, 168, 169, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER))
$Button3 = GUICtrlCreateButton("Hack", 16, 192, 171, 25)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Label7 = GUICtrlCreateLabel("F3: Cam Hack!", 200, 64, 75, 17)
$Label4 = GUICtrlCreateLabel("F4: Quitter", 200, 88, 53, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        case $Button1
            GUICtrlSetState($Button1, $gui_disable)
            GUICtrlSetState($Button2, $gui_enable)
            Global $o = 1
        Case $Button2
            GUICtrlSetState($Button1, $gui_enable)
            GUICtrlSetState($Button2, $gui_disable)
            Global $o = 0
        Case $Button3
            _pressf3()
    EndSwitch

    If _pressedon() Then
        If NOT $o = 1 Then
                    GUICtrlSetState($Button1, $gui_disable)
            GUICtrlSetState($Button2, $gui_enable)
            Global $o = 1
        EndIf
    EndIf
    If _pressedoff() Then
        If NOT $o = 0 Then
            GUICtrlSetState($Button1, $gui_enable)
            GUICtrlSetState($Button2, $gui_disable)
            Global $o = 0
        EndIf
    EndIf
    If $o = 1 Then
        PixelSearch($wid, $hei, 20, 300, 16711680, 10)
        If NOT @error AND _pressedleft() Then MouseClick("left")
        Sleep(GUICtrlRead($Input1))
    EndIf
WEnd

Func _pressedleft()
    Local $a_r = DllCall($dl, "short", "GetAsyncKeyState", "int", "0x01")
    If @error Then Return SetError(@error, @extended, False)
    Return BitAND($a_r[0], 32768) <> 0
EndFunc

Func _pressedon()
    Local $a_r = DllCall($dl, "short", "GetAsyncKeyState", "int", "0x7B")
    If @error Then Return SetError(@error, @extended, False)
    Return BitAND($a_r[0], 32768) <> 0
EndFunc

Func _pressedoff()
    Local $a_r = DllCall($dl, "short", "GetAsyncKeyState", "int", "0x7A")
    If @error Then Return SetError(@error, @extended, False)
    Return BitAND($a_r[0], 32768) <> 0
EndFunc
Func _pressf1()
        GUICtrlSetState($Button1, $gui_disable)
    GUICtrlSetState($Button2, $gui_enable)
    Global $o = 1
EndFunc
Func _pressf2()
        GUICtrlSetState($Button1, $gui_enable)
            GUICtrlSetState($Button2, $gui_disable)
            Global $o = 0
EndFunc
Func _pressf3()
        $pid = ProcessExists("S4Client.exe")
        $open = _memoryopen($pid)
        _memorywrite("0x01247700",$open,GUICtrlRead($Input2),"float")
    EndFunc
Func _quitter()
        Exit
EndFunc



Source : Unknown team
 
Dernière édition:
Pikachu

Pikachu

Level 5
Level 4
Level 3
Level 2
Level 1
18 Janv. 2013
7,739
3
944
Phœnix Land
Si j'ai le temps (entre mon bot League of legends / dofus et mes trainers / bypass) je te fait un free cs .
Mais sinon je crois avoir un CS qui traine attend je cherche .

EDIT :

Code:
#RequireAdmin
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=D:\333sa.ico
#AutoIt3Wrapper_Run_Obfuscator=y
#Obfuscator_Parameters=/cs 1 /cn 1 /cf 1 /cv 1 /sf 1 /sv 1
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
HotKeySet("{F1}","_pressf1")
HotKeySet("{F2}","_pressf2")
HotKeySet("{F3}","_pressf3")
HotKeySet("{F4}","_quitter")
Global $wid = @DesktopWidth / 2, $hei = @DesktopHeight / 2
Global $dl = DllOpen("user32.dll")
Global $o = 0
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("[U]nknown[T]eam - Sniper Bot v1.0", 281, 255, 192, 124)
GUISetIcon("D:\333sa.ico", -1)
GUISetBkColor(0xFFFFFF)
$Group1 = GUICtrlCreateGroup("Sniper Bot", 8, 8, 185, 121)
$Button1 = GUICtrlCreateButton("Start Bot!", 16, 24, 171, 25, $BS_FLAT)
$Button2 = GUICtrlCreateButton("Stop Bot!", 16, 55, 171, 25, $BS_FLAT)
GUICtrlSetState(-1, $GUI_DISABLE)
$Label1 = GUICtrlCreateLabel("Sleep entre chaque tir:", 48, 80, 111, 17)
$Input1 = GUICtrlCreateInput("100", 16, 96, 169, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER))
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Label2 = GUICtrlCreateLabel("F1: Start Bot !", 200, 16, 69, 17)
$Label3 = GUICtrlCreateLabel("F2: Stop Bot !", 200, 40, 69, 17)
$Group2 = GUICtrlCreateGroup("Cam Hack", 8, 136, 185, 89)
$Label6 = GUICtrlCreateLabel("Cam", 96, 152, 25, 17)
$Input2 = GUICtrlCreateInput("350", 16, 168, 169, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER))
$Button3 = GUICtrlCreateButton("Hack", 16, 192, 171, 25)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Label7 = GUICtrlCreateLabel("F3: Cam Hack!", 200, 64, 75, 17)
$Label4 = GUICtrlCreateLabel("F4: Quitter", 200, 88, 53, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        case $Button1
            GUICtrlSetState($Button1, $gui_disable)
            GUICtrlSetState($Button2, $gui_enable)
            Global $o = 1
        Case $Button2
            GUICtrlSetState($Button1, $gui_enable)
            GUICtrlSetState($Button2, $gui_disable)
            Global $o = 0
        Case $Button3
            _pressf3()
    EndSwitch

    If _pressedon() Then
        If NOT $o = 1 Then
                    GUICtrlSetState($Button1, $gui_disable)
            GUICtrlSetState($Button2, $gui_enable)
            Global $o = 1
        EndIf
    EndIf
    If _pressedoff() Then
        If NOT $o = 0 Then
            GUICtrlSetState($Button1, $gui_enable)
            GUICtrlSetState($Button2, $gui_disable)
            Global $o = 0
        EndIf
    EndIf
    If $o = 1 Then
        PixelSearch($wid, $hei, 20, 300, 16711680, 10)
        If NOT @error AND _pressedleft() Then MouseClick("left")
        Sleep(GUICtrlRead($Input1))
    EndIf
WEnd

Func _pressedleft()
    Local $a_r = DllCall($dl, "short", "GetAsyncKeyState", "int", "0x01")
    If @error Then Return SetError(@error, @extended, False)
    Return BitAND($a_r[0], 32768) <> 0
EndFunc

Func _pressedon()
    Local $a_r = DllCall($dl, "short", "GetAsyncKeyState", "int", "0x7B")
    If @error Then Return SetError(@error, @extended, False)
    Return BitAND($a_r[0], 32768) <> 0
EndFunc

Func _pressedoff()
    Local $a_r = DllCall($dl, "short", "GetAsyncKeyState", "int", "0x7A")
    If @error Then Return SetError(@error, @extended, False)
    Return BitAND($a_r[0], 32768) <> 0
EndFunc
Func _pressf1()
        GUICtrlSetState($Button1, $gui_disable)
    GUICtrlSetState($Button2, $gui_enable)
    Global $o = 1
EndFunc
Func _pressf2()
        GUICtrlSetState($Button1, $gui_enable)
            GUICtrlSetState($Button2, $gui_disable)
            Global $o = 0
EndFunc
Func _pressf3()
        $pid = ProcessExists("S4Client.exe")
        $open = _memoryopen($pid)
        _memorywrite("0x01247700",$open,GUICtrlRead($Input2),"float")
    EndFunc
Func _quitter()
        Exit
EndFunc



Source : Unknown team

C'est bien de vouloir l'aider, mais copier/coller un code et modifier quelque truc, n'est pas programmer... Je pense que tu devrais lui expliquer comment faire, et non lui donner un code déjà tout prêt...
 
Nayres

Nayres

Membre Banni
15 Avr. 2012
3,431
0
341
Quelque part.
Molette pour rc bot et alt pour iwj.
 

Pièces jointes

  • Bots.rar
    535.1 KB · Affichages: 3
Dernière édition:
H

-_Hotkey_-

Level 3
Level 2
Level 1
4 Mars 2013
69
0
206
Si j'ai le temps (entre mon bot League of legends / dofus et mes trainers / bypass) je te fait un free cs .
Mais sinon je crois avoir un CS qui traine attend je cherche .

EDIT :

Code:
#RequireAdmin
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=D:\333sa.ico
#AutoIt3Wrapper_Run_Obfuscator=y
#Obfuscator_Parameters=/cs 1 /cn 1 /cf 1 /cv 1 /sf 1 /sv 1
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
HotKeySet("{F1}","_pressf1")
HotKeySet("{F2}","_pressf2")
HotKeySet("{F3}","_pressf3")
HotKeySet("{F4}","_quitter")
Global $wid = @DesktopWidth / 2, $hei = @DesktopHeight / 2
Global $dl = DllOpen("user32.dll")
Global $o = 0
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("[U]nknown[T]eam - Sniper Bot v1.0", 281, 255, 192, 124)
GUISetIcon("D:\333sa.ico", -1)
GUISetBkColor(0xFFFFFF)
$Group1 = GUICtrlCreateGroup("Sniper Bot", 8, 8, 185, 121)
$Button1 = GUICtrlCreateButton("Start Bot!", 16, 24, 171, 25, $BS_FLAT)
$Button2 = GUICtrlCreateButton("Stop Bot!", 16, 55, 171, 25, $BS_FLAT)
GUICtrlSetState(-1, $GUI_DISABLE)
$Label1 = GUICtrlCreateLabel("Sleep entre chaque tir:", 48, 80, 111, 17)
$Input1 = GUICtrlCreateInput("100", 16, 96, 169, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER))
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Label2 = GUICtrlCreateLabel("F1: Start Bot !", 200, 16, 69, 17)
$Label3 = GUICtrlCreateLabel("F2: Stop Bot !", 200, 40, 69, 17)
$Group2 = GUICtrlCreateGroup("Cam Hack", 8, 136, 185, 89)
$Label6 = GUICtrlCreateLabel("Cam", 96, 152, 25, 17)
$Input2 = GUICtrlCreateInput("350", 16, 168, 169, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER))
$Button3 = GUICtrlCreateButton("Hack", 16, 192, 171, 25)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Label7 = GUICtrlCreateLabel("F3: Cam Hack!", 200, 64, 75, 17)
$Label4 = GUICtrlCreateLabel("F4: Quitter", 200, 88, 53, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        case $Button1
            GUICtrlSetState($Button1, $gui_disable)
            GUICtrlSetState($Button2, $gui_enable)
            Global $o = 1
        Case $Button2
            GUICtrlSetState($Button1, $gui_enable)
            GUICtrlSetState($Button2, $gui_disable)
            Global $o = 0
        Case $Button3
            _pressf3()
    EndSwitch

    If _pressedon() Then
        If NOT $o = 1 Then
                    GUICtrlSetState($Button1, $gui_disable)
            GUICtrlSetState($Button2, $gui_enable)
            Global $o = 1
        EndIf
    EndIf
    If _pressedoff() Then
        If NOT $o = 0 Then
            GUICtrlSetState($Button1, $gui_enable)
            GUICtrlSetState($Button2, $gui_disable)
            Global $o = 0
        EndIf
    EndIf
    If $o = 1 Then
        PixelSearch($wid, $hei, 20, 300, 16711680, 10)
        If NOT @error AND _pressedleft() Then MouseClick("left")
        Sleep(GUICtrlRead($Input1))
    EndIf
WEnd

Func _pressedleft()
    Local $a_r = DllCall($dl, "short", "GetAsyncKeyState", "int", "0x01")
    If @error Then Return SetError(@error, @extended, False)
    Return BitAND($a_r[0], 32768) <> 0
EndFunc

Func _pressedon()
    Local $a_r = DllCall($dl, "short", "GetAsyncKeyState", "int", "0x7B")
    If @error Then Return SetError(@error, @extended, False)
    Return BitAND($a_r[0], 32768) <> 0
EndFunc

Func _pressedoff()
    Local $a_r = DllCall($dl, "short", "GetAsyncKeyState", "int", "0x7A")
    If @error Then Return SetError(@error, @extended, False)
    Return BitAND($a_r[0], 32768) <> 0
EndFunc
Func _pressf1()
        GUICtrlSetState($Button1, $gui_disable)
    GUICtrlSetState($Button2, $gui_enable)
    Global $o = 1
EndFunc
Func _pressf2()
        GUICtrlSetState($Button1, $gui_enable)
            GUICtrlSetState($Button2, $gui_disable)
            Global $o = 0
EndFunc
Func _pressf3()
        $pid = ProcessExists("S4Client.exe")
        $open = _memoryopen($pid)
        _memorywrite("0x01247700",$open,GUICtrlRead($Input2),"float")
    EndFunc
Func _quitter()
        Exit
EndFunc



Source : Unknown team

Merci, mais je ne sais pas comment faire pour créer un bot avec ça.. C'est mon tout premier programme. :fou:

Et merci Akius, j'ai essayer tes bots, marchent à la perfection mais crash au bout de 5 min sans message d'erreur :(
 
Dernière édition:
¥Mangaka¥

¥Mangaka¥

Membre Banni
28 Avr. 2013
1,509
2
241
Si tu connais l'autoit tu comprend le code simplement .
Pheonix , je me base sur la possibilité qu'il ai des bases en autoit pour pouvoir comprendre et ainsi apprendre à en faire un .

Après si il ne connais pas l'autoit , je prendrez le temps de lui en donner un d'un autre langage .
Mais si il comprend rien a la programmation je ne prendrez pas le temps d'en faire .
 
H

-_Hotkey_-

Level 3
Level 2
Level 1
4 Mars 2013
69
0
206
Non, je ne connais pas trop l'Autoit, et c'est bien pour ça que je vous demande comment créer un bot avec celui-ci ..