ArcEMU Character Titles menu

User Tag List

Results 1 to 4 of 4
  1. #1
    Balexgt's Avatar Member
    Reputation
    3
    Join Date
    Apr 2007
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    ArcEMU Character Titles

    I was looking around my database to see what code it what for titles and i came up short. all i have is when you change the number in "Characters" table under "Available_pvp_titles" if you change it to 37 you get "the Explorer" title and 36 you get "the Exalted"

    I wanted to know if anyone else nows more or has a list of the title numbers
    Why Read a book when they will just make it into a movie.....

    ArcEMU Character Titles
  2. #2
    Balexgt's Avatar Member
    Reputation
    3
    Join Date
    Apr 2007
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok after a few hours of looking i found what i beleave to be them all.

    The number corresponds to the title:

    1=Private
    2=Corporal
    3=Sergeant
    4=Master Sergeant
    5=Sergeant Major
    6=Knight
    7=Knight-Lieutenant
    8=Knight-Capain
    9=Knight-Champion
    10=Lieutenant Commander
    11=Commander
    12=Marshal
    13=Field Marshal
    14=Grand Marshal
    15=Scout
    16=Grunt
    17=Sergeant
    18=Senior Sergeant
    19=First Sergeant
    20=Stone Guard
    21=Blood Guard
    22=Legionnaire
    23=Centurion
    24=Champion
    25=Lieutenant General
    26=General
    27=Warlord
    28=High Warlord
    29=Gladiator
    30=Duelist
    31=Rival
    32=Challanger
    33=Scarab Lord
    34=Conqueror
    35=Justicar
    36=Champion of the Naaru
    37=Merciless Gladiator
    38=of the Shattered Sun
    39=, Hand of A'dal'
    40=Vengeful Gladiator
    41=Battlemaster
    42=the Seeker
    43=Elder
    44=Flame Warden
    45=Flame Keeper
    46=the Exalted
    47=the Explorer
    48=the Diplomat
    49=Brutal Gladiator
    50=Arena Master
    51=Salty
    52=Chef
    53=the Supreme
    54=of the Ten Storms
    55=of the Emerald Dream
    56=Crusader
    57=Prophet
    58=the Malefic
    59=Stalker
    60=of the Ebon Blade
    61=Archmage
    62=Warbringer
    63=Assassin
    64=Grand Master Alchemist
    65=Grand Master Blacksmith
    66=Iron Chef
    67=Grand Master Enchanter
    68=Grand Master Engineer
    69=Doctor
    70=Grand Master Angler
    71=Grand Master Herbalist
    72=Grand Master Scribe
    73=Grand Master Jewelcrafter
    74=Grand Master Leatherworker
    75=Grand Master Miner
    76=Grand Master Skinner
    77=Grand Master Tailor
    78=of Quel'Thalas
    79=of Argus
    80=of Khaz Moden
    81=of Gnomeregan
    82=the Lion Hearted
    83=, Champion of Elune
    84=, Hero of Orgrimmar
    85=Plainsrunner
    86=of the Darkspear
    87=the Forsaken
    88=the Magic Seeker
    89=Twilight Vanquisher
    90=, Conqueror of Naxxramas
    91=Hero of Northrend
    92=the Hallowed
    93=Loremaster
    94=of the Alliance
    95=of the Horde
    96=the Flawless Victor
    97=Champion of the Frozen Wastes
    98=Ambassador
    99=the Argent Champion
    100=Guardian of Cenarius
    101=Brewmaster
    102=Merrymaker
    103=the Love Fool
    104=Matron
    105=Patron
    106=Obsidian Slayer
    107=of the Nightfall
    108=the Immortal
    109=the Undying
    110=Jenkins
    111=Bloodsail Admiral
    Why Read a book when they will just make it into a movie.....

  3. #3
    Choices's Avatar Member
    Reputation
    94
    Join Date
    Apr 2008
    Posts
    231
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's all in player.h

    Code:
    enum RankTitles
    {
    	PVPTITLE_NONE					= 0,
    	PVPTITLE_PRIVATE				= 1,
    	PVPTITLE_CORPORAL				= 2,
    	PVPTITLE_SERGEANT				= 3,
    	PVPTITLE_MASTER_SERGEANT			= 4,
    	PVPTITLE_SERGEANT_MAJOR				= 5,
    	PVPTITLE_KNIGHT					= 6,
    	PVPTITLE_KNIGHT_LIEUTENANT			= 7,
    	PVPTITLE_KNIGHT_CAPTAIN				= 8,
    	PVPTITLE_KNIGHT_CHAMPION			= 9,
    	PVPTITLE_LIEUTENANT_COMMANDER			= 10,
    	PVPTITLE_COMMANDER				= 11,
    	PVPTITLE_MARSHAL				= 12,
    	PVPTITLE_FIELD_MARSHAL				= 13,
    	PVPTITLE_GRAND_MARSHAL				= 14,
    	PVPTITLE_SCOUT					= 15,
    	PVPTITLE_GRUNT					= 16,
    	PVPTITLE_HSERGEANT				= 17,
    	PVPTITLE_SENIOR_SERGEANT			= 18,
    	PVPTITLE_FIRST_SERGEANT				= 19,
    	PVPTITLE_STONE_GUARD				= 20,
    	PVPTITLE_BLOOD_GUARD				= 21,
    	PVPTITLE_LEGIONNAIRE				= 22,
    	PVPTITLE_CENTURION				= 23,
    	PVPTITLE_CHAMPION				= 24,
    	PVPTITLE_LIEUTENANT_GENERAL			= 25,
    	PVPTITLE_GENERAL				= 26,
    	PVPTITLE_WARLORD				= 27,
    	PVPTITLE_HIGH_WARLORD				= 28,
    	PVPTITLE_GLADIATOR				= 29,
    	PVPTITLE_DUELIST				= 30,
    	PVPTITLE_RIVAL					= 31,
    	PVPTITLE_CHALLENGER				= 32,
    	PVPTITLE_SCARAB_LORD				= 33,
    	PVPTITLE_CONQUEROR				= 34,
    	PVPTITLE_JUSTICAR				= 35,
    	PVPTITLE_CHAMPION_OF_THE_NAARU			= 36,
    	PVPTITLE_MERCILESS_GLADIATOR			= 37,
    	PVPTITLE_OF_THE_SHATTERED_SUN			= 38,
    	PVPTITLE_HAND_OF_ADAL				= 39,
    	PVPTITLE_VENGEFUL_GLADIATOR			= 40,
    	PVPTITLE_BATTLEMASTER				= 41,
    	PVPTITLE_THE_SEEKER				= 42,
    	PVPTITLE_ELDER					= 43,
    	PVPTITLE_FLAME_WARDEN				= 44,
    	PVPTITLE_FLAME_KEEPER				= 45,
    	PVPTITLE_THE_EXALTED				= 46,
    	PVPTITLE_THE_EXPLORER				= 47,
    	PVPTITLE_THE_DIPLOMAT				= 48,
    	PVPTITLE_BRUTAL_GLADIATOR			= 49,
    	PVPTITLE_ARENA_MASTER				= 50,
    	PVPTITLE_SALTY					= 51,
    	PVPTITLE_CHEF					= 52,
    	PVPTITLE_THE_SUPREME				= 53,
    	PVPTITLE_OF_THE_TEN_STORMS			= 54,
    	PVPTITLE_OF_THE_EMERALD_DREAM			= 55,
    	PVPTITLE_CRUSADER				= 56,
    	PVPTITLE_PROPHET				= 57,
    	PVPTITLE_THE_MALEFIC				= 58,
    	PVPTITLE_STALKER				= 59,
    	PVPTITLE_OF_THE_EBON_BLADE			= 60,
    	PVPTITLE_ARCHMAGE				= 61,
    	PVPTITLE_WARBRINGER				= 62,
    	PVPTITLE_ASSASSIN				= 63,
    	PVPTITLE_GRAND_MASTER_ALCHEMIST			= 64,
    	PVPTITLE_GRAND_MASTER_BLACKSMITH		= 65,
    	PVPTITLE_IRON_CHEF = 66,
    	PVPTITLE_GRAND_MASTER_ENCHANTER = 67,
    	PVPTITLE_GRAND_MASTER_ENGINEER = 68,
    	PVPTITLE_DOCTOR = 69,
    	PVPTITLE_GRAND_MASTER_ANGLER = 70,
    	PVPTITLE_GRAND_MASTER_HERBALIST = 71,
    	PVPTITLE_GRAND_MASTER_SCRIBE = 72,
    	PVPTITLE_GRAND_MASTER_JEWLCRAFTER = 73,
    	PVPTITLE_GRAND_MASTER_LETHERWORKER = 74,
    	PVPTITLE_GRAND_MASTER_MINER = 75,
    	PVPTITLE_GRAND_MASTER_SKINNER = 76,
    	PVPTITLE_GRAND_MASTER_TAILOR = 77,
    	PVPTITLE_OF_QUEL_THALAS = 78,
    	PVPTITLE_OF_ARGUS = 79,
    	PVPTITLE_OF_KHAZ_MODAN = 90,
    	PVPTITLE_OF_GNOMEREGAN = 81,
    	PVPTITLE_THE_LION_HEARTHED = 82,
    	PVPTITLE_CHAMPION_OF_ELUNE = 83,
    	PVPTITLE_HERO_OF_ORGIMMAR = 84,
    	PVPTITLE_PLAINSRUNNER = 85,
    	PVPTITLE_OF_THE_DARKSPEARTRIPE = 86,
    	PVPTITLE_THE_FORSAKEN = 87,
    	PVPTITLE_THE_MAGIC_SEEKER = 88,
    	PVPTITLE_TWILIGHT_VANQUISHER = 89,
    	PVPTITLE_CONQUEROR_OF_NAXXRAMAS = 90,
    	PVPTITLE_HERO_OF_NORTHREND = 91,
    	PVPTITLE_THE_HALLOWED = 92,
    	PVPTITLE_LOREMASTER = 93,
    	PVPTITLE_OF_THE_ALLIANCE = 94,
    	PVPTITLE_OF_THE_HORDE = 95,
    	PVPTITLE_THE_FLAWLESS_VICTOR = 96,
    	PVPTITLE_CHAMPION_OF_THE_FROZEN_WASTES = 97,
    	PVPTITLE_AMBASSADOR = 98,
    	PVPTITLE_THE_ARGENT_CHAMPION = 99,
    	PVPTITLE_GUARDIAN_OF_CENARIUS = 100,
    	PVPTITLE_BREWMASTER = 101,
    	PVPTITLE_MERRYMAKER = 102,
    	PVPTITLE_THE_LOVE_FOOL = 103,
    	PVPTITLE_MATRON = 104,
    	PVPTITLE_PATRON = 105,
    	PVPTITLE_OBSIDIAN_SLAYER = 106,
    	PVPTITLE_OF_THE_NIGHTFALL = 107,
    	PVPTITLE_THE_IMMORTAL = 108,
    	PVPTITLE_THE_UNDYING = 109,
    	PVPTITLE_JENKINS = 110,
    	PVPTITLE_BLOODSAIL_ADMIRAL = 111,
    	PVPTITLE_INVISIBLE_NAME = 112,
    	PVPTITLE_END = 113,

  4. #4
    arkangel75ar's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Good job, Congratulations!

Similar Threads

  1. [Service] Character Title Change
    By Loteeh in forum World of Warcraft Model Editing
    Replies: 64
    Last Post: 09-27-2009, 08:29 AM
  2. Change your Character Title every 5 seconds!
    By Gash in forum World of Warcraft Guides
    Replies: 26
    Last Post: 08-03-2009, 09:40 AM
  3. Replies: 14
    Last Post: 03-06-2009, 02:08 PM
  4. Character Titles/Ranks editing Request: titles-->something different
    By Uchiha Ottaba in forum WoW ME Questions and Requests
    Replies: 2
    Last Post: 09-26-2008, 07:26 PM
  5. [Question] Mangos Character Titles
    By Shao111 in forum WoW EMU Questions & Requests
    Replies: 0
    Last Post: 08-20-2008, 12:48 PM
All times are GMT -5. The time now is 10:01 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