Results 1 to 5 of 5
  1. #1
    xvini95's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    Angels Online Hack

    I wonder if anyone knows any hack for Angels Online
    Actually, it's not really a hack that I want, but some kind of " macro "
    That works as follows:
    if I press SPACE , my char will use full combo, like ( f1 + f2 + f3 + weapon switch + f4 + f5 )
    the game link is ao.igg.com

  2. #2
    InunoTaishou's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    The Internet
    Posts
    446
    Reputation
    20
    Thanks
    951
    My Mood
    Relaxed
    Go check out AutoIt or Auto Hot Key. They're both scripting languages that are extremely simple to learn and use if you just spend a little time reading the help documents

    Here's a macro script in AutoIt
    Code:
    ;==>	Space will be the key and Macro is the name of the function
    HotKeySet("{Space}", "myMacro")
    ;==>	End will be the key and closeScript is the name of the function
    HotKeySet("{End}", "closeScript")
    
    ;==>	Just an infinite loop that prevents the script from closing
    While 1
       Sleep(250)
    Wend
    
    Func myMacro()
       Send("{F1}")
       Sleep(250)
       Send("{F2}")
       Sleep(250)
       Send("{F3}")
       Sleep(250)
       ;==>	This would be where you switch weapon, idk how you do it in the game
       Sleep(250)
       Send("{F4}")
       Sleep(250)
       Send("{F5}")
       ToolTip("Combo Complete!")
       Sleep(500)
       ToolTip("")
    EndFunc
    
    Func closeScript()
       Exit
    EndFunc
    https://www.mpgh.net/forum/signaturepics/sigpic210976_1.gif

  3. The Following User Says Thank You to InunoTaishou For This Useful Post:

    xvini95 (03-30-2015)

  4. #3
    piticu81's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Location
    romania
    Posts
    7
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    tanks man for this

  5. #4
    xvini95's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Nice, thank you.
    I'll check it out!
    Apreciatte that ^^
    The weapon switcher command is: Alt+'
    How to use it in code?
    Last edited by xvini95; 03-30-2015 at 06:02 AM. Reason: Wrong write

  6. #5
    InunoTaishou's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    The Internet
    Posts
    446
    Reputation
    20
    Thanks
    951
    My Mood
    Relaxed
    Quote Originally Posted by xvini95 View Post
    Nice, thank you.
    I'll check it out!
    Apreciatte that ^^
    The weapon switcher command is: Alt+'
    How to use it in code?
    https://www.autoitscrip*****m/autoit3...x/SendKeys.htm
    https://www.mpgh.net/forum/signaturepics/sigpic210976_1.gif

  7. The Following User Says Thank You to InunoTaishou For This Useful Post:

    xvini95 (03-30-2015)

Similar Threads

  1. [Request] Angels Online Hack?
    By maxx2012 in forum Hack Requests
    Replies: 1
    Last Post: 02-11-2013, 12:49 PM
  2. Mythwar Online Hacked
    By Dave84311 in forum General Game Hacking
    Replies: 35
    Last Post: 02-26-2008, 11:46 PM
  3. Ragnarok Online HAck
    By dadadum in forum General Game Hacking
    Replies: 1
    Last Post: 02-04-2006, 04:25 AM
  4. KO Online Hacked?
    By Dave84311 in forum General Game Hacking
    Replies: 4
    Last Post: 01-18-2006, 07:03 PM
  5. [SEARCH]SHOT-Online Hack(golf game)
    By ryan5458 in forum Hack Requests
    Replies: 2
    Last Post: 01-18-2006, 07:57 AM