Guest User

Untitled

a guest
Nov 21st, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. for(var/mob/living/carbon/human/H in view(1,targloc))
  2. if(ishumanbasic(H) && (H.getorgan(/obj/item/organ/tail/cat) || H.getorgan(/obj/item/organ/ears/cat) || H.dna.features["ears"] == "Cat" || H.dna.features["human_tail"] == "Cat"))
  3. if(!H.incapacitated() && !H.lying)
  4. H.visible_message("<span class='warning'>[H] pounces on the light!</span>","<span class='userdanger'>LIGHT!</span>")
  5. H.Knockdown(10)
  6. H.Move(targloc)
  7. H.setDir(NORTH) //Facedown looks best imo
  8.  
  9. Just paste above in laserpointer.dm line 127 or so
Add Comment
Please, Sign In to add comment