cinderweb

Untitled

Sep 4th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. //The paperboy system
  2.  
  3. function|script|Papernews|,
  4. {
  5. mes "[" + @npcname$ + "]";
  6. mes "\"Would you like to buy one of our bi-weekly newsletters?\"";
  7. mes "\"Only " + @newspaper_price + " gold pieces?\"";
  8. menu
  9. "Yes I would.", L_Start_Paper,
  10. "No thanks.", L_Close;
  11.  
  12. L_Start_Paper:
  13. if(Zeny < "@newspaper_price") goto L_NotEnoughMoney;
  14. set Zeny, Zeny - " @newspaper_price ";
  15. mes "[THE NEWS]";
  16. mes "\"We have a new gm. He goes by the name of Melkior so give him a wave and a smile when you see him.\"";
  17. next;
  18. mes "\"There seems to be some troubles brewing in Nivalis. They say that the slimes got loose in the Blue Sages library and they are calling for adventurers to come investigate. Watch out for the yeti's though as they have taken a violent turn.\"";
  19. next;
  20. mes "\"In Tulimshar some new caves have opened up, and the sewers are starting to smell of corpses, as young adventurers make their way down the ladders to help clean them out of the smelly area.\"";
  21. next;
  22. mes "\"In Hurnscald the nurse is still looking for adventurers brave enough to try and help her make anti-venom for snake and scorpion bites and stings. Those brave enough to help her will have to bring a few things along to help. See the nurse for details.\"";
  23. next;
  24. mes "\"There seem to be bandits on the road at times between Hurnscald and the caves so if you travel hire an adventurer to help guard you along the way. Also the constable in Hurnscald is looking for a thief. If you have any information for him it would be greatly appreciated.\"";
  25. goto L_Close;
  26.  
  27. L_NotEnoughMoney:
  28. mes "[" + @npcname$ + "]";
  29. mes "\"I'm sure it's an oversight but you don't have enough money.\"";
  30. goto L_Close;
  31.  
  32. L_Close:
  33. return;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment