Advertisement
Guest User

Untitled

a guest
Dec 20th, 2011
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. //
  2.  
  3. 002-1.gat,15,67,0|script|Samuel|132,{
  4. mes "[Samuel the Nomad]";
  5. mes "\"This is really a nice place.\"";
  6. mes "Don't you think so?\"";
  7. close;
  8. }
  9.  
  10. 002-1.gat,18,68,0|script|Elijah|128,{
  11. mes "[Elijah the Nomad]";
  12. mes "\"If I only had a tent...\"";
  13. close;
  14. }
  15. // CAT SCRIPT TEST
  16. 002-1.gat,22,62,0|script|cat|172,{
  17. if(Milk == 2) goto L_Done;
  18. mes "[cat]";
  19. mes "You see a cat licking its paws.";
  20. next;
  21. mes "It looks thirsty in this heat.";
  22. next;
  23. goto L_Question;
  24.  
  25. L_Question:
  26. mes "[cat]";
  27. mes "You think hard about feeding the cat and decide";
  28. next;
  29. menu
  30. "To put something in its dish", L_Sure,
  31. "Nope, I hate cats", -;
  32. close;
  33.  
  34. L_Sure:
  35. if(countitem("Milk") >= 1)
  36. goto L_Have;
  37. mes "[cat]";
  38. mes "The cat meows but does not move";
  39. next;
  40. mes "It looks thirsty for Milk";
  41. close;
  42.  
  43. L_Have:
  44. mes "[cat]";
  45. mes "The cat perks up and begins to become lively";
  46. next;
  47. mes "You pick up its dish and find 50gp";
  48. next;
  49. mes "You think to yourself I did feed there cat";
  50. next;
  51. mes "you decide to keep the money";
  52. next;
  53. mes "you pet the cat for a bit and walk off";
  54. next;
  55. if(countitem("Milk") < 1)
  56. goto L_Sure;
  57. delitem "milk", 1;
  58. set zeny, zeny + 50;
  59. set Milk, 2;
  60. close;
  61.  
  62. L_Done:
  63. mes "[cat]";
  64. mes "This cat looks happy to see you";
  65. next;
  66. mes "You pet the cat and get froze here";
  67. close;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement