Ir a contenido

PURCHASE MEMBERSHIP AT A 25% DISCOUNT Apply here

GET 1 MONTH OF MEMBERSHIP BY CHOOSING THE NEW NAME OF OUR COMPANY! Apply here


Photo

[Resuelto]Ich will ein eigenen Trainer erstellen


      
[Resuelto]Ich will ein eigenen Trainer erstellen TvOToho[Resuelto]Ich will ein eigenen Trainer erstellen TvOToho
[Resuelto]Ich will ein eigenen Trainer erstellen

samlehnen200
#1

samlehnen200
  • samlehnen200
  • new member
  • Mensajes :
    8
  • Reputación :
    0
  • Points :
    0
  • Registrado :
    2013-03-05
New -Trainer maker
New -Adressen
New -Hintergründe

[You must be registered and logged in to see this link.]: Seyer
[You must be registered and logged in to see this link.]: no está permitido el uso de colores en los comentarios y/o títulos.

_Stylix_
#2

_Stylix_
  • avatar
  • new member
  • Mensajes :
    6
  • Reputación :
    4
  • Points :
    0
  • Registrado :
    2013-02-27
Ich schaffe einen Trainer. 8)

Sie müssen Autoit verwenden.
this is a smal code:
Code:
#include <NomadMemory>
#RequireAdmin
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("_Stylix_ Mini Trainer", 240, 86, 192, 124)
$Checkbox1 = GUICtrlCreateCheckbox("In Sp", 16, 16, 65, 17)
$Checkbox2 = GUICtrlCreateCheckbox("HitRange", 112, 16, 97, 17)
$Button1 = GUICtrlCreateButton("Button1", 56, 48, 121, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
   $nMsg = GUIGetMsg()
   Switch $nMsg
      Case $GUI_EVENT_CLOSE
         Exit
                Case $Button1
$process = ProcessWait("S4Client.exe")
Sleep(800)
$open = MemoryOpen(n$process)
;inf Sp
if(GUICtrlRead($Checkbox1) == True)
{
MemoryWrite(0x444444,$open,"YourNewValue","long")
}
;HitRange
if(GUICtrlRead($Checkbox2) == True)
{
MemoryWrite(0x444445,$open,"YourNewValue","long")
}
exit 0
;0x444444 = your address of inf sp.
;0x444445 = your address of hitrange

   EndSwitch
WEnd

samlehnen200
#3

samlehnen200
  • samlehnen200
  • new member
  • Mensajes :
    8
  • Reputación :
    0
  • Points :
    0
  • Registrado :
    2013-03-05
[You must be registered and logged in to see this link.]

Beginn

ZzcarloszZ
#4

ZzcarloszZ
  • ZzcarloszZ
  • administrator
  • Mensajes :
    625
  • Reputación :
    220
  • Points :
    6
  • Registrado :
    2012-08-08
samlehnen200 wrote:[You must be registered and logged in to see this link.]

Beginn
die Ihr Problem?
Sie wollen unsichtbar machen die Hintergrundfarbe der Checkbox oder? :?:

samlehnen200
#5

samlehnen200
  • samlehnen200
  • new member
  • Mensajes :
    8
  • Reputación :
    0
  • Points :
    0
  • Registrado :
    2013-03-05
haste mal paar values oder string für mich

ZzcarloszZ
#6

ZzcarloszZ
  • ZzcarloszZ
  • administrator
  • Mensajes :
    625
  • Reputación :
    220
  • Points :
    6
  • Registrado :
    2012-08-08
samlehnen200 wrote:haste mal paar values oder string für mich
well, i dnot understand anything, but I think you mean backcolor and textcolor of your checboxk.
checkboxBackcolor:
Code:
Func GUICHECKBOXSETCOLOR(ByRef $CTRLID, $ICOLOR, $IBKCOLOR = "0xF1EDED")
   $CTRLHWND = $CTRLID
   If Not IsHWnd($CTRLHWND) Then $CTRLHWND = GUICtrlGetHandle($CTRLID)
   $APARENT = DllCall("user32.dll", "hwnd", "GetParent", "hwnd", $CTRLHWND)
   $ACPOS = ControlGetPos($APARENT[0], "", $CTRLID)
   $SOLDT = GUICtrlRead($CTRLID, 1)
   GUICtrlDelete($CTRLID)
   DllCall("uxtheme.dll", "none", "SetThemeAppProperties", "int", 0)
   $CTRLID = GUICtrlCreateCheckbox($SOLDT, $ACPOS[0], $ACPOS[1], $ACPOS[2], $ACPOS[3])
   GUICtrlSetColor(-1, $ICOLOR)
   GUICtrlSetBkColor(-1, $IBKCOLOR)
   DllCall("uxtheme.dll", "none", "SetThemeAppProperties", "int", 7)
EndFunc
how use Func GUICHECKBOXSETCOLOR->
Code:
$Checkbox1 = GUICtrlCreateCheckbox("Speed x15", 168, 112, 105, 17)
GUICHECKBOXSETCOLOR($CHECKBOX1, 0, -2)
checkbox TextColor->
Code:
Func Guichecboxcolor($ID,$ICOLOR)
DllCall("UxTheme.dll", "int", "SetWindowTheme", "hwnd", GUICtrlGetHandle($ID), "wstr", 0, "wstr", 0)
GUICtrlSetColor($ID, $ICOLOR)
EndFunc
how use TextColor->
Code:
$Checkbox1 = GUICtrlCreateCheckbox("Speed x15", 168, 112, 105, 17)
Guichecboxcolor($Checkbox1 , 0xFFFF00)
is this your question or not? xD!

samlehnen200
#7

samlehnen200
  • samlehnen200
  • new member
  • Mensajes :
    8
  • Reputación :
    0
  • Points :
    0
  • Registrado :
    2013-03-05
so my problem is i have creat an new hack but i need aktuelle hack address

ZzcarloszZ
#8

ZzcarloszZ
  • ZzcarloszZ
  • administrator
  • Mensajes :
    625
  • Reputación :
    220
  • Points :
    6
  • Registrado :
    2012-08-08
samlehnen200 wrote:so my problem is i have creat an new hack but i need aktuelle hack address
hah ok,Ich schicke eine mp.

ZzcarloszZ
#9

ZzcarloszZ
  • ZzcarloszZ
  • administrator
  • Mensajes :
    625
  • Reputación :
    220
  • Points :
    6
  • Registrado :
    2012-08-08
[You must be registered and logged in to see this link.] Resuelto
[You must be registered and logged in to see this link.]


Sponsored content
#10

Sponsored content

      

Create an account or log in to leave a reply

You need to be a member in order to leave a reply.

Create an account

Join our community by creating a new account. It's easy!


Create a new account

Log in

Already have an account? No problem, log in here.


Log in
You cannot reply to topics in this forum
Staff online
Sponsors
  •  TOTAL POSTS
  •  TOTAL MEMBERS
  •  NEWEST MEMBER