OMER

Would you like to react to this message? Create an account in a few clicks or log in to continue.

OMER_BHAR_4U@MIG33.COM

NOW WE CHANGED THE NAME OF THIS FORUM OMER.DARKBB.COM

    KICKING TOOL MAKING'S TUTORIAL

    Admin
    Admin
    Admin


    Number of posts : 627
    Registration date : 2008-12-25

    KICKING TOOL MAKING'S TUTORIAL Empty KICKING TOOL MAKING'S TUTORIAL

    Post  Admin Thu Feb 26, 2009 6:02 pm

    OK GUYZ , I HAVE OPENED THIS TOPIC TO GIVE YOU SOME INFO ON HOW TO MAKE KICKING TOOLS USING AUTOIT......
    LET'S START NOW !

    FIRST DOWNLOAD THESE SOFTWARES :

    1. autoIT
    DOWNLOAD AUTOIT rrow:
    http://www.autoitscript.com/cgi-bin/get ... -setup.exe

    2. scite editor
    DOWNLOAD SCITE EDITOR rrow:
    http://www.autoitscript.com/autoit3/sci ... utoIt3.exe

    HERE ARE SOME BASIC VIDEO TUTORIAL'S ON HOW TO MAKE KICKING TOOL'S ..........................

    I'M NOT GIVING YOU ANY EXPLANATION , COZ I THINK THESE VIDEO TUTORIAL'S ARE BETTER THEN ANY EXPLANATION ..... AND IF YOU STILL DON'T UNDERSTAND , THEN READT IT'S HELP FILE .........

    TUTORIAL # 1 - WORKING WITH KODA

    NOTE: YOU WILL FIND THIS SOFTWARE "KODA" IN THE SCITE EDITOR PACK ....
    HERE IS THE DOWNLOAD LINK

    Code:
    http://www.evilshare.com/e765be5e-97eb- ... 07e90cfb90

    FILE SIZE : 10.35 MB

    TUTORIAL # 2 - WORKING WITH SCITE EDITOR

    THIS IS THE MOST IMPORTANT PART OF THE TUTORIAL (MUST WATCH)

    HERE IS THE DOWNLOAD LINK

    part1

    Code:
    http://www.evilshare.com/c20cab3e-9a5e- ... 0b6aa2a5f8

    part2

    Code:
    http://www.evilshare.com/e7542f92-9a64- ... a0c993e9d6

    part3

    Code:
    http://www.evilshare.com/b0a6bde6-9a70- ... 0b6aa2a5f8

    part4

    Code:
    http://www.evilshare.com/de020792-9a74- ... a0c993e9d6


    PROJECT FILE :
    HERE IS THE DOWNLOAD LINK

    Code:
    http://www.evilshare.com/6426f98a-97ec- ... 0b6aa2a5f8


    NOTE : ALL ZIP FILES PASSWORD IS http://www.dxcommunity.co.cc

    HOW TO ADD AUTO ROOM LIST IN MY SOFTWARE ????

    I CAN'T MAKE THE WHOLE SCRIPT NOW , BUT I CAN TELL YOU WHICH WHICH COMMAND'S ARE NEEDED IN MAKING A AUTO ROOM LIST !!

    ANS. HERE ARE THE LIST OF COMMAND'S WHICH ARE NEEDED IN MAKING AUTO ROOM LIST SCRIPT !!!!

    VARIABLE

    A variable is just a place to store data in memory so that it can be accessed quickly. Think of it as a mailbox in memory that you can put information in or take information out of. For example you might create a variable to store the number a user's response to a question, or the result to a math equation.

    Each variable has a name (again, similar to a mailbox) and must start with the $ character and may only contain letters, numbers and the underscore _ character. Here are some example names:

    $dx

    $dx-community

    ----------------------------
    While...WEnd

    Loop based on an expression

    Code:

    While <expression>
    statements
    ...
    WEnd


    --------------------------

    If...Then

    Conditionally run a single statement.

    Code:
    If <expression> Then statement



    ---------------------------

    For...In...Next

    Enumerates elements in an Object collection or an array

    Code:
    For <$Variable> In <expression>
    statements
    ...
    Next



    ----------------------------

    String

    Returns the string representation of an expression.

    Code:
    String ( expression )



    ----------------------------

    ControlGetText

    Retrieves text from a control.

    Code:
    ControlGetText ( "title", "text", controlID )



    ----------------------------

    StringLeft

    Returns a number of characters from the left-hand side of a string.

    Code:
    StringLeft ( "string", count )



    ----------------------------

    FileWrite

    Append a line of text to the end of a previously opened text file.

    Code:
    FileWrite ( filehandle or "filename", "line" )



    ----------------------------

    _ReplaceStringInFile

    Replaces a string with another string in the given text file (binary won't work!)

    Code:
    #include <File.au3>
    _ReplaceStringInFile ( $szFileName, $szSearchString, $szReplaceString, $fCaseness = 0, $fOccurance = 1 )



    ----------------------------

    Dim

    Declare a variable, a constant, or create an array.

    Code:
    Dim [Const] $variable [ = initializer ]
    Dim [Const] $array[subscript 1]...[subscript n] [ = initializer ]



    ----------------------------

    _FileReadToArray

    Reads the specified file into an array.

    Code:
    #include <File.au3>
    _FileReadToArray ( $sFilePath, $aArray )



    ----------------------------

    _GUICtrlListBox_BeginUpdate

    Prevents updating of the control until the EndUpdate function is called

    Code:
    #Include <GuiListBox.au3>
    _GUICtrlListBox_BeginUpdate($hWnd)



    _GUICtrlListBox_AddString

    Add a string

    Code:
    #Include <GuiListBox.au3>
    _GUICtrlListBox_AddString($hWnd, $sText)



    _GUICtrlListBox_EndUpdate

    Enables screen repainting that was turned off with the BeginUpdate function

    Code:
    #Include <GuiListBox.au3>
    _GUICtrlListBox_EndUpdate($hWnd)



    ----------------------------

    ControlSetText

    Sets text of a control.

    Code:
    ControlSetText ( "title", "text", controlID, "new text" [, flag] )



    ----------------------------

    THESE ARE THE COMMAND'S WHICH ARE USED IN MAKING OF AUTO ROOM LIST !! , FOR MORE INFORMATION OF THESE COMMAND'S CHECK IT'S HELP FILE , WHICH IS INCLUDED IN THE AUTOIT FOLDER

    NOW TRY TO UNDERSTAND IT AND MAKE A SCRIPT OF AUTO ROOM LIST !

    HMMM , MAYBE YOU GUYZ ARE HAVING DIFFICULTIES TO UNDERSTAND , WHAT I WROTE ABOVE !!!! OK , LEM'ME GIVE YOU AN EXAMPLE OF ADMIN DETECTOR , SO FROM IT YOU CAN MAKE AUTO LEAVE , AUTO SEND , AUTO ROOM LIST ETC.


    OKAY FIRST OF ALL YOU HAVE TO GET THE TEXT FROM THE MIGPRO WINDOW , I MEAN THE WINDOW WHICH SHOWS TEXT LIKE , user has entered , user has left , , I THINK YOU GUYZ UNDERSTOOD NOW WHAT I AM TRYING TO SAY

    more is next.........

      Current date/time is Tue Jul 02, 2024 9:05 pm