Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. /datum/species/ethereal/proc/handle_light(mob/living/carbon/human/H)
  2. if((H.stat != DEAD) && (!H.IsStun()))
  3. var/percent = max(H.health, 0) / 100d
  4. current_color = rgb(r2 + ((r1-r2)*percent), g2 + ((g1-g2)*percent), b2 + ((b1-b2)*percent))
  5. to_chat(world, "aaa")
  6. H.set_light(4 + (energyrange * energy), 2 + (energypower * energy), current_color)
  7. H.dna.features["mcolor"] = copytext(current_color, 2)
  8. else
  9. H.set_light(0)
  10. H.dna.features["mcolor"] = "7f7f7f"
  11. H.update_body()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement