• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

TrinityCore a way to change boss/mob

q8rakan

Emulation Addict
hello guys i created a boss that cast spells like firebolt/shadowbolt but seams that the spells are dealing low damage like 2k-4k is there a way to change the spell damage? without changing the spells damage by dbc..? and i found a way by changeing world config


Code:
#    Rate.Creature.Normal.SpellDamage
#    Rate.Creature.Elite.Elite.SpellDamage
#    Rate.Creature.Elite.RARE.SpellDamage
#    Rate.Creature.Elite.RAREELITE.SpellDamage
#    Rate.Creature.Elite.WORLDBOSS.SpellDamage
#        Description: Mulitplier for creature spell damage.
#        Default:     1 - (Rate.Creature.Normal.SpellDamage)
#                     1 - (Rate.Creature.Elite.Elite.SpellDamage)
#                     1 - (Rate.Creature.Elite.RARE.SpellDamage)
#                     1 - (Rate.Creature.Elite.RAREELITE.SpellDamage)
#                     1 - (Rate.Creature.Elite.WORLDBOSS.SpellDamage)

Rate.Creature.Normal.SpellDamage          = 10
Rate.Creature.Elite.Elite.SpellDamage     = 10
Rate.Creature.Elite.RARE.SpellDamage      = 10
Rate.Creature.Elite.RAREELITE.SpellDamage = 10
Rate.Creature.Elite.WORLDBOSS.SpellDamage = 10

but i want to change it for specific boss/mob
is there a way??
 

Tommy

Founder
Well if you change the configuration options it most likely changes it for all spell damage via all spells, not sure if that's a smart choice. Have you considered in looking at a more powerful spell instead of the ones you are using?
 

q8rakan

Emulation Addict
Well if you change the configuration options it most likely changes it for all spell damage via all spells, not sure if that's a smart choice. Have you considered in looking at a more powerful spell instead of the ones you are using?

i think i will try using rank 1 spell for boss 1 and rank 5 for boss 2 to check if there is change in the damage :)

- - - Updated - - -

You could look into Unit::CastCustomSpell

well i didnt understand what u mean :p
 

Vitrex

Moderator
One usefull tip, do not upgrade normal npc damage via this whay, why ? because it's affects DK pets and shaman totems elements damage.just check which spell does low damage replace with alternative one OR buff it via database or .dbc.
 

q8rakan

Emulation Addict
One usefull tip, do not upgrade normal npc damage via this whay, why ? because it's affects DK pets and shaman totems elements damage.just check which spell does low damage replace with alternative one OR buff it via database or .dbc.


I see :D Thank You
 
Top