[Addon Release] [ArcEmu] SwiftDiscipline GM Addon by Twist3d menu

User Tag List

Page 3 of 9 FirstFirst 1234567 ... LastLast
Results 31 to 45 of 133
  1. #31
    LarasFriend's Avatar Member
    Reputation
    7
    Join Date
    Apr 2008
    Posts
    77
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for this, looks brilliant, but when I use it it loads the old arcemu commands :\
    Any fix for this? >.< +rep to anyone that helps me
    EDIT: I'm using enGB WoW if that makes any difference lulz
    Last edited by LarasFriend; 09-14-2008 at 01:47 PM.

    [Addon Release] [ArcEmu] SwiftDiscipline GM Addon by Twist3d
  2. #32
    Twisted7's Avatar Active Member
    Reputation
    63
    Join Date
    Aug 2008
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by LarasFriend View Post
    Thanks for this, looks brilliant, but when I use it it loads the old arcemu commands :
    Any fix for this? >.< +rep to anyone that helps me
    EDIT: I'm using enGB WoW if that makes any difference lulz
    Shouldn't matter if you're using enGB... what revision is your server running?

    When you log in, do you get a message saying "SwiftDiscipline: Server is running revision XXX... SwiftDiscipline will use the 'old/new' set of GM commands."?

    Also, when you log into the server, please post exactly what it says for server info, I don't remember how it is off the top of my head but it should be something like "Server: ArcEmu STABLE r537...."
    If the Server info message is in a different format SwiftDiscipline will not be able to parse your server's revision number and it will use the old commands by default.

    If you want to set the revision manually, copy and paste this into your chatbox:

    /script SDVars.currentRev = 583; ReloadUI()

    That might make SwiftDiscipline use the new commands, though I'm not 100% sure if it will try to revert the next time you log in.

  3. #33
    LarasFriend's Avatar Member
    Reputation
    7
    Join Date
    Apr 2008
    Posts
    77
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Its running 1010, and no I don't see SwiftDiscipline: Server is running revision XXX...
    The message is Powered By: ArcEmu TRUNK r1010/Release-Win-X86
    And uhh
    /script SDVars.currentRev = 583; ReloadUI()
    doesnt work :P

  4. #34
    Twisted7's Avatar Active Member
    Reputation
    63
    Join Date
    Aug 2008
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ahh there's the problem, the "Powered by: ..." is what's pissing Swift off and causing it not to be able to parse the revision info since it's looking for Server: Arcemu...etc.

    Question: Was this a change made by you or your server's owner, or do you know if this is a change made by ArcEmu that will occur on all servers after a specific revision?


    Anyway, to fix this just go ahead and open up SD.lua in your WoW/Interface/Addons/SwiftDiscipline folder in notepad.

    Find this code:
    Code:
    function SwDi:ParseRev(infomsg)
      local rev;
      _, _, _, rev =  string.find(infomsg, "Server:(.+)r(%d+)");
      return tonumber(rev);
    end
    And replace it with:

    Code:
    function SwDi:ParseRev(infomsg)
      local rev;
      _, _, _, rev =  string.find(infomsg, "Powered by:(.+)r(%d+)");
      return tonumber(rev);
    end
    And Swift should be able to get the revision number.

  5. #35
    LarasFriend's Avatar Member
    Reputation
    7
    Join Date
    Apr 2008
    Posts
    77
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm pretty sure thats on all ArcEmu servers.
    EDIT: +rep, thanks

  6. #36
    Porthorion's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    I think u should edit the addon

    I think u should edit the addon like have a ticket addon so u go to the addon and a list of tickets come and a GM command finder and item finder that would make the ulitamate Gm addon

  7. #37
    Twisted7's Avatar Active Member
    Reputation
    63
    Join Date
    Aug 2008
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Porthorion View Post
    I think u should edit the addon like have a ticket addon so u go to the addon and a list of tickets come and a GM command finder and item finder that would make the ulitamate Gm addon
    Soon, my friend. Or at least hopefully.


    SwiftDiscipline will likely not be receiving any more updates.


    The reason for this is that I am working on SwiftDiscipline's replacement, SwiftGM.

    SwiftGM will use a similar UI style to SwiftDiscipline, but it will support many more GM commands, split into modules so it's easier for me to handle, like SwiftCharacter, SwiftGameObject, SwiftDiscipline, SwiftNPC, SwiftModify, SwiftWaypoint, you get the idea lol. Still deciding if a rename will be in order :P

    SwiftGM will also be more flexible when it comes to GM commands... it will include a file called CommandSet.lua that allow the user to easily force SwiftGM to use a custom set of commands in case it doesn't support your emulator or revision yet. The file will be fairly heavily commented, you won't need to know a scrap of Lua to change the commands.

    Since this is a rather large project, and of course I've got IRL and WotLK to split my time between, development may take a while. I will occasionally post progress reports as to the status of the addon's development in this thread, and when it's finally complete (or at least has enough working modules for it to be released) I will make a new topic.

    Please continue to report bugs in SwiftDiscipline, since I will recycle most of its code for use in SwiftGM, and I may also be able to help you patch the bug yourself.

  8. #38
    Chrsthar's Avatar Member
    Reputation
    1
    Join Date
    Dec 2007
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome thanks, look forward to the new version

  9. #39
    Dark Phoenix's Avatar Active Member
    Reputation
    32
    Join Date
    Oct 2007
    Posts
    88
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great tool! +rep to you!

  10. #40
    erobins's Avatar Member
    Reputation
    11
    Join Date
    Aug 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Thanks !

    Great Program! I look forward to your next release of Swift Gm!

  11. #41
    mcbazza65's Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    +Rep coming your way. That's a really god Mod man. Thank you very much. =)

  12. #42
    Twisted7's Avatar Active Member
    Reputation
    63
    Join Date
    Aug 2008
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks everyone.

    Here's a small preview of SwiftGM_Gameobject. I know it's not much lol, but it's way cooler when you're actually using it and I've already got the entire module's UI planned out on paper. ETA is still unknown, though.



    Again, it doesn't look that great yet but trust me it'll get much better! This at least proves that I'm doing something :P

  13. #43
    datastream's Avatar Member
    Reputation
    1
    Join Date
    Jun 2007
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oo Nice.
    Looks great, keep it up!

  14. #44
    Power of Illuminati's Avatar Contributor
    Reputation
    179
    Join Date
    May 2008
    Posts
    1,410
    Thanks G/R
    6/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Think smaller! Like in smaller buttons and text, in my opinion, they are huge >.<

  15. #45
    Entice719's Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    big help

    Let me just say this if I had the power to rep +20 I would do so. This is a well thought out and well crafted addon. I recommend it to all admins/gms on arcemu servers. Thanks Twist3d. I look forward to more of your creations.

Page 3 of 9 FirstFirst 1234567 ... LastLast

Similar Threads

  1. [Release] Arcemu Extra Scripts
    By Herleybob in forum WoW EMU General Releases
    Replies: 3
    Last Post: 08-20-2008, 10:49 AM
  2. [Release] ArcEmu Linux Binaries
    By EcHoEs in forum WoW EMU General Releases
    Replies: 13
    Last Post: 08-11-2008, 10:58 AM
  3. [Release] ArcEmu 2.4.3 (Core & Tools)
    By _Wasabi_ in forum World of Warcraft Emulator Servers
    Replies: 12
    Last Post: 07-24-2008, 05:20 PM
  4. [Release]ArcEmu and Aspire Compiles [Updated Daily]
    By Pedregon in forum World of Warcraft Emulator Servers
    Replies: 28
    Last Post: 07-20-2008, 06:42 PM
  5. [Release]Arcemu r301 stats bugg fixed + teleporter npc
    By soul02 in forum World of Warcraft Emulator Servers
    Replies: 1
    Last Post: 07-17-2008, 11:43 AM
All times are GMT -5. The time now is 05:54 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