iMorph : WoW Classic menu

User Tag List

Page 5 of 52 FirstFirst 123456789 ... LastLast
Results 61 to 75 of 767
  1. #61
    Sinba's Avatar Member
    Reputation
    2
    Join Date
    Feb 2021
    Posts
    14
    Thanks G/R
    4/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've noticed that .enchant 1 enchantID doesn't work. Is the command wrong ? I've tried several enchant IDs

    iMorph : WoW Classic
  2. #62
    jesse274's Avatar Member
    Reputation
    1
    Join Date
    Feb 2021
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yo, help a poor gnome out. WHERE do I put the dll. and WHEN do I inject the Runimorph? I am pretty much clueless right now...

    EDIT:

    Nvm I got it working... I guess...
    Last edited by jesse274; 02-26-2021 at 12:27 AM.

  3. #63
    themaster's Avatar Contributor
    Reputation
    106
    Join Date
    Nov 2006
    Posts
    407
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works fine, for example ".enchant 1 128" = purple enchant. 130 = black, 101 = red, 24 = blue etc.

    It would be nice if Icescythe could post all those id's he had up on discord.
    Last edited by themaster; 02-26-2021 at 12:06 PM.

  4. #64
    Icesythe7's Avatar Contributor
    Reputation
    231
    Join Date
    Feb 2017
    Posts
    168
    Thanks G/R
    10/111
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by themaster View Post
    Works fine, for example ".enchant 1 128" = purple enchant. 130 = black, 101 = red, 24 = blue etc.

    It would be nice if Icescythe could post all those id's he had up on discord.
    the first number is the id

    Code:
    inline std::map<const std::string, std::pair<int16_t, int32_t>> EnchantDisplayId
    {
    	//{enchantName, {enchantId, index}}
    	//None
    	{"No Enchant", {0, 0}},
    
    	//Vanilla Enchants
    	{"Rune of Razorice", {1, 1}},
    	{"blueglow_med", {2, 2}},
    	{"blueglow_high", {24, 3}},
    	{"Fiery Weapon", {25, 4}},
    	{"Poisoned", {26, 5}},
    	{"Coldlight", {27, 6}},
    	{"sparkle_a", {28, 7}},
    	{"Titanguard", {29, 8}},
    	{"yellowglow_low", {30, 9}},
    	{"Beastslayer", {31, 10}},
    	{"Flametongue", {32, 11}},
    	{"Frostbrand", {33, 12}},
    	{"Striking", {42, 13}},
    	{"Rockbiter", {61, 14}},
    	{"Windfury", {81, 15}},
    	{"redglow_high", {101, 16}},
    	{"yellowglow_high", {102, 17}},
    	{"Crusader", {103, 18}},
    	{"whiteglow_high", {104, 19}},
    	{"purpleglow_high", {105, 20}},
    	{"Earthliving", {106, 21}},
    	{"Lifestealing", {107, 22}},
    	{"blackglow_low", {123, 23}},
    	{"blackglow_high", {124, 24}},
    	{"Agility", {125, 25}},
    	{"Icy Chill", {126, 26}},
    	{"greenflame_low", {127, 27}},
    	{"purpleflame_low", {128, 28}},
    	{"yellowflame_low", {129, 29}},
    	{"blackflame_low", {130, 30}},
    	{"shaman_purple", {131, 31}},
    	{"shaman_green", {132, 32}},
    	{"shaman_red", {133, 33}},
    	{"shaman_yellow", {134, 34}}
    };

  5. Thanks DarkLinux, themaster, unknown_llama (3 members gave Thanks to Icesythe7 for this useful post)
  6. #65
    Sinba's Avatar Member
    Reputation
    2
    Join Date
    Feb 2021
    Posts
    14
    Thanks G/R
    4/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Icesythe7 View Post
    Code:
    inline std::map<const std::string, std::pair<int16_t, int32_t>> EnchantDisplayId
    {
    	//{enchantName, {enchantId, index}}
    	//None
    	{"No Enchant", {0, 0}},
    
    	//Vanilla Enchants
    	{"Rune of Razorice", {1, 1}},
    	{"blueglow_med", {2, 2}},
    	{"blueglow_high", {24, 3}},
    	{"Fiery Weapon", {25, 4}},
    	{"Poisoned", {26, 5}},
    	{"Coldlight", {27, 6}},
    	{"sparkle_a", {28, 7}},
    	{"Titanguard", {29, 8}},
    	{"yellowglow_low", {30, 9}},
    	{"Beastslayer", {31, 10}},
    	{"Flametongue", {32, 11}},
    	{"Frostbrand", {33, 12}},
    	{"Striking", {42, 13}},
    	{"Rockbiter", {61, 14}},
    	{"Windfury", {81, 15}},
    	{"redglow_high", {101, 16}},
    	{"yellowglow_high", {102, 17}},
    	{"Crusader", {103, 18}},
    	{"whiteglow_high", {104, 19}},
    	{"purpleglow_high", {105, 20}},
    	{"Earthliving", {106, 21}},
    	{"Lifestealing", {107, 22}},
    	{"blackglow_low", {123, 23}},
    	{"blackglow_high", {124, 24}},
    	{"Agility", {125, 25}},
    	{"Icy Chill", {126, 26}},
    	{"greenflame_low", {127, 27}},
    	{"purpleflame_low", {128, 28}},
    	{"yellowflame_low", {129, 29}},
    	{"blackflame_low", {130, 30}},
    	{"shaman_purple", {131, 31}},
    	{"shaman_green", {132, 32}},
    	{"shaman_red", {133, 33}},
    	{"shaman_yellow", {134, 34}}
    };
    Great, ty!
    Last edited by Sinba; 02-26-2021 at 03:41 PM.

  7. #66
    DarkLinux's Avatar Former Staff
    CoreCoins Purchaser Authenticator enabled
    Reputation
    1584
    Join Date
    May 2010
    Posts
    1,829
    Thanks G/R
    188/531
    Trade Feedback
    16 (100%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    If anyone can find that enchant info in WoW.tools | Database browser 1.13.6.37497 then I can add proper error handling.
    Does this table have the information WoW.tools | Database browser

    I need to also find,
    i̶t̶e̶m̶ ̶d̶i̶s̶p̶l̶a̶y̶ ̶i̶d̶ : WoW.tools | Database browser | Item
    i̶t̶e̶m̶ ̶s̶e̶t̶ ̶d̶i̶s̶p̶l̶a̶y̶ ̶i̶d̶s̶ ̶: WoW.tools | Database browser | Item Set
    mount display ids:
    enchants:
    Last edited by DarkLinux; 02-26-2021 at 08:51 PM.

  8. #67
    AG007's Avatar Member
    Reputation
    11
    Join Date
    Jan 2009
    Posts
    9
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DarkLinux View Post
    If anyone can find that enchant info in WoW.tools | Database browser 1.13.6.37497 then I can add proper error handling.
    Does this table have the information WoW.tools | Database browser

    I need to also find,
    i̶t̶e̶m̶ ̶d̶i̶s̶p̶l̶a̶y̶ ̶i̶d̶ : WoW.tools | Database browser | Item
    i̶t̶e̶m̶ ̶s̶e̶t̶ ̶d̶i̶s̶p̶l̶a̶y̶ ̶i̶d̶s̶ ̶: WoW.tools | Database browser | Item Set
    mount display ids:
    enchants:
    Enchants: WoW.tools | Database browser | Item Visuals
    Should just be this one, no?

    I dont think there is a table for mount display ids only. I think the only way to find them would be to look through the table of creatures:
    WoW.tools | Database browser | Creature Display Info
    perhaps you can filter something out to make it easier to find.
    Last edited by AG007; 02-27-2021 at 10:05 PM.

  9. Thanks DarkLinux (1 members gave Thanks to AG007 for this useful post)
  10. #68
    Pontan403's Avatar Member
    Reputation
    1
    Join Date
    Mar 2021
    Posts
    5
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't know how to remove a comment, if anyone can remove this one :$
    Last edited by Pontan403; 03-01-2021 at 09:03 AM.

  11. #69
    Pontan403's Avatar Member
    Reputation
    1
    Join Date
    Mar 2021
    Posts
    5
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jesse274 View Post
    Yo, help a poor gnome out. WHERE do I put the dll. and WHEN do I inject the Runimorph? I am pretty much clueless right now...

    EDIT:

    Nvm I got it working... I guess...

    Where did you put it and how did u get it working?
    Screenshot - 6ee59517680e16e139b2949703aedead - Gyazo
    i get this error when starting World of Warcraft
    Anyone that can help me what to do?

    Best Regards
    Pontan

  12. #70
    Sinba's Avatar Member
    Reputation
    2
    Join Date
    Feb 2021
    Posts
    14
    Thanks G/R
    4/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Pontan403 View Post
    Where did you put it and how did u get it working?
    Screenshot - 6ee59517680e16e139b2949703aedead - Gyazo
    i get this error when starting World of Warcraft
    Anyone that can help me what to do?

    Best Regards
    Pontan
    You haven't linked the image so I can't see what error you're getting. Where you place the exe and dll doesn't matter. Simply launch WoW, load your character, then double click the exe file and that's it.

  13. #71
    Pontan403's Avatar Member
    Reputation
    1
    Join Date
    Mar 2021
    Posts
    5
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Alright thanks i got it working now! I understand how to use the click morph, and kinda how to morph races now. But i'm wondering is there any morph ID list to check? Or how do i check ID's up? For example for mounts and so on? Is there any guide how to morph like basics and so on?
    Sry, first time morphing and i have no idea how to find what to write for night elf tiger morph for example.. So i was wondering if there is any list i can take help from that tells me what number morphs to what? I installed "Taku's Morph Catalog" that the creator of this mentioned earlier in a post but can't seem to get it working. The command /tmc dosen't work. I looked into some pictures of the addon and it seems to be super awsome! Is it just for me it's not working or is the addon just not working right now?
    And is there anyway to save your morph or do you have to morph all over again once you restart the game? Or is there some save option so i just can get it instantly when i log in to the character again?

    Best Regards
    Pontan
    Last edited by Pontan403; 03-01-2021 at 12:31 PM.

  14. #72
    psyikk's Avatar Member
    Reputation
    1
    Join Date
    Mar 2021
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Pontan403 View Post
    Alright thanks i got it working now! I understand how to use the click morph, and kinda how to morph races now. But i'm wondering is there any morph ID list to check? Or how do i check ID's up? For example for mounts and so on? Is there any guide how to morph like basics and so on?
    Sry, first time morphing and i have no idea how to find what to write for night elf tiger morph for example.. So i was wondering if there is any list i can take help from that tells me what number morphs to what? I installed "Taku's Morph Catalog" that the creator of this mentioned earlier in a post but can't seem to get it working. The command /tmc dosen't work. I looked into some pictures of the addon and it seems to be super awsome! Is it just for me it's not working or is the addon just not working right now?
    And is there anyway to save your morph or do you have to morph all over again once you restart the game? Or is there some save option so i just can get it instantly when i log in to the character again?

    Best Regards
    Pontan
    Here is a list of all race IDs for Classic, recently tested so they should all work

    Human = 1
    Dwarf = 3
    Gnome = 7
    Night Elf = 4
    Draenei = 11
    Orc = 2
    Undead = 5
    Troll = 8
    Tauren = 6
    Blood Elf = 10

    In terms of saving, they used to have it but I'm guessing not anymore. A good way to subvert this is to write a macro. As an example-


    .reset
    .race 1
    .gender 1
    .item 15 19398
    .item 5 21331
    .item 7 21332
    .item 8 21333
    .item 16 19019
    .item 17 19351




    So just to explain - the first resets, just incase I was messing with anything, and the race and gender obviously sets to human. As for gender, just typing .gender 1 will flip you back and forth between male/female, so that is what I do.

  15. #73
    Pontan403's Avatar Member
    Reputation
    1
    Join Date
    Mar 2021
    Posts
    5
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by psyikk View Post
    Here is a list of all race IDs for Classic, recently tested so they should all work

    Human = 1
    Dwarf = 3
    Gnome = 7
    Night Elf = 4
    Draenei = 11
    Orc = 2
    Undead = 5
    Troll = 8
    Tauren = 6
    Blood Elf = 10

    In terms of saving, they used to have it but I'm guessing not anymore. A good way to subvert this is to write a macro. As an example-


    .reset
    .race 1
    .gender 1
    .item 15 19398
    .item 5 21331
    .item 7 21332
    .item 8 21333
    .item 16 19019
    .item 17 19351




    So just to explain - the first resets, just incase I was messing with anything, and the race and gender obviously sets to human. As for gender, just typing .gender 1 will flip you back and forth between male/female, so that is what I do.
    Alright thanks mate this helps alot! How do you find the ID's for what you wanna morph on? And how to morph mounts, if that even is possible?
    Would be awsome if there was some kind of website will all id's you could mog but i haven't been able to find one with google

  16. #74
    Taragon's Avatar Member
    Reputation
    1
    Join Date
    Nov 2007
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Really appreciate this being updated and working once again, no more noggenfogger stacking.
    Last edited by Taragon; 03-01-2021 at 05:00 PM.

  17. #75
    DarkLinux's Avatar Former Staff
    CoreCoins Purchaser Authenticator enabled
    Reputation
    1584
    Join Date
    May 2010
    Posts
    1,829
    Thanks G/R
    188/531
    Trade Feedback
    16 (100%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by psyikk View Post
    Here is a list of all race IDs for Classic, recently tested so they should all work

    Human = 1
    Dwarf = 3
    Gnome = 7
    Night Elf = 4
    Draenei = 11
    Orc = 2
    Undead = 5
    Troll = 8
    Tauren = 6
    Blood Elf = 10

    In terms of saving, they used to have it but I'm guessing not anymore. A good way to subvert this is to write a macro. As an example-


    .reset
    .race 1
    .gender 1
    .item 15 19398
    .item 5 21331
    .item 7 21332
    .item 8 21333
    .item 16 19019
    .item 17 19351




    So just to explain - the first resets, just incase I was messing with anything, and the race and gender obviously sets to human. As for gender, just typing .gender 1 will flip you back and forth between male/female, so that is what I do.
    Does Draenei work? I only see,
    Code:
    Human 1
    Orc 2
    Dwarf 3
    Night Elf 4
    Undead 5
    Tauren 6
    Gnome 7
    Troll 8
    Goblin 9
    WoW.tools | Database browser

Page 5 of 52 FirstFirst 123456789 ... LastLast

Similar Threads

  1. [Request] WoW Classic Model editor - iMorph like
    By Phoen!x in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 02-02-2021, 07:15 AM
  2. [request] background for subtitle in style of wow classic logo
    By griwes in forum WoW ME Questions and Requests
    Replies: 3
    Last Post: 04-11-2010, 08:14 PM
  3. True WoW (Classic Server) 1x rates
    By Wriggly in forum WoW Emulator Server Listings
    Replies: 0
    Last Post: 08-09-2009, 01:21 PM
  4. WoW(classic) OST in BC
    By faisal_o in forum World of Warcraft General
    Replies: 5
    Last Post: 10-13-2007, 10:36 AM
All times are GMT -5. The time now is 09:58 AM. 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