Jump to content

Auntie Mangos

Moderators
  • Posts

    2446
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by Auntie Mangos

  1. Possible to host 2 diff realm from 2 diff hosts? Like 1st realm host will host also loginserver but 2nd realm host will just somehow be merged with 1st realm host pc... so when login in realmlist show 2 realms
  2. I'd like to create system like example 100HK will give title scout, and example 600HK will give title Stone Guard for horde, for allys 100HK will give private rank... Anyone know how to do that? or where to configurate that?
  3. i think that if you want to "reproduce" warsong with all gameplay characteristic ... you can't do it in azshara ( i think ) with <MaNGOS Project> ...'coz client opcodes that will show you points and flags are restricted and clients do some checks on the map.... but if you want create a custom battleground with your pretty scripts , just play with the source ! nothing is impossible.
  4. Hi all, I'm building new server for mangos and I don't know what type of harddrives should I use. I suppose, Raptor should be good choise for its fast RPM. What do you think about RPM (7200, 10000)? And for configuration of drives, should I use one Raptor for OS (openSuSE linux), MySQL, Mangos and maps together, or another configuration? Which part of Mangos server is the most used? Thank you!
  5. okay... no answer is an answer too... sorry for this thread!
  6. noone an idea or i'm thinking in the wrong ways?
  7. i iterate over the threatlist and do this: if (target) { m_creature->getThreatManager().getThreatList().remove((*itr)); break; } but the npc follows the just removed player inspite of it, how is this possible and what must i do against it?!? even if i set the threat of *itr to 0.0f the npc follows *itr even if other players are there with much higher number of threat! oh... btw... it's out of our scripts for a bossfight. if i remove one out of the threatlist the npc should aggro the next highest on the list, or isn't it so!?
  8. Hi, what about to write patch for saving in-game chat and whisper? Has someone already done it, or know how to write it?
  9. very simple - change in battleground_template table MinLvl entries to 71.
  10. Currently MaNGOS not support lua scripting. this is useless feature imho.
  11. I task the same one, I have level max 80 and the same problem...... I tink that if in mangos.conf file is present the level option is correct thath all formulas work fine with this level. A solution for both would be corrected p.s. I love your avatar BIG
  12. Ok i have been trying to make a Private WoW Server for quite some time now. Sadly i have tried MANY MANY MANY MANY methods with no result. My last attempt was the AC Repack 7.7 which failed. Due to Vista being a complete waste (came with computer no choice on the matter). They moderators redirected me to use Mangos SO i need to know what to install and where i can find it and instructions to set up my own server. Please help this is really getting on my nerves and i pray to god this works
  13. I'm new to ManGOS and this is my first attempt editing the code. I planned to make a lookup command to display the four model IDs associated with the matching creature template names (similar to lookup creature command which I used as the base for this attempt). I have guessed that the PSendSysMessage function is what is used to relay the information to the player. I'm having a hard time understanding exactly how the PSendSysMessage function works and the convention used for the character string. I essentially copied the creature lookup code and tried making modifications to get what I wanted with the new command with little success. So far changes I made have been adding a new language code in language.h LANG_CREATURE_MODEL_LIST = 328, (I'm using this as a level2 command due to the morph being level 2 also). In the database I added a line to the mangos_string table with entry = 328 and content_default = %d - |cffffffff|Hcreature_modelid_A:%d|h[%s]|h|r This was mostly a copy of the orifinal except changing the Hcreature_entry to Hcreature_modelid_A in case that'd make a difference. The original call for the PSendSysMessage was: PSendSysMessage(LANG_CREATURE_ENTRY_LIST, id, id, cl->Name[loc_idx].c_str()); I changed the first LANG_CREATURE_ENTRY_LIST to my new database entry (which I eventuallty plan to change to display all 4 model ID numbers once I unerstand how to make this work). I've tried changing the id variales and the cl->Name[loc_idx].c_str() to the modelID number obtained from the creatureInfo reference in the function, yet the only results I seem to get is no change at all, or the server crashed. I may be trying more then I can handle, but any help would be appreciated.
  14. any answere here? is this topic so mysterious?
  15. hi all! today i have tried to find a flag in mangos that specify when you are inside or outside .. but seems that there isn't a check for it in MaNGOS... i'm trying to make a little fix.. someone can help me? are they all zonetype flags? : // zonetype is flags // flags & 0x00000001 (1) - snow (only Dun Morogh, Naxxramas, Razorfen Downs and Winterspring) // flags & 0x00000002 (2) - unknown, (only Naxxramas and Razorfen Downs) // flags & 0x00000004 (4) - On Map Dungeon // flags & 0x00000008 (8) - slave capital city flag? // flags & 0x00000010 (16) - unknown // flags & 0x00000020 (32) - slave capital city flag? // flags & 0x00000040 (64) - many zones have this flag // flags & 0x00000080 (128) - arena // flags & 0x00000100 (256) - main capital city flag // flags & 0x00000200 (512) - only for one zone named "City" (where it located?) // flags & 0x00000400 (1024) - outland zones? (only Eye of the Storm not have this flag, but have 0x00004000 flag) // flags & 0x00000800 (2048) - sanctuary area (PvP disabled) // flags & 0x00001000 (4096) - only Netherwing Ledge, Socrethar's Seat, Tempest Keep, The Arcatraz, The Botanica, The Mechanar // flags & 0x00002000 (8192) - not used now (no area/zones with this flag set) ... // flags & 0x00004000 (16384) - outland zones? (only Circle of Blood Arena not have this flag, but have 0x00000400 flag) // flags & 0x00008000 (32768) - pvp objective area? tnx for answeres
  16. For mob's, it's DB issue, try to modify `speed` entry for bears family (id - 4).
  17. Controllig acess - it's quite easy - You need to add in database a instance, and required (custom) item to enter it. Being able to place objects in an instance - hmm this looks you need scriptdev support for this feature.
  18. My opinion is that I don't think this would "work". Seeing how the game is multiplayer based, I understand that you are trying to change it so that it can be play single player and offline but I just don't think it would 'fit' as a single player game, but I have no idea what your ideas are, but this is my opinion.
  19. Makes deps compile on MacOS X: Mark Index: dep/src/sockets/TcpSocket.cpp =================================================================== --- dep/src/sockets/TcpSocket.cpp (revision 5497) +++ dep/src/sockets/TcpSocket.cpp (working copy) @@ -144,7 +144,11 @@ #pragma warning(default:4355) #endif +#ifdef __APPLE__ +#define MSG_NOSIGNAL SO_NOSIGPIPE +#endif + TcpSocket::~TcpSocket() { #ifdef SOCKETS_DYNAMIC_TEMP
  20. Maybe we can just make a web client just using text.MOD GAMES?
  21. Lately I've noticed a slight uptick in the number of private messages I've been getting for installation support. Installations are hard work, especially if you're new to installing servers, or the operating system for them. We moderators appreciate that. But please, new users: give the forum community a chance to work for YOU. PMming mods about installation issues is often unnecessary. These forums are almost unimaginably active -- there are thousands of users out there who might be able to help you. If you PM only one of us and we don't have your answer, you're out of luck. If you post to the forums, someone might know how to help you. So, please: If you need help post a thread in the appropriate forum. It is also helpful to subscribe to threads -- that way you can keep tabs on all the threads you've posted/have responded to. For those of you wishing more ... immediate help: try IRC. Open up GAIM, open a new IRC account, and point it to irc.freenode.net, and join the #mmorpg-dev channel. Be advised that #mmorpg-dev can be very busy at times, but the users there might be able to point you in the right direction. With kind regards, Master Control Program, your kind forum administrator bot.
  22. Since the code is always the same why not create a function kinda "InterruptSpellcasting(. . .)" so it can be used in other places too, or in the future.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use