Jump to content

{Vehicle} Patch


Auntie Mangos

Recommended Posts

  • 40 years later...

MaNGOS Vehicle Patch , For 9795 .

Patch :

PasteBin URL :

http://xees.pastebin.com/hmMVreiM

Also Need This :

Vehicle Tables SQL :

DROP TABLE IF EXISTS `vehicle_data`;
CREATE TABLE `vehicle_data` (
 `entry` mediumint(5) unsigned NOT NULL,
 `flags` mediumint(8) unsigned NOT NULL default '0',
 `Spell1` mediumint(8) unsigned NOT NULL default '0',
 `Spell2` mediumint(8) unsigned NOT NULL default '0',
 `Spell3` mediumint(8) unsigned NOT NULL default '0',
 `Spell4` mediumint(8) unsigned NOT NULL default '0',
 `Spell5` mediumint(8) unsigned NOT NULL default '0',
 `Spell6` mediumint(8) unsigned NOT NULL default '0',
 `Spell7` mediumint(8) unsigned NOT NULL default '0',
 `Spell8` mediumint(8) unsigned NOT NULL default '0',
 `Spell9` mediumint(8) unsigned NOT NULL default '0',
 `Spell10` mediumint(8) unsigned NOT NULL default '0',
 `req_aura` mediumint(8) unsigned NOT NULL default '0',
 PRIMARY KEY  (`entry`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Vehicle System';

DROP TABLE IF EXISTS `vehicle_seat_data`;
CREATE TABLE `vehicle_seat_data` (
 `seat` mediumint(5) unsigned NOT NULL,
 `flags` mediumint(8) unsigned NOT NULL default '0',
 PRIMARY KEY  (`seat`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Vehicle Seat System';

ALTER TABLE creature_addon
 ADD COLUMN vehicle_id smallint(5) unsigned NOT NULL default '0' AFTER moveflags,
 ADD COLUMN passengers text AFTER vehicle_id;

ALTER TABLE creature_template_addon
 ADD COLUMN vehicle_id smallint(5) unsigned NOT NULL default '0' AFTER moveflags,
 ADD COLUMN passengers text AFTER vehicle_id;

Vehicle Data SQL :

PasteBin URL :

http://xees.pastebin.com/RTR3y1Wf

URL To Download Full Patch With SQL's :

http://www.mediafire.com/?jnu4ngdej2u

I have no Idea Who Made This , i Do Not Know if They Are 100% Correct , but i would like to know Since its a Huge File with over 3000 Lines of Code .

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • 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