Ok, I'm not one to normally complain, but I'm really not sure where else to turn.
I am trying VERY hard to do my own developing, trying to learn the differences between the 303-willcrashforsure branch and the current version of Mangos. However I feel like I have NO resources to talk to. I'm doing sort of well picking and proding at the code trying to figure out what's changed here and there but there are sometimes I just need a developer to talk to so that I can ask what are probably simple questions. I've tried seeking help on the mmorpg-dev IRC channel, but no one ever answers when I ask a question.
I've always thought of Mangos as a "learning" project... somewhere that developers can get together and build an MMO core, but how does everyone communicate?
I'm sorry for venting but I just get very frustrated in that I can't seem to find anyone that give me answers on new development - Yes, I know that this branch isn't supported... I'm not interested in support... this isn't a "Production" thing... I'm trying to learn how to develop.
(NOTE: This thread is not directed in anyway towads TheLuda, subhuman_bob or NTSC... they've always been very helpful)
Here are some of the things I'm trying to figure out on my own that I would appreciate any assistance I can get:
* In the UpdateFields.h there are many fields that have changed, but in particular these three fields I can't figure out what they are pointing at now: UNIT_VIRTUAL_ITEM_SLOT_DISPLAY; UNIT_VIRTUAL_ITEM_INFO; GAMEOBJECT_STATE * I've tried a couple variations on adding zones to santuaries. This is what I used to use: }
if(zone->flags & AREA_FLAG_SANCTUARY || zone->ID==1 || zone->ID==876) // in sanctuary
{
SetFlag(PLAYER_FLAGS, PLAYER_FLAGS_SANCTUARY);
if(sWorld.IsFFAPvPRealm())
but I can't seem to get it to work. Do I have something wrong in my code?