• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

[SOLVED] Couple Questions

Status
Not open for further replies.

Portals

Banned
Question 1:

So lets say I have runeforging for instance, and I want the NPC to give a quest and be able to turn it in, how would I enable this, I have the flags set to 3 and the "!" and "?" show up but when you go into the menu you cant see the option for the quest.

Question 2:

Anyone know how to enable Heroic Mode for lower levels?

http://prntscr.com/aljqe4

I am missing the Heroic tab under the player tool tip.

I thought it would be a lua or xml edit somewhere with the client, I am level 30 and want to enable this menu for level 30

http://prntscr.com/altwr6
 
Last edited:

Portals

Banned
Yes I have the right flag "3" I put 2 in my main post but yeah its supposed to be 3.

UPDATE

I have found this in Globalstrings.lua but I still cannot find where I can edit the level required for them to be used under level 65.

Code:
RAID_DIFFICULTY = "Raid Difficulty";
RAID_DIFFICULTY1 = "10 Player";
RAID_DIFFICULTY2 = "25 Player";
RAID_DIFFICULTY3 = "10 Player (Heroic)";
RAID_DIFFICULTY4 = "25 Player (Heroic)";
RAID_DIFFICULTY_10PLAYER = "10 Player";
RAID_DIFFICULTY_10PLAYER_HEROIC = "10 Player (Heroic)";
RAID_DIFFICULTY_20PLAYER = "20 Player";
RAID_DIFFICULTY_25PLAYER = "25 Player";
RAID_DIFFICULTY_25PLAYER_HEROIC = "25 Player (Heroic)";
RAID_DIFFICULTY_40PLAYER = "40 Player";

Code:
DUNGEON_DIFFICULTY = "Dungeon Difficulty";
DUNGEON_DIFFICULTY1 = "5 Player";
DUNGEON_DIFFICULTY2 = "5 Player (Heroic)";
DUNGEON_DIFFICULTY3 = "Epic (Unused)";
DUNGEON_DIFFICULTY_5PLAYER = "5 Player";
DUNGEON_DIFFICULTY_5PLAYER_HEROIC = "5 Player (Heroic)";

Any help on this would be much appreciated.
 
Last edited:

Tommy

Founder
Why would it be related to core when this is working with the client's UI? There could be potential server checks to prevent lower level players from entering those kind of dungeons, but the server has nothing to do with the UI part of this. I've looked through most obvious XML and Lua files and couldn't find any of those global variables being used. My guess is it is probably hard coded to PlayerPortrait, unless someone knows otherwise.
 

Syphex

Exalted Member
Why would it be related to core when this is working with the client's UI? There could be potential server checks to prevent lower level players from entering those kind of dungeons, but the server has nothing to do with the UI part of this. I've looked through most obvious XML and Lua files and couldn't find any of those global variables being used. My guess is it is probably hard coded to PlayerPortrait, unless someone knows otherwise.

Yes, Related to the Ui you need to change it in the Interface files(in your wow directory), and DBC files i think when it comes to editing the UI / player portrait.
And to enable heroic mode for lower levels you need to change that in the DBC files.

DBC needs to be added for both for the world server and the players client folder with a patch.

Interface is only client side. (Can also be added in a patch)
 
Last edited:
Status
Not open for further replies.
Top