GM Console commands menu

User Tag List

Results 1 to 14 of 14
  1. #1
    Sonic Waffle's Avatar Contributor
    Reputation
    170
    Join Date
    Dec 2007
    Posts
    990
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    GM Console commands

    Hey all,
    I was just wondering if anyone came across where they they wanted GM commands in the game console and how to change all the commands to be parsed via the console instead of standard chat (.mod money...).
    Like Blizzlike, but for emulators.

    I've looked around at chat.cpp for a few other ideas, but it's just not the same. Also, I actually have no clue how to study the console for a possible solution to my problem, thus I am asking MMOwned!

    Thanks


    GM Console commands
  2. #2
    Kiev's Avatar Contributor
    Reputation
    288
    Join Date
    Nov 2007
    Posts
    1,819
    Thanks G/R
    0/4
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well in the ascent world.exe itself there is a few commands, to get them up type in ?, and press enter, but there might be a way to customize what you can type into it.

    Im not that sure though, my apologies.

  3. #3
    wowowns's Avatar Member
    Reputation
    2
    Join Date
    Nov 2008
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    was looking for the same thing, tell me when you figure it out please!

  4. #4
    Sonic Waffle's Avatar Contributor
    Reputation
    170
    Join Date
    Dec 2007
    Posts
    990
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey, I'm still interested actually. If you don't understand what I mean, here is a picture.



  5. #5
    Kiev's Avatar Contributor
    Reputation
    288
    Join Date
    Nov 2007
    Posts
    1,819
    Thanks G/R
    0/4
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have no idea on that section. Someone from exploits section of normal wow/programs could perhaps help you with this.




  6. #6
    Sonic Waffle's Avatar Contributor
    Reputation
    170
    Join Date
    Dec 2007
    Posts
    990
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kiev View Post
    I have no idea on that section. Someone from exploits section of normal wow/programs could perhaps help you with this.
    Might have to dig around with the WoW API then.
    Strangely enough though, when you have level 3 access on a Mangos server, the GM commands like Whois and worldport become available, which are only available to GMs on live.


  7. #7
    Apple Pi's Avatar Active Member
    Reputation
    50
    Join Date
    Feb 2009
    Posts
    108
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did you check if the other commands under the GM section become available once you have level 3 GM

    You also might want to try to use LUA Ninja and see what happens... Unlocks Blizzard API

    <3 Pi
    What once was Moonblade rose from the ashes as Apple Pi!

  8. #8
    Sonic Waffle's Avatar Contributor
    Reputation
    170
    Join Date
    Dec 2007
    Posts
    990
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Apple Pi View Post
    Did you check if the other commands under the GM section become available once you have level 3 GM

    You also might want to try to use LUA Ninja and see what happens... Unlocks Blizzard API

    <3 Pi
    Yeah, I've already done all that.

    Level 3 stuff: help gm shows nothing, it is sent serverside => clientside, since if you try to do 'help debug' on the login screen, basic commands about memory show up, later after logging in, 'whois' and '*port' commands appear.

    LuaNinja: Don't know how to execute external Lua scripts in WoW and also I don't know the variables required to do some Lua GM functions in the scripts.
    World of Warcraft API - WoWWiki - Your guide to the World of Warcraft

    /script GetGMTicket(); doesn't work afaik


  9. #9
    mmhelm's Avatar Member
    Reputation
    25
    Join Date
    Aug 2007
    Posts
    147
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This would take modifications in the client's console and possibly in the worldserver if you wanted it to handle tickets and such, currently arcemu doesn't handle things as blizzard does, example: Client makes GM tickets but cannot read them because it is the player client, so it can read text that tickets create - why were relying on addons and such to get our ticket work done on private realms. Now as far as the actual in game client goes - since I doubt anyone here has the source code for it, the only workaround to get what you want is to possibly write an addon that takes over the console, and make it have defines for example if you type Worldport Stormwind, it would already have the coordinates for stormwind set up and type them into the console properly like that, which IMO is redundant because of .recall port. but hey you wanted to find out right? :P
    Last edited by mmhelm; 01-10-2010 at 11:49 AM.

  10. #10
    Sonic Waffle's Avatar Contributor
    Reputation
    170
    Join Date
    Dec 2007
    Posts
    990
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mmhelm View Post
    This would take modifications in the client's console and possibly in the worldserver if you wanted it to handle tickets and such, currently arcemu doesn't handle things as blizzard does, example: Client makes GM tickets but cannot read them because it is the player client, so it can read text that tickets create - why were relying on addons and such to get our ticket work done on private realms.
    Refering to the Tickets, Blizzard does not even use the Client in anyway to communicate to players or read tickets. They use their own application, which is only available to them (afaik; i.e. their external IP range via web console) which consists of an IM type of program which they talk through, with the exception of other functions that are unknown to players (ticket management?).
    tl;dr: They don't use client, they use another program built into the back-end for that.
    Originally Posted by mmhelm View Post
    Now as far as the actual in game client goes - since I doubt anyone here has the source code for it, the only workaround to get what you want is to possibly write an addon that takes over the console, and make it have defines for example if you type Worldport Stormwind, it would already have the coordinates for stormwind set up and type them into the console properly like that, which IMO is redundant because of .recall port. but hey you wanted to find out right? :P
    Although I don't have the source code, I can tell you that their SL's master source copy is structed like this:
    Code:
    d:\buildserver\wow\4\work\wow-code\branches\wow-patch-3_3_0_b-branch\wow\source\Object/ObjectClient/Player_C.h

    That aside, it is possible to make a dll that would do this (establish commu. with the server, send commands processed from the console) and inject it. Addons on the otherhand, are not powerful enough to do this.

    As for why not using the '.etc' commands style, that's just horrible imho.
    1. You can't see all the commands if you do '.commands' (Dependant on Emu)
    2. It's just annoying and very messy.
    3. Aren't Emulators supposed to Emulate Blizzard's server?


  11. #11
    mkoi1's Avatar Member
    Reputation
    1
    Join Date
    Dec 2008
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So your saying the LuaNinja unlock blizz api?? If so, how do i install it?

  12. #12
    Caros2013's Avatar Active Member CoreCoins Purchaser
    Reputation
    67
    Join Date
    Jan 2007
    Posts
    153
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What is blizz api?



  13. #13
    mkoi1's Avatar Member
    Reputation
    1
    Join Date
    Dec 2008
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Blizz API is like the picture above but with all GM commands enabled...

  14. #14
    kreshdev's Avatar Private
    Reputation
    1
    Join Date
    Oct 2011
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This sounds really interesting... I have been using the console for a few years now, on retail and private servers and it is really captivating.

Similar Threads

  1. Nice console commands for better graphixx
    By Hanss in forum World of Warcraft General
    Replies: 1
    Last Post: 12-01-2010, 07:08 PM
  2. Cataclysm New Console Commands List
    By hp94 in forum World of Warcraft General
    Replies: 5
    Last Post: 09-21-2010, 10:11 AM
  3. Console Command List
    By Shwiboo in forum WoW UI, Macros and Talent Specs
    Replies: 2
    Last Post: 10-25-2009, 11:36 AM
  4. PTR fun with console command
    By feiern in forum World of Warcraft Exploits
    Replies: 26
    Last Post: 09-25-2007, 06:22 PM
  5. WoW Console Commands [X-Post from another site.]
    By n4cht in forum World of Warcraft Exploits
    Replies: 30
    Last Post: 03-22-2007, 05:36 AM
All times are GMT -5. The time now is 02:13 AM. 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