Guest User

Untitled

a guest
May 20th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. world
  2. name = "Dwarves"
  3. turf = /turf/grass
  4. view = 4
  5.  
  6. mob
  7. icon = 'Dwarf.dmi'
  8. turf
  9. icon = 'Dwarf.dmi'
  10. obj
  11. icon = 'Dwarf.dmi'
  12.  
  13. mob
  14. icon_state = "Dwarf"
  15.  
  16. verb
  17. say(msg as text)
  18. oview() << "\blue<b>[usr] \black</b> said, '[msg]'"
  19. usr << "\red<b>You \black</b> said, '[msg]'"
  20.  
  21. turf/grass
  22. icon_state = "Grass"
  23.  
  24. turf/rock
  25. icon_state = "Rock"
  26. opacity = 1
  27. density = 1
  28.  
  29. obj/tree
  30. icon_state = "Tree"
  31. density = 1
  32.  
  33. Click()
  34. new /obj/log (src.loc)
  35. new /obj/sapling (src.loc)
  36.  
  37. del(src)
  38.  
  39. Take()
  40. oview() << "[usr] tries to lift the [src]"
  41. usr << "You can't take this"
  42. return
  43.  
  44. obj/log
  45. icon_state = "Log"
  46.  
  47. Click()
  48. Take()
  49.  
  50. obj/sapling
  51. icon_state = "Sapling"
  52.  
  53. Click()
  54. Take()
  55. obj/verb
  56.  
  57. Take()
  58. set src in oview(1)
  59. usr.contents += src
  60. oview() << "<b>[usr] picks up the [src]"
  61. usr << "<b>You pick up the [src]"
  62.  
  63. Drop()
  64. new src (usr.loc)
  65. oview() << "<b>[usr] drops the [src]"
  66. usr << "<b>You drop the [src]"
  67. del(src)
Add Comment
Please, Sign In to add comment