Help with a command menu

User Tag List

Results 1 to 7 of 7
  1. #1
    Freemanareso's Avatar Member
    Reputation
    38
    Join Date
    Oct 2008
    Posts
    99
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Help with a command

    Hey guys, I need help with this one command .character settitle I try to look up guides and ask people, no luck! please tell me to work this command correctly without erasing titles
    "I will never give up, no matter how hard the task!"

    Help with a command
  2. #2
    Zudrik's Avatar Member
    Reputation
    52
    Join Date
    Dec 2008
    Posts
    169
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It doesn't erase titles, it just sets titles on your target.

    So you would type, .char settitle 1

    And you see "You have gained the title of Private" in your chatbox or w/e.

    Title IDs range from 1 to about 110 I think.

  3. #3
    Freemanareso's Avatar Member
    Reputation
    38
    Join Date
    Oct 2008
    Posts
    99
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would you happen to have a list of the titles?
    "I will never give up, no matter how hard the task!"

  4. #4
    Zudrik's Avatar Member
    Reputation
    52
    Join Date
    Dec 2008
    Posts
    169
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Uhh, not a list, but off the top of my head, I know the first 48.
    1-24 is the Alliance PvP Ranks (The old ones, private, etc.)
    25-48 is the Horde ones (scout, grunt, etc.)

    Then after that it's like scarab-lord, justicar, I can't remember them in order ><

  5. #5
    Freemanareso's Avatar Member
    Reputation
    38
    Join Date
    Oct 2008
    Posts
    99
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the help
    "I will never give up, no matter how hard the task!"

  6. #6
    thesixth's Avatar Member
    Reputation
    1
    Join Date
    Aug 2007
    Posts
    70
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Try this list from TBC, that's all I can do for the moment.

    1 5879 "Private %s"
    2 5880 "Corporal %s"
    3 5881 "Sergeant %s"
    4 5882 "Master Sergeant %s"
    5 5883 "Sergeant Major %s"
    6 5884 "Knight %s"
    7 5885 "Knight-Lieutenant %s"
    8 5886 "Knight-Captain %s"
    9 5887 "Knight-Champion %s"
    10 5888 "Lieutenant Commander %s"
    11 5889 "Commander %s"
    12 5890 "Marshal %s"
    13 5891 "Field Marshal %s"
    14 5892 "Grand Marshal %s"
    15 5893 "Scout %s"
    16 5894 "Grunt %s"
    17 5895 "Sergeant %s"
    18 5896 "Senior Sergeant %s"
    19 5897 "First Sergeant %s"
    20 5898 "Stone Guard %s"
    21 5899 "Blood Guard %s"
    22 5900 "Legionnaire %s"
    23 5901 "Centurion %s"
    24 5902 "Champion %s"
    25 5903 "Lieutenant General %s"
    26 5904 "General %s"
    27 5905 "Warlord %s"
    28 5906 "High Warlord %s"
    42 0 "Gladiator %s"
    43 0 "Duelist %s"
    44 0 "Rival %s"
    45 0 "Challenger %s"
    46 6341 "Scarab Lord %s"
    47 6407 "Conqueror %s"
    48 6406 "Justicar %s"
    53 6686 "%s, Champion of the Naaru"
    62 0 "Merciless Gladiator %s"
    63 6806 "%s of the Shattered Sun"
    64 6944 "%s, Hand of A'dal"
    71 0 "Vengeful Gladiator %s"

    Where %s is your name ofc.

  7. #7
    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)
    Guys player.h look there!

    Code:
    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,

Similar Threads

  1. [Trinity] Help with gm command!
    By Baboonic in forum WoW EMU Questions & Requests
    Replies: 6
    Last Post: 08-05-2010, 06:50 PM
  2. Help with VB.net command please!
    By Fireking300 in forum Programming
    Replies: 2
    Last Post: 02-24-2009, 09:09 AM
  3. Need help with GM command
    By plasma268 in forum WoW EMU Questions & Requests
    Replies: 2
    Last Post: 08-22-2008, 03:29 PM
  4. [Help] With GM Command
    By IcyHot in forum World of Warcraft Emulator Servers
    Replies: 15
    Last Post: 11-14-2007, 07:47 PM
  5. can u help me with .mount commands...
    By AggramarEU in forum World of Warcraft Emulator Servers
    Replies: 1
    Last Post: 09-14-2007, 08:10 AM
All times are GMT -5. The time now is 02:25 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