script menu

User Tag List

Thread: script

Results 1 to 8 of 8
  1. #1
    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)

    script

    a script i found saved on my comp somewere i think my brother might have made it anyways here...
    ...
    ...


    $keybutton = "Down"
    $trigbutton = "Up"
    $CurrentlyRunning = 0
    $WoWWasRunning = 0
    $WoWRunning = 0
    $SleepTime = 700
    $ChooseSettings = 0

    ;Include constants
    #include <GUIConstants.au3>

    Global $GUIWidth
    Global $GUIHeight

    $GUIWidth = 180
    $GUIHeight = 120

    ;Create window
    GUICreate("New GUI", $GUIWidth, $GUIHeight)

    ;Text box with "Down"
    $Edit_1 = GUICtrlCreateEdit("Down", 10, 20, 70, 35)

    ;Text box with "Up"
    $Edit_2 = GUICtrlCreateEdit("Up", 100, 20, 70, 35)

    ;Create an "Start!" button
    $OK_Btn = GUICtrlCreateButton("Start!", 55, 60, 70, 25)

    ;Create a "Cancel" button
    $Cancel_Btn = GUICtrlCreateButton("Cancel", 55, 85, 70, 25)

    ;Labels
    GuiCtrlCreateLabel("Mash Button", 10, 0, 70, 20)
    GuiCtrlCreateLabel("Trigger Button", 100, 0, 70, 20)


    ;Show window
    GUISetState(@SW_SHOW)

    ;Loop until OK or Cancel or X:
    While $ChooseSettings = 0
    ;After every loop check if the user clicked something in the GUI window
    $msg = GUIGetMsg()

    Select

    ;Check if user clicked on the X button
    Case $msg = $GUI_EVENT_CLOSE
    ;Destroy the GUI including the controls
    GUIDelete()
    ;Exit the script
    Exit

    ;Check if user clicked on the "Start!" button
    Case $msg = $OK_Btn
    $keybutton = GUICtrlRead($Edit_1)
    $Trigbutton = GUICtrlRead($Edit_2)
    Msgbox(64, "nenr", $keybutton & ", " & $trigbutton)
    $ChooseSettings = 1

    ;Check if user clicked on the "Cancel" button
    Case $msg = $Cancel_Btn
    GUIDelete()
    Exit

    EndSelect

    WEnd

    ;Stumpii's Code, From his script but slightly modified to work with variables.

    GUIDelete()
    ; Initial stuff
    HotKeySet("{" & $Trigbutton & "}", "ToggleState")

    #Region --- CodeWizard generated code Start ---
    ;MsgBox features: Title=Yes, Text=Yes, Buttons=OK, Icon=Warning
    MsgBox(48,"Autotravel Move","Using this program may violate the TOS of the WoW game. Use at you own risk.")
    #EndRegion --- CodeWizard generated code End ---

    while 1

    ; Capture whether WoW has run this session
    If WinExists("World of Warcraft") Then
    $WoWRunning = 1
    EndIf

    ; If WoW has run at some point
    If $WoWRunning = 1 Then
    ; But is not running now...
    If not WinExists("World of Warcraft") Then
    ; Quit
    Exit
    EndIf
    Endif

    if $CurrentlyRunning = 1 Then
    ControlSend( "World of Warcraft", "", "", "{" & $Keybutton & "}")
    endif

    ; Random Number Generator
    $Sleeptime = Random(500, 700)
    sleep($Sleeptime)
    Wend

    Func ToggleState()
    $CurrentlyRunning = not $CurrentlyRunning
    EndFunc




    -----)(Please leave the copyright text intact)(-----
    This post is copyright by the user posting it and MMOwned.com - World of Warcraft Exploits,Hacks, Bots and Guides, where it was posted. You may not copy or reproduce this information on any other site without written permission from both the poster and MMOwned.com

    script
  2. #2
    wtfx's Avatar Active Member
    Reputation
    40
    Join Date
    Feb 2007
    Posts
    210
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: script

    What does it do, because i see alot of "destroy" "delete" "end" ..

  3. #3
    Flying Piggy's Avatar Banned
    Reputation
    1169
    Join Date
    Jan 2007
    Posts
    2,286
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: script

    Its an Autoit anti-AFK script that just sends up and down every once in a while .
    I compiled it and it looks like this :



    Its harmless by the way .

  4. #4
    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: script

    i dont know wut it does my brother made it for gui or sumthin it hink its an undetectable random anit afk instead of jumping ever 5 sec i moves any direction every 5-8 sec i think

  5. #5
    Flying Piggy's Avatar Banned
    Reputation
    1169
    Join Date
    Jan 2007
    Posts
    2,286
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: script

    Its made for WoW actualy , but it could work with any other game i suppose . Just compile it and see for yourself , its a pretty nice little program : )

  6. #6
    Legola's Avatar Member
    Reputation
    1
    Join Date
    Mar 2007
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: script

    Heya, I'm new to hacking WoW, and I was wondering, what do you use to compile the scripts? And are there any guides anywhere that teach you how to make scripts?

  7. #7
    Flying Piggy's Avatar Banned
    Reputation
    1169
    Join Date
    Jan 2007
    Posts
    2,286
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: script

    Originally Posted by Legola
    Heya, I'm new to hacking WoW, and I was wondering, what do you use to compile the scripts? And are there any guides anywhere that teach you how to make scripts?
    All you need to know is there : http://www.mmowned.com/forums/genera...g-e-books.html

  8. #8
    Beastslayer's Avatar Active Member
    Reputation
    46
    Join Date
    Dec 2006
    Posts
    235
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: script

    it's not exactly hacking. most of the stuff posted in here is auto-it. you can download it here: www.autoitscripts.com . you can compile the scripts by right clicking your desktop, then hit "new .au3 document" then when it opens up you just copy + paste whatever, then save it. then go to start, all programs, hover over auto it V3 and click on compile scripts to exe.

Similar Threads

  1. I got banned by using that, Anti AFK auto queue script or w/e
    By julian_in in forum World of Warcraft General
    Replies: 22
    Last Post: 11-03-2006, 02:30 PM
  2. Can somone script this for me pleasE?
    By Delth3n in forum Community Chat
    Replies: 0
    Last Post: 10-10-2006, 06:03 PM
  3. Im Looking For A /script Macro... Plz Help
    By codycondame in forum World of Warcraft General
    Replies: 0
    Last Post: 10-05-2006, 02:04 PM
  4. Any Anti AFK Scripts available?
    By paboee in forum World of Warcraft General
    Replies: 2
    Last Post: 08-30-2006, 09:11 AM
  5. [Program] WoW Jumper AntiAFK Script
    By Cypher in forum World of Warcraft Bots and Programs
    Replies: 5
    Last Post: 06-23-2006, 10:38 PM
All times are GMT -5. The time now is 02:36 AM. 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