Jump to content

Trojan55

Active Members
  • Posts

    32
  • Joined

  • Last visited

Profile Information

  • Location
    Algiers

Trojan55's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hello All here is my code can anyone please help me? If _IsPressed("20") Then $Pos = WinGetPos("Window") $Color = pixelgetcolor($Pos[0]/2,$Pos[1]/2) MsgBox(0,"",$Pos[0]&","&$Pos[1]&@CRLF&"0x"&Hex($Color,6)) EndIf I'm trying to get middle color of window but pixelgetcolor still don't get the middle... anyone to help?
  2. nah i'm not gonna to hack a game , i'm just gonna to make a helping tool for my game
  3. Hello all can anyone tell me how to integer write? here is my cutted source : Case $Flash If $Flash = 1 Then _MemoryWrite(_MemoryRead(0x54890A,$open)+0x200,$open,int(0x30)) Elseif $Flash = 0 Then _MemoryWrite(_MemoryRead(0x54890A,$open)+0x200,$open,int(0x3F)) EndIf Thanks
  4. Hello Guys, I'm back again I wanted to make a hider for rar i can do it manually but not automatic Here is my GUI what's the problem? CMD is still saying FILE NOT FOUND! help me #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("PNG Hider :D", 465, 164, 192, 124) $Label1 = GUICtrlCreateLabel("Ever wanted to hide a rar file into image with your specified background? here is the solution :)", 8, 8, 446, 17) $Input1 = GUICtrlCreateInput("Destination of Background", 8, 40, 369, 21) $Button1 = GUICtrlCreateButton("Browse...", 384, 40, 75, 25) $Input2 = GUICtrlCreateInput("Destination of RAR FILE", 8, 72, 369, 21) $Button2 = GUICtrlCreateButton("Browse...", 384, 72, 75, 25) $Button3 = GUICtrlCreateButton("DO IT NOW!", 176, 135, 75, 25) $Label2 = GUICtrlCreateInput("The Name OF THE FILE!",8,100,369,21) $Button4 = GUICtrlCreateButton("Browse...",384,100,75,25) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button3 $bfile = Guictrlread($Input1) $rfile = GUICtrlRead($Input2) $kfile = GUICtrlRead($Label2) $Cmd = "copy /b "&$bfile&" + "&$rfile&" "&$kfile ClipPut($Cmd) RunWait(@ComSpec & " /k "&$Cmd) Case $Button1 $sfile = FileOpenDialog("hider","C:\","Image File (*.jpg;*.png)","") GUICtrlSetData($Input1,$sfile) case $Button2 $dfile = FileOpenDialog("hider","C:\","Archive (*.rar;*.zip;*.tar.gz;*.7z) ","") GUICtrlSetData($Input2,$dfile) Case $Button4 $zfile = FileSaveDialog("hider","C:\","Image File (*.png;*.jpg)","") GUICtrlSetData($Label2,$zfile&".png") EndSwitch WEnd Thanks. Trojan55
  5. I'm back to autoit, I'm testing this but doesn't work where is the $oChat variable? :/ #include <Skype.au3> Dim $oChat = $oChat.Skype_GetMessages() While 1 $msg = _Skype_ChatGetMessages($oChat) If $msg <> "" Then MsgBox(0,"","$msg : "&$msg) EndIf WEnd Thanks for help.
  6. Wow Thanks!!! That's what i was searching about... But Why did you do "srch":?
  7. Hi Guys I'm gonna share my program "BAT Creator" It's a GUI of course ^^ Download Link : Au3 File Exe File Thanks Features : Save As... (*.bat) Open... (For editing not executing!) Debug... (For executing the current source ^^) Skype : Trojan.55 PM me or contact me on skype for suggestions and help using it. Lord Trojan.
  8. Hi All, I'm trying to get the text of google button but i can't here is the source : $src = InetRead("https://www.google.dz/") $fix = BinaryToString($src) $chg = StringRegExp($fix,'<span id="gbqfsa">Recherche (.*?)</span>',3) MsgBox(0,"",$chg) What's the problem?
  9. Try this : HotKeySet("{F8}","bye") $pos = MouseGetPos() While 1 MouseMove($pos[0],$pos[1]) WEnd Func bye() Exit EndFunc Press F8 to exit
  10. I think that this uses GUI Image ... I don't know that ;D
×
×
  • Create New...