[Addon] GuideHelper! menu

Shout-Out

User Tag List

Results 1 to 11 of 11
  1. #1
    Blackclown666's Avatar Member
    Reputation
    19
    Join Date
    Oct 2007
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Addon] GuideHelper!

    Hi, i was looking at this thread: http://www.mmowned.com/forums/wow-gu...new-guide.html , when someone was talking about how annoying it was, that you had to minimize the game everytime you had to read a new step.

    So i made an addon :P Its called GuideHelper. It's a box ingame with 2 buttons. A "Back" and "Next" button. It cycles through the steps of a guide. The WoWAddicts lvl 1-6 guide is included. The steps is stored in a LUA file. To make more steps, open the guide (http://aoc-online.org/mmowned/wow-1-70-v1.pdf) and make a new .lua file in this format:

    Code:
     
    steps = {
    [1] = "Step1",
    [2] = "Step2",
    [3] = "Step3",
    [etc..] = "ect..",
    [65] = "Thanks for using this guide!"
    }
    Notice: after the last step, i didn't make a comma. Remember NOT to make a comma there.

    After you made that. Save it as(example): Guide lvl X to X.LUA

    Place it in your Interface\Addons\Guide\ directory, open your Guide.TOC file. and make the following changes:

    Code:
    ## X-AutoGenerated: true
    ## X-GeneratorComment: Basic project properties and project files will be automatically added during deployment. Properties added by the user will be copied without changes.
    ## Interface: 20300
    ## Title: GuideHelper
    ## Notes: Make the guides go ingame!
    ## Author: Jeppe Larsen
    ## Version: 1.0
    Frame.xml
    Frame.lua
    WoWAddict Dwarf 1 6.lua
    Change the red part, to you new file. Example:

    Code:
    ## X-AutoGenerated: true
    ## X-GeneratorComment: Basic project properties and project files will be automatically added during deployment. Properties added by the user will be copied without changes.
    ## Interface: 20300
    ## Title: GuideHelper
    ## Notes: Make the guides go ingame!
    ## Author: Jeppe Larsen
    ## Version: 1.0
    Frame.xml
    Frame.lua
    Guide lvl X to X.lua


    GuideHelper.rar - 3.6 Kb

    EDIT: Fixed a minor bug. Please download again, for the fully working version.

    Screenshot:

    Hope you guys can use it

    -Blackclown
    Last edited by Blackclown666; 05-25-2008 at 11:50 AM.

    [Addon] GuideHelper!
  2. #2
    Earelad's Avatar Banned
    Reputation
    20
    Join Date
    Sep 2007
    Posts
    248
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice.

    +rep
    thanks

  3. #3
    Aznex's Avatar Contributor
    Reputation
    128
    Join Date
    Feb 2008
    Posts
    770
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can we add more than one guide at once?

  4. #4
    Blackclown666's Avatar Member
    Reputation
    19
    Join Date
    Oct 2007
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vinyl View Post
    Can we add more than one guide at once?

    You can make 2 .lua files for example. And add both in the .TOC file. BUT, the numbers have to be different. For example, you could make a "1 to 6 dwarf.lua" and a "6 to 12 dwarf.lua". Add them both in the TOC, like this:

    Code:
     
    ## X-AutoGenerated: true
    ## X-GeneratorComment: Basic project properties and project files will be automatically added during deployment. Properties added by the user will be copied without changes.
    ## Interface: 20300
    ## Title: GuideHelper
    ## Notes: Make the guides go ingame!
    ## Author: Jeppe Larsen
    ## Version: 1.0
    Frame.xml
    Frame.lua
    1 to 6 dwarf.lua
    6 to 12 dwarf.lua
    But, then the 6 to 12 have to continue from the 1 to 6 guide.
    Like this

    1 to 6 dwarf.lua

    Code:
     
    steps = {
    [1] = "Go level from 1 to 6",
    [2] = "Done :)"
    }
    Then the 6 to 12 had to be like this:

    Code:
     
    steps = {
    [3] = "Now you have to level from 6 to 12 ;)",
    [4] = "Thanks for using this guide"
    }
    Hope you understood.

    -Blackclown
    Last edited by Blackclown666; 05-25-2008 at 11:08 AM.

  5. #5
    moffett's Avatar Member
    Reputation
    18
    Join Date
    May 2007
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    mind showing a SS or something cause so far this sounds like Metamap

  6. #6
    Blackclown666's Avatar Member
    Reputation
    19
    Join Date
    Oct 2007
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by moffett View Post
    mind showing a SS or something cause so far this sounds like Metamap

    Screenshot added

  7. #7
    moffett's Avatar Member
    Reputation
    18
    Join Date
    May 2007
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ehh Grats on making this but MetaMap does the same thing and more

  8. #8
    Blackclown666's Avatar Member
    Reputation
    19
    Join Date
    Oct 2007
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by moffett View Post
    ehh Grats on making this but MetaMap does the same thing and more
    MetaMap does'nt show the text.

  9. #9
    IBeSeeN's Avatar Member
    Reputation
    1
    Join Date
    May 2007
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok i have tryed this a few times and still cant get it to work... it's not even giving me the option to enable/disable it on the addons
    Last edited by IBeSeeN; 05-25-2008 at 01:06 PM.

  10. #10
    Aznex's Avatar Contributor
    Reputation
    128
    Join Date
    Feb 2008
    Posts
    770
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Blackclown666 View Post
    You can make 2 .lua files for example. And add both in the .TOC file. BUT, the numbers have to be different. For example, you could make a "1 to 6 dwarf.lua" and a "6 to 12 dwarf.lua". Add them both in the TOC, like this:

    Code:
     
    ## X-AutoGenerated: true
    ## X-GeneratorComment: Basic project properties and project files will be automatically added during deployment. Properties added by the user will be copied without changes.
    ## Interface: 20300
    ## Title: GuideHelper
    ## Notes: Make the guides go ingame!
    ## Author: Jeppe Larsen
    ## Version: 1.0
    Frame.xml
    Frame.lua
    1 to 6 dwarf.lua
    6 to 12 dwarf.lua
    But, then the 6 to 12 have to continue from the 1 to 6 guide.
    Like this

    1 to 6 dwarf.lua

    Code:
     
    steps = {
    [1] = "Go level from 1 to 6",
    [2] = "Done :)"
    }
    Then the 6 to 12 had to be like this:

    Code:
     
    steps = {
    [3] = "Now you have to level from 6 to 12 ;)",
    [4] = "Thanks for using this guide"
    }
    Hope you understood.

    -Blackclown
    wow thanks you're really helpful! downloading new version right now!

  11. #11
    Blackclown666's Avatar Member
    Reputation
    19
    Join Date
    Oct 2007
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by IBeSeeN View Post
    Ok i have tryed this a few times and still cant get it to work... it's not even giving me the option to enable/disable it on the addons

    Try to rename the Addon folder from "GuideHelper" to "Guide". I will fix it with a new download when i get i proper computer

    -Blackclown

Similar Threads

  1. wow_kings list of best addons
    By Elites360 in forum World of Warcraft Bots and Programs
    Replies: 20
    Last Post: 11-20-2006, 01:33 PM
  2. Your favorite addons!
    By bloodofwar in forum World of Warcraft General
    Replies: 7
    Last Post: 11-06-2006, 11:26 AM
  3. Addon/Program
    By phoenix in forum World of Warcraft General
    Replies: 3
    Last Post: 07-22-2006, 07:07 AM
  4. Handy Auction addon
    By Shanaar in forum World of Warcraft General
    Replies: 7
    Last Post: 07-20-2006, 05:04 PM
  5. Addon!
    By evancooleo in forum World of Warcraft General
    Replies: 8
    Last Post: 07-14-2006, 02:33 PM
All times are GMT -5. The time now is 12:11 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search