Advertisement
Guest User

Untitled

a guest
Jul 29th, 2014
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. -- inculdes
  2.  
  3. return {
  4. width = 32,
  5. height = 48,
  6. animations = {
  7. default = {
  8. 'loop',{'1,1','11,1'},.5,
  9. },
  10. walking = {
  11. 'loop',{'1,1','2,1','3,1'},.2,
  12. },
  13.  
  14. rave = {
  15. 'loop',{'5,1','6,1','7,1'},.15,
  16. },
  17.  
  18. },
  19.  
  20. walking = true,
  21. walk_speed = 36,
  22.  
  23. talk_items = {
  24. { ['text']='i am done with you' },
  25. { ['text']='This town is in ruins!' },
  26. { ['text']='What are you carrying?' },
  27. { ['text']='Hello!' },
  28. },
  29. talk_responses = {
  30. ["Hello!"]={
  31. "We don't take kindly to strangers these days,",
  32. "I suggest you move on quickly.",
  33. },
  34. ["This town is in ruins!"]={
  35. "Ever since that tyrant Hawkthorne started ruling,",
  36. "our town started falling apart into pieces. If only he were overthrown!",
  37. },
  38. ["What are you carrying?"]={
  39. "It's a piece of wood. The town blacksmith needs it to make his weapons.",
  40. "You can find him at the last house on the street.",
  41. },
  42. ["die"] ={
  43. "Are you trying to kill me?"
  44. },
  45. ["marry"] ={
  46. "I dont roll that way.",
  47. "If you wanna find someone for a person like you,",
  48. "Take a trip to gay island.",
  49. },
  50. ["directions"] ={
  51. "up, up, down, down",
  52. "oh %&$* i am lost",
  53. },
  54. ["rave"] ={
  55. "boots and cats and",
  56. "boots and cats.",
  57. },
  58. },
  59. command_items = {
  60. { ['text']='die' },
  61. { ['text']='directions'},
  62. { ['text']='marry'},
  63. { ['text']='rave'},
  64.  
  65. },
  66. command_commands = {
  67. ['sleep']=function(npc, player)
  68. npc.walking = false
  69. npc.stare = false
  70. npc.state = "sleep"
  71. npc.busy = true
  72. end,
  73.  
  74. ['rave']=function(npc, player)
  75. npc.walking = false
  76. npc.stare = false
  77. npc.state = "rave"
  78. npc.busy = true
  79. end,
  80. }
  81.  
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement