Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2014
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. nov_gar01,98,84,0 script Worried Girl 882,{
  2.  
  3. if (#worriedgirldone == 1) {
  4. mes "Hey! You've already done this quest.";
  5. close;
  6. }
  7. mes "Hey! Hey you right there. Do you think maybe you could do something for me?";
  8. menu "Sure Maybe",-;
  9. next;
  10. mes "It's starting to get dark and I am supposed to be meeting a friend here, I'm worried she wont find me at this rate.";
  11. next;
  12. mes "Would you be nice enough to go find me some fire wood? If I have a fire there's no way she could miss me. I am pretty sure there has to be some around here somewhere.";
  13. menu "I guess so..",-;
  14. next;
  15. mes "Thanks! Lets say around 10 pieces of wood.";
  16. menu "I have the wood.",-;
  17. if(countitem(6008) < 10) goto Lne;
  18. next;
  19. mes "Thank you so much! hopefully my friend shows up soon shes taking forever!";
  20. set #worriedgirldone,1;
  21. delitem 6008,10;
  22. close;
  23.  
  24. Lne:
  25. mes "I don't think you have quite enough wood... Come back when you have more.";
  26. close;
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement