Guest User

Untitled

a guest
Jun 25th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. /obj/structure/stool/attackby(obj/item/weapon/W as obj, mob/user as mob)
  2. if(istype(W, /obj/item/weapon/wrench))
  3. playsound(src.loc, 'Ratchet.ogg', 50, 1)
  4. new /obj/item/stack/sheet/metal(src.loc)
  5. del(src)
  6. return
  7.  
  8.  
  9. /obj/structure/stool/bed/attackby(obj/item/weapon/W as obj, mob/user as mob)
  10. ..()
  11. if(istype(W, /obj/item/weapon/wrench))
  12. playsound(src.loc, 'Ratchet.ogg', 50, 1)
  13. new /obj/item/stack/sheet/metal(src.loc)
  14. del(src)
  15. return
Add Comment
Please, Sign In to add comment