[Archive] linking items from item_template to creature_template?
[Archive] linking items from item_template to creature_template?
Archived author: stinkyjoint • Posted: 2025-11-04T18:14:54.193299
Original source
trying to make a custom mount
i know how to change a mounts model ID and name, so when learnt it displays what i want,
but i dont want to remove that mount from the game,
for example
Code:
UPDATE `creature_template` SET `name`='Traveler Carriage' WHERE `entry`=27684; -- item 37719
UPDATE `creature_template` SET modelid1=33315 WHERE `entry`=27684;
UPDATE `creature_template` SET modelid2=33315 WHERE `entry`=27684;
UPDATE `creature_template` SET scale=0.2 WHERE `entry`=27684;
so ofc that code above will change the Swift Zhevra to the Carriage
so how can i go about making a new mount?
i assume i have to link the items from each template some how?