Jump to content

Dimidrol

Members
  • Posts

    6
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Dimidrol's Achievements

Newbie

Newbie (1/3)

0

Reputation

  1. This error means that you have in your table creature_template no column VehicleEntry, add it ... ALTER TABLE creature_template ADD COLUMN `VehicleEntry` mediumint(8) unsigned NOT NULL default '0' AFTER `PetSpellDataId`;
  2. Hi Spell aura for item http://www.wowhead.com/item=54860 diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index cac7382..fe6961c 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -2062,6 +2062,9 @@ void Aura::HandleAuraDummy(bool apply, bool Real) case 75614: // Celestial Steed Spell::SelectMountByAreaAndSkill(target, 75619, 75620, 75617, 75618, 76153); return; + case 75973: // X-53 Touring Rocket + Spell::SelectMountByAreaAndSkill(target, 0, 75957, 75972, 76154, 0); + return; } break; }
  3. do you add v01_vehicle_table.sql and v02_vehicle_data.sql in mangos database?
  4. Vehicles and multiseet supported by this patch. (install the appropriate updates in database!!!)
  5. on version 10768, 10775, 10777 same error error C2065: mover: undeclared identifier \\src\\game\\MovementHandler.cpp Where it to declare? patch MovementHandler.cpp diff --git a/src/game/MovementHandler.cpp b/src/game/MovementHandler.cpp index f75b494..a256137 100644 --- a/src/game/MovementHandler.cpp +++ b/src/game/MovementHandler.cpp @@ -635,6 +635,7 @@ void WorldSession::HandleSummonResponseOpcode(WorldPacket& recv_data) bool WorldSession::VerifyMovementInfo(MovementInfo const& movementInfo, ObjectGuid const& guid) const { // ignore wrong guid (player attempt cheating own session for not own guid possible...) + Unit *mover = _player->GetMover(); if (guid != _player->GetMover()->GetObjectGuid()) return false; Works on src 10777.
  6. Alex, please, give URL on patch for src 10759 (for comparison with a patch 10757), or prompt, with what to begin, to rectify errors at patch addition. I beginner on C++. sorry on my bad English (I from Russia)
×
×
  • 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