This is a read only copy without any forum functionality of the old Modcraft forum.
If there is anything that you would like to have removed, message me on Discord via Kaev#5208.
Big thanks to Alastor for making this copy!

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Nirelz

Pages: [1]
1
Serverside Modding / Change Zone in Who list to Area
« on: May 20, 2018, 10:28:15 pm »
Hi, is it possible to change the who list to display Area name instead of Zone name?
Would it be to change Zoneid to Areaid in core?
https://github.com/TrinityCore/TrinityCore/blob/3.3.5/src/server/game/Handlers/MiscHandler.cpp#L300
Quote
uint32 playerZoneId = target.GetZoneId();
        uint8 gender = target.GetGender();

        bool showZones = true;
        for (uint32 i = 0; i < zonesCount; ++i)
        {
            if (zoneids == playerZoneId)
            {
                showZones = true;
                break;
            }

            showZones = false;
        }
        if (!showZones)
            continue;

Thanks for any help :)

2
Miscellaneous / [QUESTION] Item flag Heroic
« on: March 31, 2014, 07:51:48 pm »
Hey guys,

so i've been searching around in dbc and in trinity core but i cant seem to find any location on where the Flag is located for the green Heroic text on items (Example: item=51876 )

anyhow, If anyone ever edited or made new item Flags would you mind sharing the knowledge or maybe i can buy it from you for a decent price?

I just need to make 2 new flags with 2 diffrent texts for it ^^

Pages: [1]