View Full Version : Tuning pets
woton
10-29-2019, 04:39 PM
On a server with npcs having been reduced in power but pets are still too tough. Is there a way to target tune pets all at once?
Mistmaker
10-30-2019, 04:42 AM
I used this code awhile back to buff pets so change it around to reduce them.
update npc_types set hp = hp * 2 where id > 499 and id < 529;
update npc_types set mana = mana * 2 where id > 499 and id < 529;
update npc_types set mindmg = mindmg + 5 where id > 499 and id < 529;
update npc_types set maxdmg = maxdmg + 10 where id > 499 and id < 529;
update npc_types set mana_regen_rate = mana_regen_rate * 2 where id > 499 and id < 529;
update npc_types set hp_regen_rate = hp_regen_rate * 2 where id > 499 and id < 529;
update npc_types set hp = hp * 2 where id > 540 and id < 641;
update npc_types set mana = mana * 2 where id > 540 and id < 641;
update npc_types set mindmg = mindmg + 5 where id > 540 and id < 641;
update npc_types set maxdmg = maxdmg + 10 where id > 540 and id < 641;
update npc_types set mana_regen_rate = mana_regen_rate * 2 where id > 540 and id < 641;
update npc_types set hp_regen_rate = hp_regen_rate * 2 where id > 540 and id < 641;
update npc_types set hp = hp * 2 where id > 745 and id < 771;
update npc_types set mana = mana * 2 where id > 745 and id < 771;
update npc_types set mindmg = mindmg + 5 where id > 745 and id < 771;
update npc_types set maxdmg = maxdmg + 10 where id > 745 and id < 771;
update npc_types set mana_regen_rate = mana_regen_rate * 2 where id > 745 and id < 771;
update npc_types set hp_regen_rate = hp_regen_rate * 2 where id > 745 and id < 771;
update npc_types set hp = hp * 2 where id > 783 and id < 824;
update npc_types set mana = mana * 2 where id > 783 and id < 824;
update npc_types set mindmg = mindmg + 5 where id > 783 and id < 824;
update npc_types set maxdmg = maxdmg + 10 where id > 783 and id < 824;
update npc_types set mana_regen_rate = mana_regen_rate * 2 where id > 783 and id < 824;
update npc_types set hp_regen_rate = hp_regen_rate * 2 where id > 783 and id < 824;
update npc_types set hp = hp * 2 where id > 836 and id < 854;
update npc_types set mana = mana * 2 where id > 836 and id < 854;
update npc_types set mindmg = mindmg + 5 where id > 836 and id < 854;
update npc_types set maxdmg = maxdmg + 10 where id > 836 and id < 854;
update npc_types set mana_regen_rate = mana_regen_rate * 2 where id > 836 and id < 854;
update npc_types set hp_regen_rate = hp_regen_rate * 2 where id > 836 and id < 854;
update npc_types set hp = hp * 2 where id > 893 and id < 923;
update npc_types set mana = mana * 2 where id > 893 and id < 923;
update npc_types set mindmg = mindmg + 5 where id > 893 and id < 923;
update npc_types set maxdmg = maxdmg + 10 where id > 893 and id < 923;
update npc_types set mana_regen_rate = mana_regen_rate * 2 where id > 893 and id < 923;
update npc_types set hp_regen_rate = hp_regen_rate * 2 where id > 893 and id < 923;
woton
10-30-2019, 07:46 PM
thx for the post, weve added your script and it seems to be working well.
vBulletin® v3.8.11, Copyright ©2000-2025, vBulletin Solutions Inc.