Jump to content

Ahmad

Members
  • Posts

    14
  • Joined

  • Last visited

Everything posted by Ahmad

  1. @almarm No, I don't think it's done using hotkeys @Szhlopp i am not going to really make a keylogger , let me explain: there are devices connected to the computer, each one has an address (i think so) like 0x0020 (maybe i am not sure) i now want to control this address, i just want the theory and not a script, and for those who fear that autoit could be marked as bad soft, i am not going to script it and if i do so not in autoit but in C or something. i only want the theory.
  2. Hello all, I have a question : "How to make a key logger?" i am not really going to make a key logger, i just want to know how to record what is getting sent, the only possibility i see is to set all keys as hotkeys but this is a bad option, i don't want want a ready script or somthing, just someone who tells me if it's possible to do in autoit, and if yes which dll should i call to get input ? Thanks in advance.
  3. $information = "bla 2 xD bla ... bla" $information = StringSplit($inforamtion, " ") $information will return an array containing : [0] => 6 (6 items) [1] => "bla" ; first item [2] => "2" ; second item .... ;and so on [6] => "bla" ; until the last one
  4. The Above Script won't work for FPS Games, it won't swap youf rom CT to terrorist without losing your weapon ;P if u want to cheat use CheatEngine
  5. When the Window is currently selected why do you need the Process id ? $LastActivePid = WinGetProcess("[ACTIVE]")
  6. ah Thanks
  7. Hi all, i was trying to make a function called _GuiCtrlgrid_Create but it doesn't work -.- when i execute the include file it dowsn' show any errors but when i call the function it gives me an eror : Here is the Include file : #include <GuiConstantsEx.au3> #include <WindowsConstants.au3> #include-once Func _GUICtrlGrid_Create($iXCoord, $iYCoord, $iWidth, $iHeight = -1, $iHorizontalSquares = -1, $iVerticalSquares = -1, $hSquaresColor = 0xFFFFFF, $bGridShow = True) Local $Square Select Case $iHorizontalSquares = -1 $iHorizontalSquares = $iWidth / 12 Case $iVerticalSquares = -1 $iVerticalSquares = $iHeight / 12 Case $iHeight = -1 $iHeight = $iWidth Case $bGridShow = False $bGridShow = -1 Case $bGridShow = True $bGridShow = $WS_BORDER EndSelect Dim $Square[($iHorizontalSquares + 1)][($iVerticalSquares + 1)] For $HorizontalLine = 1 To $iHorizontalSquares For $VerticalLine = 1 To $iVerticalSquares $Square[$HorizontalLine][$VerticalLine] = GUICtrlCreateLabel("", $iXCoord * $HorizontalLine, $iYCoord * $VerticalLine, $iWidth, $iHeight, $bGridShow) GUICtrlSetBkColor(-1, $hSquaresColor) Next Next Return $Square EndFunc ;==>_GUICtrlGrid_Create and the script i try to run is : #include "Grid.au3" #include "GuiConstantsEx.au3" #include "WindowsConstants.au3" $gui = GuiCreate("Grid Example") $x = _GuiCtrlGrid_Create(5,5,100) GUISetState(@SW_SHOW) while 1 WEnd Thanks in Advance
  8. But it's still buggy, I Can Delete Previous lines when he console asks for input, u should set the Question to read-only.
  9. Open you AutoIt Help File and look for _SingleTon() with SingleTon() you can check if there are no other occurrences running
  10. I Would Advise you to Search for curl, curl is a excellent solution for such things and works with php and C and supports a lot of protocols, I Think it's a better idea than sending Keystrokes because a site design may get changed but Script names and their $_GET attributes are getting changed very rarely i hope this helps
  11. Thanks for Sharing, I hope now i can now play CS 1.6 without "Too High Ping ,try Again Later" but i don' see any changes at time : Reply from 72.14.207.99: bytes=32 time=1565ms TTL=242 Reply from 72.14.207.99: bytes=32 time=1805ms TTL=242 Reply from 72.14.207.99: bytes=32 time=1731ms TTL=242 Reply from 72.14.207.99: bytes=32 time=1821ms TTL=242 @up : u mean piece not peace , right ?
  12. ok, thanks for the help but i can't write on the geekboard or in the example scripts board i get each time this error: What should i do to get the permission ?
  13. i would use the search function if i knew what i should search for
  14. Hello all, I am working currently on a project and i have a problem :- i have an variable named $var containing This : 1 00:01:08,729 --> 00:01:12,017 First Line Second Line Now i want to find a way to get certain information from it into a new array $var[0] = 1 $var[1] = "00:01:08,729" $var[2] = "00:01:12,017" $var[3] = "First Line" & @CRLF & "Second Line" although i haven't scripted in php since a long time i remember hat i could use The ereg and/or eregi function for a such task Is there any similar function in AutoIt ? i know i could do it with StringRight, StringLeft, StringSplit and so on but i look for a function like ereg as i mentioned above example: Function_i_look_for("00:01:08,729 --> 00:01:12,017", "(.*) --> (.*)", $y) the value of $y is an array containing [0] => 00:01:08,729 and [1] => 00:01:12:017 I hope u understood what i mean Any Suggestions ? Thanks in Advance.
×
×
  • Create New...