[Request] AutoIT Script for Tome Unlocks(Look Inside) menu

User Tag List

Results 1 to 13 of 13
  1. #1
    Tinny's Avatar Active Member
    Reputation
    46
    Join Date
    Aug 2008
    Posts
    237
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Request] AutoIT Script for Tome Unlocks(Look Inside)

    After using the AutoIT Script to get the Targeting Tome, I was trying to find another script or two for the following Unlocks.

    Flirt -- Talk to 100 citizens while unarmored.
    Tease -- Talk to 1000 citizens while unarmored.
    Vamp -- Talk to 10000 citizens while unarmored.

    The Showoff -- Perform 100 abilities while unarmored.
    The Showman -- Perform 1000 abilities while unarmored.
    The Exhibitionist -- Perform 10000 abilities while unarmored.

    If anyone can make something for each of these, it would be great. Thanks.

    [Request] AutoIT Script for Tome Unlocks(Look Inside)
  2. #2
    Killalots's Avatar Contributor
    Reputation
    237
    Join Date
    May 2008
    Posts
    658
    Thanks G/R
    22/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What does it mean "abilities"

  3. #3
    Tinny's Avatar Active Member
    Reputation
    46
    Join Date
    Aug 2008
    Posts
    237
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I believe like spells, so like instant buffs on yourself, etc.

  4. #4
    Nekrael's Avatar Member
    Reputation
    5
    Join Date
    Jul 2007
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'll be posting something for the cast x number of spells unarmored titles in the next few days. It will only work for a class with an ability that can be spammed repeatedly out of combat, such as Restore Essence - Abilities - Warhammer Online or any similar spell with little to no cd.

  5. #5
    Nafnlaus's Avatar Member CoreCoins Purchaser
    Reputation
    6
    Join Date
    Jun 2007
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ----------
    Last edited by Nafnlaus; 06-13-2017 at 07:32 PM.

  6. #6
    Tinny's Avatar Active Member
    Reputation
    46
    Join Date
    Aug 2008
    Posts
    237
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just an update, for people who have used the script on these forums for the Emperor title that using the marco in slot 9. if you are a class, like myself, a Shaman, with a spell that can be used OOC and with no CD then just place that spell into the slot 9 of your Action Bar 1. This will spam it non-stop with the only thing stopping it, is being the Action Points it requires.

    So, this solves the X amount of spells unarmored, but still looking for a script to talk to an NPC, close, re-talk, etc.

    Also, MaXiMiUS, I'm going to agree with you, these scripts probably take little to no time at all to create, however, people like myself whom are not good with making scripts have problems understanding how to create them in the first place.

  7. #7
    poltrigiest's Avatar Active Member
    Reputation
    15
    Join Date
    May 2007
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    for casting abilities use this script:
    Code:
    WinWaitActive("Warhammer: Age of Reckoning, Copyright 2001-2008 Electronic Arts, Inc.")              
    HotKeySet("{DEL}", "Start")
    HotKeySet("!{DEL}","Quit")
    TogglePause()
    func Start()
        HotKeySet("{DEL}")
        HotKeySet("{DEL}", "TogglePause")
        ToolTip('CP On!',0,0)
        
    While 1 = 1
            
        WinActivate("Warhammer: Age of Reckoning, Copyright 2001-2008 Electronic Arts, Inc.")
        
        Send("{1}")
        Sleep(1600)
        
    WEnd
    EndFunc
    
    Func TogglePause()
        ToolTip('CP Off!',0,0)
        HotKeySet("{DEL}")
        HotKeySet("{DEL}", "Start")
    While 1
        sleep(100)
    WEnd
    EndFunc
    
    func Quit()
    Exit
    EndFunc
    or download it here
    Edit: put the ability you want to cast in the 1 hotkey.

    for talking to citizen you have to do a little more than use a script
    zoom your camera all the way in so you can't see your character
    stand right in front of a citizen and center them on your screen
    now use the following script:
    Code:
    WinWaitActive("Warhammer: Age of Reckoning, Copyright 2001-2008 Electronic Arts, Inc.")              
    HotKeySet("{DEL}", "Start")
    HotKeySet("!{DEL}","Quit")
    TogglePause()
    func Start()
        HotKeySet("{DEL}")
        HotKeySet("{DEL}", "TogglePause")
        ToolTip('CP On!',0,0)
        
    While 1 = 1
            
        WinActivate("Warhammer: Age of Reckoning, Copyright 2001-2008 Electronic Arts, Inc.")
            MouseClick("right", 638, 412, 1, 0)
            Sleep(500)
        
    WEnd
    EndFunc
    
    Func TogglePause()
        ToolTip('CP Off!',0,0)
        HotKeySet("{DEL}")
        HotKeySet("{DEL}", "Start")
    While 1
        sleep(100)
    WEnd
    EndFunc
    
    func Quit()
    Exit
    EndFunc
    or download it here
    Last edited by poltrigiest; 10-28-2008 at 05:04 PM.

  8. #8
    Tinny's Avatar Active Member
    Reputation
    46
    Join Date
    Aug 2008
    Posts
    237
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Will try these now, and update.

    Thanks so much.

  9. #9
    Tomy16's Avatar Member
    Reputation
    2
    Join Date
    Nov 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks !
    I'll try them...

  10. #10
    Tomy16's Avatar Member
    Reputation
    2
    Join Date
    Nov 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it's seems to don't work...
    Windowed mode is supported ?
    1280x960 is ok ?

    I'm in zoom max, in front of the citizen, he is in the center of my screen, should i select him or not ?

  11. #11
    informercial's Avatar Member
    Reputation
    1
    Join Date
    Dec 2008
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The wierdest thing. I have the simplest autoit script known to man, and it does not work INGAME - for some reason WAR isn't registering the key inputs. Script is simply:

    while 1 = 1
    sleep(1600)
    Send("{tab}")
    sleep(1600)
    Send("{1}")
    sleep(1600)
    Send("{r}")
    sleep(1600)
    Send("{1}")
    sleep(1600)
    Send("{e}")
    sleep(1600)
    Send("{1}")
    sleep(1600)
    Send("{r}")
    sleep(1600)
    Send("{1}")
    sleep(1600)
    Send("{e}")
    sleep(1600)
    Wend

    If I'm running the script, nothing happens while in WAR, although it works outside. As a side note, I use Vista 64bit, not sure it makes a difference?

    Anyone else having problems?

  12. #12
    babramski's Avatar Member
    Reputation
    7
    Join Date
    May 2008
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just tested the exact thing you copied and pasted and it works for me.

    Win xp pro 32 bit.

  13. #13
    informercial's Avatar Member
    Reputation
    1
    Join Date
    Dec 2008
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Damn. Anyone have a fix? Aside from a different OS obviously Thanks for the response babramski!

    EDIT: FIXED. Solution was to add #requireadmin at the top of the script.
    Last edited by informercial; 12-16-2008 at 10:50 PM.

Similar Threads

  1. Requesting for AutoIT script for monk with 1024x768 window mode
    By dodongkaldero in forum D3 Gold profiles
    Replies: 2
    Last Post: 07-07-2012, 08:52 PM
  2. [Request] AutoIT scripts for Monks
    By sleepwalkerm in forum Diablo 3 Bots Questions & Requests
    Replies: 2
    Last Post: 06-10-2012, 09:25 AM
  3. [ArcEmu] [Request]Lua Script for Gameobjects
    By SupernovaHH in forum WoW EMU Questions & Requests
    Replies: 2
    Last Post: 07-31-2010, 04:07 PM
  4. Autoit script for the neutral AH scam
    By bloodninja in forum World of Warcraft Bots and Programs
    Replies: 15
    Last Post: 05-16-2008, 06:29 AM
  5. Looking for honor grindin (Look inside)
    By Xepher in forum Members Only Gold And Powerleveling Buy Sell
    Replies: 0
    Last Post: 02-29-2008, 07:11 PM
All times are GMT -5. The time now is 02:18 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