Jump to content

Fyre

Members
  • Posts

    113
  • Joined

  • Last visited

  • Days Won

    2
  • Donations

    0.00 GBP 

Everything posted by Fyre

  1. Hello everyone! Over the past couple of weeks, I have begun to tackle some database fixes for the MaNGOS Three core (Cataclysm). I wanted to share with you the process in how each one was accomplished. Hopefully this helps you to learn some new techniques and can try applying them to improve the MaNGOS projects! I'll post the link to the video, and a written description below for each one as well. Each week (hopefully), I'll upload another one, and continue to post them here. I'm usually hanging around the MaNGOS Discord if you ever want to chat, work on something together, or get some ideas. Thanks! Fyre 🔥 Quest Fixes Sauranok Will Point The Way - Quest Text NPC Fixes Auctioneer Drezmit's Gossip Window Fix Echo Island Tiki Targets Are Chasing Me!
  2. Hi tinytomcruise, I was checking out that video you linked. That's for a repack. Unfortunately we don't support the repacks here, but there should be a readme in the files for a discord link. That being said, we would love to encourage you to stick around with MaNGOS and build from scratch using the link following guide from Antz: https://www.getmangos.eu/wiki/documentation/installation-guides/guideswindows/installing-mangos-on-windows-using-easybuild-r20064/
  3. Nalorakk has a starting script that he sends a group of adds down to fight you, then he runs up the next flight of stairs, and repeats until he's at his platform. However, currently he sets down the first set of adds and then never moves. So he is unfightable. Video (@ ~5:15):
  4. Terestian Illhoof in Karazhan currently has two Kil'rek imps spawned. One is a creature the other is a pet. What is supposed to happen: - Kil'rek is spawned beside Terestian Illhoof. - ~45 seconds after Kil'rek is killed, he is summoned again. So right now, there are too many Kil'rek imps spawned at the start of the fight. Video:
  5. Prince Malchezaar in Karazhan is supposed to summon infernals around his platform throughout the duration of the fight. These infernals should be non-targetable, stationary, and produce a hellfire for the duration they are spawned. I checked M2, and they seem to be working properly. MaNGOS SD3 link: https://github.com/mangos/ScriptDev3/blob/master/scripts/eastern_kingdoms/karazhan/boss_prince_malchezaar.cpp I also looked up a few other scripts from different cores: - https://github.com/cmangos/mangos-tbc/blob/master/src/game/AI/ScriptDevAI/scripts/eastern_kingdoms/karazhan/boss_prince_malchezaar.cpp - https://github.com/ccshiro/corecraft/blob/master/scriptdev2/scripts/eastern_kingdoms/karazhan/boss_prince_malchezaar.cpp
  6. Another good place to take a look for some ideas would be the Eluna Releases forum here. https://www.getmangos.eu/forums/forum/121-releases/ You can open up some of those links and check out how people did some really cool stuff!
  7. Hi! Are you able to provide any screenshots, logs, etc? Without knowing exactly what is wrong, it is difficult for anyone to help you out. Thanks, Fyre
  8. When looking at the `db_scripts` table, I noticed that `script_guid` 631 spawns "Spectral Chalice". MariaDB [mangos_world1]> SELECT `script_guid`, `id`, `datalong`, `comments` FROM `db_scripts` WHERE `id`=194502; +-------------+--------+----------+------------------------+ | script_guid | id | datalong | comments | +-------------+--------+----------+------------------------+ | 631 | 194502 | 19214 | spawn Spectral Chalice | +-------------+--------+----------+------------------------+ 1 row in set (0.002 sec) The `datalong` has a value of 19214 and indicates that it should spawn the corresponding object from the `gameobject` table. When we look at the corresponding guid we get... MariaDB [mangos_world1]> SELECT `guid`, `id` FROM `gameobject` WHERE `guid`=19214; +-------+--------+ | guid | id | +-------+--------+ | 19214 | 176583 | +-------+--------+ 1 row in set (0.001 sec) Now the `id` in this table corresponds to an object in the `gameobject_template` table, which brings us to... MariaDB [mangos_world1]> SELECT `entry`, `name` FROM `gameobject_template` WHERE `entry`=176583; +--------+---------------+ | entry | name | +--------+---------------+ | 176583 | Golden Sansam | +--------+---------------+ 1 row in set (0.000 sec) -- Wait a second... Golden Sansam? Should be "Spectral Chalice". MariaDB [mangos_world1]> SELECT `entry`, `name` FROM `gameobject_template` WHERE `name`="Spectral Chalice"; +--------+------------------+ | entry | name | +--------+------------------+ | 164869 | Spectral Chalice | +--------+------------------+ 1 row in set (0.001 sec) Note: I did not confirm whether or not this is odd behaviour in M1 - just noticed it within the db itself.
  9. @汪可微 @onixiyaI noticed that on line #47 it says INSERT INTO `creature_TEMPLATE` where it should say INSERT INTO `creature_template`. Change the capital TEMPLATE to all lowercase, and it will work. I've spoken with @Necrovoice and he should be updating the github repo as well.
  10. On MangosZero, tooltip states: "You carry the Touch of Zanzil. The poison courses through your veins. Seek aid!" Based on WowHead comments, it is supposed to do the following: It reduces your Agility by 15 and enemies can see you through stealth as if you were not even stealthed. However, by casting "Stealth" it removed the poison permanently.
  11. Spell Name: Wyvern Sting (Rank 1-3) DB Links: Rank 1: https://classicdb.ch/?spell=19386 Rank 2: https://classicdb.ch/?spell=24132 Rank 3: https://classicdb.ch/?spell=24133 Problem: Rank 1 does not break sleep when the mob is attacked (melee, range, or spell damage). After 12 seconds sleep does break (as is per tooltip), but does not apply a DoT. Rank 2 does not break sleep when the mob is attacked (melee, range, or spell damage). After 12 seconds sleep does break (as is per tooltip), but does not apply a DoT. Rank 3 does not break sleep when the mob is attacked (melee, range, or spell damage). After 12 seconds sleep does break (as is per tooltip), but does not apply a DoT.
×
×
  • 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