murdocmurat
Bannedbanned
LEVEL 4
215 XP
any can write me query for
i want to change level 80 to 255 on all npc
also in item template
i want to change level 80 to 255 on all npc
also in item template
UPDATE `creature_template` SET `minlevel` = '255', `maxlevel` = '255' WHERE `minlevel` = '80' AND `maxlevel` = '80';
Thanks buddyI suppose you want to do this to a TrinityCore 3.3.5a (or any other 3.3.5a), if so.. the query should be like this.This will update all levels of all creatures that are level 80 (all factions and all type of npcs, bosses, vendors, trainers and so on..)SQL:UPDATE `creature_template` SET `minlevel` = '255', `maxlevel` = '255' WHERE `minlevel` = '80' AND `maxlevel` = '80';
This query will apply for creatures that are already spawned.
Cheers!
You welcomeThanks buddy
If you haven’t gotten the item_template changedany can write me query for
i want to change level 80 to 255 on all npc
also in item template
UPDATE `item_template` SET `RequiredLevel` = '255' WHERE `RequiredLevel` = '80'
ok mateIf you haven’t gotten the item_template changed
SQL:UPDATE `item_template` SET `RequiredLevel` = '255' WHERE `RequiredLevel` = '80'