All-Jumps {(Jumping Script)} With Source! menu

User Tag List

Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 56
  1. #31
    Timilber's Avatar Banned
    Reputation
    11
    Join Date
    Jan 2007
    Posts
    80
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: All-Jumps {(Jumping Script)} With Source!

    *sigh* yet anyother cool thing that doesn't work for macs

    All-Jumps {(Jumping Script)} With Source!
  2. #32
    orangegold's Avatar Active Member
    Reputation
    22
    Join Date
    Dec 2006
    Posts
    133
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: All-Jumps {(Jumping Script)} With Source!

    i updated script to make it more professional and easy to use full credit still goes to you here it is...
    ...
    Code:
    nvm i have an even better code posted down a little bit so i deleted this one
    Last edited by orangegold; 04-21-2007 at 11:48 AM.
    how do u edit your signature???

  3. #33
    ds1343's Avatar Member
    Reputation
    8
    Join Date
    Apr 2007
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: All-Jumps {(Jumping Script)} With Source!

    WTF how do i unpause

  4. #34
    Nugma's Avatar Field Marshal
    Reputation
    122
    Join Date
    Aug 2006
    Posts
    1,290
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: All-Jumps {(Jumping Script)} With Source!

    Originally Posted by ds1343
    WTF how do i unpause
    At the corner where your clock is.

  5. #35
    orangegold's Avatar Active Member
    Reputation
    22
    Join Date
    Dec 2006
    Posts
    133
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: All-Jumps {(Jumping Script)} With Source!

    ok i got an even mor eupdated version made for you here is the new script it adds in an exit key and tells you what to press in a message bar and gives you a f7 key which lets you float in mid air

    ...
    Code:
    ;  Title: All-Jumps
    ;  Author: iHack w/ some help from orangegold
    ;  Description: Performs different jumps.
    MsgBox(0, "jump script", "f1 = jump" & @CRLF & "f2 = special jump" & @CRLF & "f3 = strafe jump" & @CRLF & "f4 = strafe jump left" & @crlf & "f5 = back jump" & @CRLF & "f6 = special back jump "& @CRLF & "f7 = float in air jump" & @crlf &"~~~f8 = exit~~~")
    HotKeySet("{F1}", "jump")
    HotKeySet("{F2}", "specialjump")
    HotKeySet("{F4}", "strafejump")
    HotKeySet("{F3}", "strafejumpleft")
    HotKeySet("{F5}", "backjump")
    HotKeySet("{F6}", "specialbackjump")
    HotKeySet("{PAUSE}", "unbind")
    HotKeySet("{F7}", "floaty")
    HotKeySet("{F8}", "exity")
    
    func jump() ; normal jump
        HotKeySet("{F1}")
        Send("{W DOWN}")
        Send("{SPACE}")
        Send("{W UP}")
        Sleep(300)
        HotKeySet("{F1}", "jump")
        idle()
    EndFunc
    
    func specialjump() ; hit jump then tap forward
        HotKeySet("{F2}")
        Send("{SPACE}")
        Sleep(250)
        Send("{W}")
        Sleep(600)
        HotKeySet("{F2}", "specialjump")
        idle()
    EndFunc
    
    func strafejump() ; strafe-jump to the right
        HotKeySet("{F4}")
        Send ("{E DOWN}")
        Send("{SPACE}")
        Send ("{E UP}")
        Sleep(300)
        HotKeySet("{F4}", "strafejump")
        idle()
    EndFunc
    
    func strafejumpleft() ; strafe-jump to the left
        HotKeySet("{F3}")
        Send ("{Q DOWN}")
        Send("{SPACE}")
        Send ("{Q UP}")
        Sleep(300)
        HotKeySet("{F3}", "strafejumpleft")
        idle()
    EndFunc
    
    func backjump() ; jumps backwords
        HotKeySet("{F5}")
        Send ("{S DOWN}")
        Send("{SPACE}")
        Send ("{S UP}")
        Sleep(300)
        HotKeySet("{F5}", "backjump")
        idle()
    EndFunc
    
    func specialbackjump() ; special-jump backwords
        HotKeySet("{F6}")
        Send("{SPACE}")
        Sleep(250)
        Send("{S}")
        Sleep(600)
        HotKeySet("{F6}", "specialbackjump")
        idle()
    EndFunc
    
    func floaty() ; floats in mid air
        HotKeySet("{F7}")
        Send("{Enter}/logout{Enter}")
        Sleep(250)
        Send(" ")
        Sleep(600)
        HotKeySet("{F7}", "floaty")
        idle()
    EndFunc
    
    Func idle() ; idle, do nothing
        while 1
            Sleep(1000)
        WEnd
    EndFunc
    
    Func unbind() ; unbind keys
        HotKeySet("{F1}")
        HotKeySet("{F2}")
        HotKeySet("{F4}")
        HotKeySet("{F3}")
        HotKeySet("{F5}")
        HotKeySet("{F6}")
        HotKeySet("{PAUSE}", "rebind")
        idle()
    EndFunc
    
    Func rebind() ; rebind the keys
        HotKeySet("{F1}", "jump")
        HotKeySet("{F2}", "specialjump")
        HotKeySet("{F4}", "strafejump")
        HotKeySet("{F3}", "strafejumpleft")
        HotKeySet("{F5}", "backjump")
        HotKeySet("{F6}", "specialbackjump")
        HotKeySet("{PAUSE}", "unbind")
        idle()
    EndFunc
    
    Func exity() ; exit
    Exit
    EndFunc
    
    idle()
    Last edited by orangegold; 04-21-2007 at 11:47 AM.
    how do u edit your signature???

  6. #36
    orangegold's Avatar Active Member
    Reputation
    22
    Join Date
    Dec 2006
    Posts
    133
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: All-Jumps {(Jumping Script)} With Source!

    i si hack really banned? wtf
    how do u edit your signature???

  7. #37
    nichickI's Avatar Member
    Reputation
    3
    Join Date
    Sep 2006
    Posts
    44
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: All-Jumps {(Jumping Script)} With Source!

    So this bassicly, jumps of it own? So you dont need to like press space all the time trying to jump up somewhere?

    Sounds awsome just want some more info!
    !One Life Live It!

  8. #38
    bait's Avatar Member
    Reputation
    13
    Join Date
    Aug 2006
    Posts
    363
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: All-Jumps {(Jumping Script)} With Source!

    Can Some one (REC) this in game working im not 100% what your on bout. If it is justs wall jumping then that is piss dont need to shit to help me do it......
    .l..°_°..l. As of to day im a good man, Good day

  9. #39
    orangegold's Avatar Active Member
    Reputation
    22
    Join Date
    Dec 2006
    Posts
    133
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: All-Jumps {(Jumping Script)} With Source!

    Originally Posted by nichickI
    So this bassicly, jumps of it own? So you dont need to like press space all the time trying to jump up somewhere?

    Sounds awsome just want some more info!
    thats so cool your name " nichickI " if you go down 1 letter each time its another word
    ...
    nic
    ich
    chick
    hick
    ick
    ck " only exception its german for sumthing i think "
    kI " korean for mope "
    I
    how do u edit your signature???

  10. #40
    jimmbo506's Avatar Member
    Reputation
    44
    Join Date
    Jan 2007
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: All-Jumps {(Jumping Script)} With Source!

    this is perfect due to the fact theres no climbing hacks for the ptr *hint*

  11. #41
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: All-Jumps {(Jumping Script)} With Source!

    Umm.. I learned to wall jump.. I practice daily while playing. Made a program before but I have no use for it when I do perfectly fine without it.

    But nice work none the less.

  12. #42
    Nugma's Avatar Field Marshal
    Reputation
    122
    Join Date
    Aug 2006
    Posts
    1,290
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: All-Jumps {(Jumping Script)} With Source!

    *sigh* THIS is how it works:
    You press "1" it presses jump + forward

  13. #43
    konst's Avatar Member
    Reputation
    3
    Join Date
    Sep 2006
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: All-Jumps {(Jumping Script)} With Source!

    I highly doubt that this is actually detectable. That poster is either lying or jumping in stupid places. I'm guessing the first.

  14. #44
    erebe's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: All-Jumps {(Jumping Script)} With Source!

    hi , thx for your work.
    I would like to know which tool do you use to compile the source code ?
    (i've already test python , c++ and purebasic but no one work :x)
    thx for you help guys

  15. #45
    Dead_Man's Avatar Active Member
    Reputation
    35
    Join Date
    Jan 2007
    Posts
    161
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: All-Jumps {(Jumping Script)} With Source!

    ^^^
    its autoit.. http://www.autoitscript.com/cgi-bin/....4.8-setup.exe

    and to anyone who doesnt trust him, just read the code you can see everything its doing, just assigning actions to keys

Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Replies: 10
    Last Post: 03-07-2011, 05:31 PM
  2. [Misc] Simple SQL Script Generator With Source!
    By Pedregon in forum WoW EMU Programs
    Replies: 7
    Last Post: 09-14-2010, 01:25 PM
  3. [LUA/SQL] What could I be doing wrong with ALL of my scripts?
    By davidknag in forum WoW EMU Questions & Requests
    Replies: 5
    Last Post: 03-15-2010, 02:46 PM
  4. Wall Climb 10x easier! Jumping script wit Auto IT
    By xxreaper008 in forum World of Warcraft Bots and Programs
    Replies: 29
    Last Post: 04-14-2008, 10:49 AM
  5. Auto-wall jumping script
    By ClearFlare in forum World of Warcraft Bots and Programs
    Replies: 21
    Last Post: 11-28-2007, 05:38 PM
All times are GMT -5. The time now is 11:00 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search