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.


Messages - 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
Hmm, yeh i think so. where is that mentioned?

3
i cant seem to get the "menu" option to my zone working on Noggit but the map works fine ingame... its all empty but works...

any ideas?

4
Tutorials / Re: [TUTORIAL] Truly Mandatory Custom Patches
« on: April 14, 2014, 09:47:51 pm »
Sadly it will just make new players think the server is down as it dosnt show up on the realmlist...

5
Miscellaneous / Re: [QUESTION] Item flag Heroic
« on: April 03, 2014, 10:51:42 am »
i know the flag id and where to edit the current one (framexml) but i was wondering if anyone knew how to bypass and make a custom one then if its hardcoded into the client

6
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 ^^

7
Tutorials / Re: [TUTORIAL] for creating a new class
« on: August 14, 2013, 03:17:43 pm »
Since ur saying u followed a tutorial in the main post can you please post a link to that tutorial?

Pages: [1]