Page 1 of 2 12 LastLast
Results 1 to 15 of 18

Hybrid View

  1. #1
    chichos's Avatar
    Join Date
    Nov 2007
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0

    Question need help for Script

    hey hi i wanna know what a have to make in a Script for this never end

    example my Script start when i press F1 he does all that i want but what i have to make for this never end

    thanks for your help

  2. #2
    Jo33333's Avatar
    Join Date
    Aug 2008
    Location
    Washington St.
    Posts
    808
    Reputation
    13
    Thanks
    308
    What do you mean by "Never End"?

  3. #3
    chichos's Avatar
    Join Date
    Nov 2007
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    when i press the key for start the script this do the same all time so never finish

  4. #4
    ImNoobzz's Avatar
    Join Date
    Aug 2008
    Location
    Naha, Okinawa
    Posts
    1,313
    Reputation
    17
    Thanks
    241
    Uhh wtf?
    More info please

  5. #5
    droppoint's Avatar
    Join Date
    Jul 2008
    Location
    Black Hole! OMG
    Posts
    309
    Reputation
    11
    Thanks
    270

  6. #6
    chichos's Avatar
    Join Date
    Nov 2007
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by droppoint View Post
    WTF ???? CD4 keygn ????

  7. #7
    BioCh3m's Avatar
    Join Date
    Sep 2007
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    1
    just loop it?



  8. #8
    ImNoobzz's Avatar
    Join Date
    Aug 2008
    Location
    Naha, Okinawa
    Posts
    1,313
    Reputation
    17
    Thanks
    241
    Lol
    You seriously need to be more in-depth with this..
    "Never ends"?
    -_-

  9. #9
    Jo33333's Avatar
    Join Date
    Aug 2008
    Location
    Washington St.
    Posts
    808
    Reputation
    13
    Thanks
    308
    I'm so confused.
    I don't get what you are trying to do.

    Be more specific then "never end".

  10. #10
    BioCh3m's Avatar
    Join Date
    Sep 2007
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    1
    all you have to do is find out what type of input you need to use to loop your code. google it .... Example "C++ Loop code" or some shit.



  11. #11
    chichos's Avatar
    Join Date
    Nov 2007
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    ok look my script do this when i pres space bar

    $space:: ;

    MouseClick, right, , , , , D
    sleep 400
    MouseClick, right, , , , , U
    Sleep 3100 ;
    MouseClick, right, , , , , D
    sleep 400
    MouseClick, right, , , , , U
    sleep 3100
    MouseClick, right, , , , , D
    sleep 400
    MouseClick, right, , , , , U
    return

    but i wanna know if i cna do something that when i pres 1 time space bar he do all time the same

    this all time never finish

    MouseClick, right, , , , , D
    sleep 400
    MouseClick, right, , , , , U
    Sleep 3100 ;
    MouseClick, right, , , , , D
    sleep 400
    MouseClick, right, , , , , U
    sleep 3100
    MouseClick, right, , , , , D
    sleep 400
    MouseClick, right, , , , , U

  12. #12
    SomeDude123's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    440
    Reputation
    20
    Thanks
    39
    My Mood
    Relaxed
    more info please cuz i cant help without more info

  13. #13
    chichos's Avatar
    Join Date
    Nov 2007
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    look this is my complet script how i can loop it ????????????

    i try to make a script look and i wanna know what i have to do for this script never finish when i press the start key

    example when i press the space bar to start the script he do this

    MouseClick, right, , , , , D
    sleep 400
    MouseClick, right, , , , , U
    Sleep 5100 ; <----------------------*edit*
    MouseClick, right, , , , , D
    sleep 400
    MouseClick, right, , , , , U
    sleep 5100
    MouseClick, right, , , , , D
    sleep 400
    MouseClick, right, , , , , U
    sleep 5100 ; <----------------------*edit*
    MouseClick, right, , , , , D
    sleep 400
    MouseClick, right, , , , , U

    that i want is that hi do all time this and never stop



    look this is my script

    GameName = BF2.exe
    KeySleep1 = 100

    #Persistent
    #SingleInstance force
    #InstallMouseHook
    #InstallKeybdHook
    #NoEnv
    KeySleep1 = 100

    SetTimer, KeepRunning
    return
    KeepRunning:

    WinGet, szProcessName, ProcessName, A
    if szProcessName = BF2.exe
    {
    ; If running check to determine whether in chat mode.
    If (v_InTextChatOn == False) ; Text chat isn't active so allow hotkeys
    {
    Suspend, off
    }
    Else if (v_InTextChatOn == True) ; Text chat is active so disable hotkeys
    {
    Suspend, on
    }
    }
    Else ; Else window inactive, disable hotkeys
    {
    Suspend, on
    {
    }
    }
    return


    $space:: ; <------ Change hotkey for throwing the RDX by changing the key after $ and before ::

    MouseClick, right, , , , , D
    sleep 400
    MouseClick, right, , , , , U
    Sleep 5100 ; <----------------------*edit*
    MouseClick, right, , , , , D
    sleep 400
    MouseClick, right, , , , , U
    sleep 5100
    MouseClick, right, , , , , D
    sleep 400
    MouseClick, right, , , , , U
    sleep 5100 ; <----------------------*edit*
    MouseClick, right, , , , , D
    sleep 400
    MouseClick, right, , , , , U
    return


    $F9:: ; <------ This key activates or deactivates the script. Can be changed by changing the key after $ and before ::
    Suspend, Toggle
    If toggle != 1
    {
    toggle := 1
    SoundBeep
    SoundBeep
    }
    else
    {
    toggle := 0
    SoundBeep
    }
    return



    thanks for your help

  14. #14
    BioCh3m's Avatar
    Join Date
    Sep 2007
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    1
    JUST LOOP IT.
    im done , if you cant figure it out....



  15. #15
    Jo33333's Avatar
    Join Date
    Aug 2008
    Location
    Washington St.
    Posts
    808
    Reputation
    13
    Thanks
    308
    If you don't want the script to ever end, try adding a loop to the script.
    I don't know one by memory, try google.

Page 1 of 2 12 LastLast

Similar Threads

  1. Need Help for cod4 (cracked)
    By Hackara in forum General Game Hacking
    Replies: 3
    Last Post: 02-06-2009, 09:35 PM
  2. need help for special force philippines
    By nathanael890 in forum Soldier Front General
    Replies: 1
    Last Post: 09-03-2008, 06:52 AM
  3. NEED HELP FOR HACKING GUN INDIA
    By ashishashish in forum General Game Hacking
    Replies: 2
    Last Post: 04-16-2008, 12:03 AM
  4. need help for no fall damage hack
    By kokobunji100 in forum Visual Basic Programming
    Replies: 4
    Last Post: 09-27-2007, 04:12 PM
  5. need help installing warrock for friend
    By tarty67 in forum WarRock - International Hacks
    Replies: 8
    Last Post: 06-02-2007, 11:55 AM

Tags for this Thread