Skip to content

Bleeding Effect

Gustavo Contreiras edited this page Feb 24, 2019 · 8 revisions

Adding bleeding effect to weapon:

  • Go to TheForgottenTibiaServer/data/weapons/ and open weapons.xml with notepad
  • Set the bleeding_effect.lua script to the weapon you want:
    <melee id="2413" script="bleeding_effect.lua" /> <!-- Broadsword -->

Changing bleeding effect damage:

  • Go to TheForgottenTibiaServer/data/weapons/scripts/ and open bleeding_effect.lua with notepad
  • Change damage formula

Changing bleeding effect chance:

  • Go to TheForgottenTibiaServer/data/weapons/scripts/ and open bleeding_effect.lua with notepad
  • To make it easier to make bleeding, increase the '25' value in this line:
    if math.random(1, 100) <= 25 then
Clone this wiki locally