Results 1 to 9 of 9
  1. #1
    beteasta3's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Location
    Have You Checked You'r Sister's Room?
    Posts
    472
    Reputation
    9
    Thanks
    86
    My Mood
    Devilish

    AC TOOL MACRO WONT DOUBLE CLICK IN AVA

    okay so i made a macro in ac tool and the global hot key is f. So everytime i hit f2 or f it starts to double click and here is the code. The problem is when the ava window opens it doesnt double click in the ava window and ive already set the active window parameter
    Here is the code. Any idea of why it wont double click in ava window? Yes it double clicks on desktop screen but not ig

    SetActiveWindow Alliance of Valiant Arms
    LeftClick
    while 1=1
    delay 50
    doubleclick
    delay 50
    End
    Last edited by beteasta3; 05-17-2011 at 08:35 PM.
    [IMG]https://i488.photobucke*****m/albums/rr247/beteasta1/naruto2.png[/IMG]
    [img]https://www.danasof*****m/sig/231698.jpg[/img]
    Press The Thanks Button..Can't Hurt!!

  2. #2
    igotfish's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    3
    release it! =D

  3. #3
    beteasta3's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Location
    Have You Checked You'r Sister's Room?
    Posts
    472
    Reputation
    9
    Thanks
    86
    My Mood
    Devilish
    anyone know why? =/ damn where all the coders at !_!
    [IMG]https://i488.photobucke*****m/albums/rr247/beteasta1/naruto2.png[/IMG]
    [img]https://www.danasof*****m/sig/231698.jpg[/img]
    Press The Thanks Button..Can't Hurt!!

  4. #4
    EduardoDeDeus's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    75
    Reputation
    9
    Thanks
    5
    My Mood
    Sad
    There hidden in the deepest little corners of the darkness...

  5. #5
    /b/oss's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    13,651
    Reputation
    795
    Thanks
    3,547
    [html]'////// FULLY CODDED AND COMMENTED BY m_t_h//////
    '///// IF YOU'RE USING THIS SOURCE CODE PLEASE INCLUDE ME IN CREDITS////
    '//// DO NOT DELETE THIS COMMENT ////
    '/// VISIT WWW.MPGH.NET, THE BIGGEST HACKING SITE ON THE WORLD//////
    '//
    '/ ~m_t_h




    Module Module1
    Declare Function SetWindowPos Lib "user32" (ByVal hwnd As IntPtr, ByVal hWndInsertAfter As Integer, ByVal x As Integer, ByVal y As Integer, ByVal cx As Integer, ByVal cy As Integer, ByVal wFlags As Integer) As IntPtr

    Public Const SWP_FRAMECHANGED = &H20
    Public Const HWND_TOP = 0
    Public Const HWND_TOPMOST = -1
    Public Const HWND_NOTOPMOST = -2
    Public Const SWP_DRAWFRAME = SWP_FRAMECHANGED
    Public Const SWP_HIDEWINDOW = &H80
    Public Const SWP_NOACTIVATE = &H10
    Public Const SWP_NOCOPYBITS = &H100
    Public Const SWP_NOMOVE = &H2
    Public Const SWP_NOOWNERZORDER = &H200
    Public Const SWP_NOREDRAW = &H8
    Public Const SWP_NOREPOSITION = SWP_NOOWNERZORDER
    Public Const SWP_NOSIZE = &H1
    Public Const SWP_NOZORDER = &H4
    Public Const SWP_SHOWWINDOW = &H40


    Public Sub FormOnTop(ByVal frm As Form, ByVal VF As Boolean)


    Select Case VF
    Case True
    SetWindowPos(frm.Handle, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOACTIVATE Or SWP_SHOWWINDOW Or SWP_NOSIZE Or SWP_NOMOVE)
    Case False
    SetWindowPos(frm.Handle, HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOACTIVATE Or SWP_SHOWWINDOW Or SWP_NOSIZE Or SWP_NOMOVE)

    End Select
    End Sub
    End Module[/html]


    <!-- This Script is from Html Best Codes, Coded by: Krishna Eydat-->
    <CENTER>

    <FORM name="Keypad" action="">
    <TABLE>
    <B>
    <TABLE border=2 width=50 height=60 cellpadding=1 cellspacing=5>
    <TR>
    <TD colspan=3 align=middle>
    <input name="ReadOut" type="Text" size=24 value="0" width=100%>
    </TD>
    <TD
    </TD>
    <TD>
    <input name="btnClear" type="Button" value=" C " onclick="Clear()">
    </TD>
    <TD><input name="btnClearEntry" type="Button" value=" CE " onclick="ClearEntry()">
    </TD>
    </TR>
    <TR>
    <TD>
    <input name="btnSeven" type="Button" value=" 7 " onclick="NumPressed(7)">
    </TD>
    <TD>
    <input name="btnEight" type="Button" value=" 8 " onclick="NumPressed(8)">
    </TD>
    <TD>
    <input name="btnNine" type="Button" value=" 9 " onclick="NumPressed(9)">
    </TD>
    <TD>
    </TD>
    <TD>
    <input name="btnNeg" type="Button" value=" +/- " onclick="Neg()">
    </TD>
    <TD>
    <input name="btnPercent" type="Button" value=" % " onclick="Percent()">
    </TD>
    </TR>
    <TR>
    <TD>
    <input name="btnFour" type="Button" value=" 4 " onclick="NumPressed(4)">
    </TD>
    <TD>
    <input name="btnFive" type="Button" value=" 5 " onclick="NumPressed(5)">
    </TD>
    <TD>
    <input name="btnSix" type="Button" value=" 6 " onclick="NumPressed(6)">
    </TD>
    <TD>
    </TD>
    <TD align=middle><input name="btnPlus" type="Button" value=" + " onclick="Operation('+')">
    </TD>
    <TD align=middle><input name="btnMinus" type="Button" value=" - " onclick="Operation('-')">
    </TD>
    </TR>
    <TR>
    <TD>
    <input name="btnOne" type="Button" value=" 1 " onclick="NumPressed(1)">
    </TD>
    <TD>
    <input name="btnTwo" type="Button" value=" 2 " onclick="NumPressed(2)">
    </TD>
    <TD>
    <input name="btnThree" type="Button" value=" 3 " onclick="NumPressed(3)">
    </TD>
    <TD>
    </TD>
    <TD align=middle><input name="btnMultiply" type="Button" value=" * " onclick="Operation('*')">
    </TD>
    <TD align=middle><input name="btnDivide" type="Button" value=" / " onclick="Operation('/')">
    </TD>
    </TR>
    <TR>
    <TD>
    <input name="btnZero" type="Button" value=" 0 " onclick="NumPressed(0)">
    </TD>
    <TD>
    <input name="btnDecimal" type="Button" value=" . " onclick="Decimal()">
    </TD>
    <TD colspan=3>
    </TD>
    <TD>
    <input name="btnEquals" type="Button" value=" = " onclick="Operation('=')">
    </TD>
    </TR>
    </TABLE>
    </TABLE>
    </B>
    </FORM>
    </CENTER>
    <font face="Verdana, Arial, Helvetica" size=2>
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Begin
    var FKeyPad = document.Keypad;
    var Accumulate = 0;
    var FlagNewNum = false;
    var PendingOp = "";
    function NumPressed (Num) {
    if (FlagNewNum) {
    FKeyPad.ReadOut.value = Num;
    FlagNewNum = false;
    }
    else {
    if (FKeyPad.ReadOut.value == "0")
    FKeyPad.ReadOut.value = Num;
    else
    FKeyPad.ReadOut.value += Num;
    }
    }
    function Operation (Op) {
    var Readout = FKeyPad.ReadOut.value;
    if (FlagNewNum && PendingOp != "=");
    else
    {
    FlagNewNum = true;
    if ( '+' == PendingOp )
    Accumulate += parseFloat(Readout);
    else if ( '-' == PendingOp )
    Accumulate -= parseFloat(Readout);
    else if ( '/' == PendingOp )
    Accumulate /= parseFloat(Readout);
    else if ( '*' == PendingOp )
    Accumulate *= parseFloat(Readout);
    else
    Accumulate = parseFloat(Readout);
    FKeyPad.ReadOut.value = Accumulate;
    PendingOp = Op;
    }
    }
    function Decimal () {
    var curReadOut = FKeyPad.ReadOut.value;
    if (FlagNewNum) {
    curReadOut = "0.";
    FlagNewNum = false;
    }
    else
    {
    if (curReadOut.indexOf(".") == -1)
    curReadOut += ".";
    }
    FKeyPad.ReadOut.value = curReadOut;
    }
    function ClearEntry () {
    FKeyPad.ReadOut.value = "0";
    FlagNewNum = true;
    }
    function Clear () {
    Accumulate = 0;
    PendingOp = "";
    ClearEntry();
    }
    function Neg () {
    FKeyPad.ReadOut.value = parseFloat(FKeyPad.ReadOut.value) * -1;
    }
    function Percent () {
    FKeyPad.ReadOut.value = (parseFloat(FKeyPad.ReadOut.value) / 100) * parseFloat(Accumulate);
    }
    // End -->
    </SCRIPT>

    <font face="Tahoma"><a target="_blank" href="https://www.htmlfreecodes.com/"><span style="font-size: 8pt; text-decoration: none">HTML Free Code</span></a></font>
    Last edited by /b/oss; 05-18-2011 at 12:53 AM.

  6. #6
    beteasta3's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Location
    Have You Checked You'r Sister's Room?
    Posts
    472
    Reputation
    9
    Thanks
    86
    My Mood
    Devilish
    Quote Originally Posted by m_t_h View Post
    [html]'////// FULLY CODDED AND COMMENTED BY m_t_h//////
    '///// IF YOU'RE USING THIS SOURCE CODE PLEASE INCLUDE ME IN CREDITS////
    '//// DO NOT DELETE THIS COMMENT ////
    '/// VISIT WWW.MPGH.NET, THE BIGGEST HACKING SITE ON THE WORLD//////
    '//
    '/ ~m_t_h




    Module Module1
    Declare Function SetWindowPos Lib "user32" (ByVal hwnd As IntPtr, ByVal hWndInsertAfter As Integer, ByVal x As Integer, ByVal y As Integer, ByVal cx As Integer, ByVal cy As Integer, ByVal wFlags As Integer) As IntPtr

    Public Const SWP_FRAMECHANGED = &H20
    Public Const HWND_TOP = 0
    Public Const HWND_TOPMOST = -1
    Public Const HWND_NOTOPMOST = -2
    Public Const SWP_DRAWFRAME = SWP_FRAMECHANGED
    Public Const SWP_HIDEWINDOW = &H80
    Public Const SWP_NOACTIVATE = &H10
    Public Const SWP_NOCOPYBITS = &H100
    Public Const SWP_NOMOVE = &H2
    Public Const SWP_NOOWNERZORDER = &H200
    Public Const SWP_NOREDRAW = &H8
    Public Const SWP_NOREPOSITION = SWP_NOOWNERZORDER
    Public Const SWP_NOSIZE = &H1
    Public Const SWP_NOZORDER = &H4
    Public Const SWP_SHOWWINDOW = &H40


    Public Sub FormOnTop(ByVal frm As Form, ByVal VF As Boolean)


    Select Case VF
    Case True
    SetWindowPos(frm.Handle, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOACTIVATE Or SWP_SHOWWINDOW Or SWP_NOSIZE Or SWP_NOMOVE)
    Case False
    SetWindowPos(frm.Handle, HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOACTIVATE Or SWP_SHOWWINDOW Or SWP_NOSIZE Or SWP_NOMOVE)

    End Select
    End Sub
    End Module[/html]


    <!-- This Script is from Html Best Codes, Coded by: Krishna Eydat-->
    <CENTER>

    <FORM name="Keypad" action="">
    <TABLE>
    <B>
    <TABLE border=2 width=50 height=60 cellpadding=1 cellspacing=5>
    <TR>
    <TD colspan=3 align=middle>
    <input name="ReadOut" type="Text" size=24 value="0" width=100%>
    </TD>
    <TD
    </TD>
    <TD>
    <input name="btnClear" type="Button" value=" C " onclick="Clear()">
    </TD>
    <TD><input name="btnClearEntry" type="Button" value=" CE " onclick="ClearEntry()">
    </TD>
    </TR>
    <TR>
    <TD>
    <input name="btnSeven" type="Button" value=" 7 " onclick="NumPressed(7)">
    </TD>
    <TD>
    <input name="btnEight" type="Button" value=" 8 " onclick="NumPressed(8)">
    </TD>
    <TD>
    <input name="btnNine" type="Button" value=" 9 " onclick="NumPressed(9)">
    </TD>
    <TD>
    </TD>
    <TD>
    <input name="btnNeg" type="Button" value=" +/- " onclick="Neg()">
    </TD>
    <TD>
    <input name="btnPercent" type="Button" value=" % " onclick="Percent()">
    </TD>
    </TR>
    <TR>
    <TD>
    <input name="btnFour" type="Button" value=" 4 " onclick="NumPressed(4)">
    </TD>
    <TD>
    <input name="btnFive" type="Button" value=" 5 " onclick="NumPressed(5)">
    </TD>
    <TD>
    <input name="btnSix" type="Button" value=" 6 " onclick="NumPressed(6)">
    </TD>
    <TD>
    </TD>
    <TD align=middle><input name="btnPlus" type="Button" value=" + " onclick="Operation('+')">
    </TD>
    <TD align=middle><input name="btnMinus" type="Button" value=" - " onclick="Operation('-')">
    </TD>
    </TR>
    <TR>
    <TD>
    <input name="btnOne" type="Button" value=" 1 " onclick="NumPressed(1)">
    </TD>
    <TD>
    <input name="btnTwo" type="Button" value=" 2 " onclick="NumPressed(2)">
    </TD>
    <TD>
    <input name="btnThree" type="Button" value=" 3 " onclick="NumPressed(3)">
    </TD>
    <TD>
    </TD>
    <TD align=middle><input name="btnMultiply" type="Button" value=" * " onclick="Operation('*')">
    </TD>
    <TD align=middle><input name="btnDivide" type="Button" value=" / " onclick="Operation('/')">
    </TD>
    </TR>
    <TR>
    <TD>
    <input name="btnZero" type="Button" value=" 0 " onclick="NumPressed(0)">
    </TD>
    <TD>
    <input name="btnDecimal" type="Button" value=" . " onclick="Decimal()">
    </TD>
    <TD colspan=3>
    </TD>
    <TD>
    <input name="btnEquals" type="Button" value=" = " onclick="Operation('=')">
    </TD>
    </TR>
    </TABLE>
    </TABLE>
    </B>
    </FORM>
    </CENTER>
    <font face="Verdana, Arial, Helvetica" size=2>
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Begin
    var FKeyPad = document.Keypad;
    var Accumulate = 0;
    var FlagNewNum = false;
    var PendingOp = "";
    function NumPressed (Num) {
    if (FlagNewNum) {
    FKeyPad.ReadOut.value = Num;
    FlagNewNum = false;
    }
    else {
    if (FKeyPad.ReadOut.value == "0")
    FKeyPad.ReadOut.value = Num;
    else
    FKeyPad.ReadOut.value += Num;
    }
    }
    function Operation (Op) {
    var Readout = FKeyPad.ReadOut.value;
    if (FlagNewNum && PendingOp != "=");
    else
    {
    FlagNewNum = true;
    if ( '+' == PendingOp )
    Accumulate += parseFloat(Readout);
    else if ( '-' == PendingOp )
    Accumulate -= parseFloat(Readout);
    else if ( '/' == PendingOp )
    Accumulate /= parseFloat(Readout);
    else if ( '*' == PendingOp )
    Accumulate *= parseFloat(Readout);
    else
    Accumulate = parseFloat(Readout);
    FKeyPad.ReadOut.value = Accumulate;
    PendingOp = Op;
    }
    }
    function Decimal () {
    var curReadOut = FKeyPad.ReadOut.value;
    if (FlagNewNum) {
    curReadOut = "0.";
    FlagNewNum = false;
    }
    else
    {
    if (curReadOut.indexOf(".") == -1)
    curReadOut += ".";
    }
    FKeyPad.ReadOut.value = curReadOut;
    }
    function ClearEntry () {
    FKeyPad.ReadOut.value = "0";
    FlagNewNum = true;
    }
    function Clear () {
    Accumulate = 0;
    PendingOp = "";
    ClearEntry();
    }
    function Neg () {
    FKeyPad.ReadOut.value = parseFloat(FKeyPad.ReadOut.value) * -1;
    }
    function Percent () {
    FKeyPad.ReadOut.value = (parseFloat(FKeyPad.ReadOut.value) / 100) * parseFloat(Accumulate);
    }
    // End -->
    </SCRIPT>

    <font face="Tahoma"><a target="_blank" href="https://www.htmlfreecodes.com/"><span style="font-size: 8pt; text-decoration: none">HTML Free Code</span></a></font>
    lol
    too short
    [IMG]https://i488.photobucke*****m/albums/rr247/beteasta1/naruto2.png[/IMG]
    [img]https://www.danasof*****m/sig/231698.jpg[/img]
    Press The Thanks Button..Can't Hurt!!

  7. #7
    /b/oss's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    13,651
    Reputation
    795
    Thanks
    3,547
    Quote Originally Posted by beteasta3 View Post
    lol
    too short
    lmfao sorry buddy i was testing something, ignore the second code i forgot to delete it

    the first code is module so yea

  8. #8
    beteasta3's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Location
    Have You Checked You'r Sister's Room?
    Posts
    472
    Reputation
    9
    Thanks
    86
    My Mood
    Devilish
    Quote Originally Posted by m_t_h View Post


    lmfao sorry buddy i was testing something, ignore the second code i forgot to delete it

    the first code is module so yea
    i put this into ac tools it says too many end statements oh and isnt that your crosshair source code? o.O im trying to get a rapid fire lmb clicker
    Last edited by beteasta3; 05-18-2011 at 03:39 PM.
    [IMG]https://i488.photobucke*****m/albums/rr247/beteasta1/naruto2.png[/IMG]
    [img]https://www.danasof*****m/sig/231698.jpg[/img]
    Press The Thanks Button..Can't Hurt!!

  9. #9
    lilpac's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Jeddah, Saudi Arabia, Saudi Arabia
    Posts
    56
    Reputation
    10
    Thanks
    5
    My Mood
    Buzzed
    MAN I NEED HELP ON THIS SOMEONE DO THE SCRIPT I DONNO HOW TO DO IT !!