[DiscordArchive] Hey, does anyone know how to make a mount as ve...
[DiscordArchive] Hey, does anyone know how to make a mount as ve...
Archived author: Mithria • Posted: 2025-07-20T05:31:23.272000+00:00
Original source
`vehicle_template_accessory` :
`entry` = the `entry` of the creature from `creature_template`
`accessory_entry` = the `entry` of the creature from `creature_template` that will ride on the side of the mount
`seat_id` = the id of the seat from Vehicle.dbc that the creature will sit in.
![[Image: image.png?ex=690c9fd1&is=690b4e51&hm=612...4230ed990&]](https://cdn.discordapp.com/attachments/1396304845396508713/1396481039282606180/image.png?ex=690c9fd1&is=690b4e51&hm=612954d8f9e76edc122ae4b05a927c652e8b0345c545e1eb7aa07fa4230ed990&)
Archived author: Guerriax • Posted: 2025-07-20T13:17:05.172000+00:00
Original source
So basically if my vehicle.dbc is seat 2 and 3 (like on screen) I have to put same seat id in vehicle_template_accessory ?
![[Image: image.png?ex=690c9fd1&is=690b4e51&hm=612...4230ed990&]](https://cdn.discordapp.com/attachments/1396304845396508713/1396481039282606180/image.png?ex=690c9fd1&is=690b4e51&hm=612954d8f9e76edc122ae4b05a927c652e8b0345c545e1eb7aa07fa4230ed990&)
Archived author: Guerriax • Posted: 2025-07-20T13:23:49.510000+00:00
Original source
I might got the problem : Loading Vehicle Template Accessories...
Table `vehicle_template_accessory`: creature template entry 500041 has no data in npc_spellclick_spells
Table `vehicle_template_accessory`: creature template entry 500041 has no data in npc_spellclick_spells
when loading server
Archived author: Guerriax • Posted: 2025-07-20T13:32:15.915000+00:00
Original source
Done, just added : a new entry inside `npc_spellclick_spells` such as :
```sql
INSERT INTO `npc_spellclick_spells` (`npc_entry`, `spell_id`, `cast_flags`, `user_type`)
VALUES (500041, 61424, 1, 0);
```