Advertisement
Guest User

Untitled

a guest
May 27th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.67 KB | None | 0 0
  1. prontera,162,184,4  script  shop#1  919,{
  2. //FUNCTION 1 NIGHT MODE
  3. if (isnight()) {
  4. mes "[Shop]";
  5. mes "Welcome!";
  6. mes "Today is lx, this means i am having a ^FF0000big dispostal with discount and especially valuable items^000000!";
  7. mes "The amount of the items is limited. Please help yourself!";
  8. next;
  9. mes "[Shop]";
  10. mes "You would like to see what l am";
  11. mes "offering, right? Or do you want to";
  12. mes "sell your items?";
  13. next;
  14.     menu "- See offer.",L_BUY,"- Sell items.",L_SELL;
  15.  
  16. L_SELL:
  17.     mes "[Shop]";
  18.     mes "Too bad...This is a golden";
  19.     mes "opportunity!";
  20.     close2;
  21.     goto L_SELL2;
  22.  
  23.  
  24.     L_SELL2:
  25.         callshop "SellStore",2;
  26.         end;
  27.  
  28.  
  29. L_BUY:
  30.     mes "[Shop]";
  31.     mes "Take your time to see everything!";
  32.     close2;
  33.     goto L_BUY2;
  34.    
  35.     L_BUY2:
  36.         callshop "BuyStore",1;
  37.         end;
  38. } else {
  39. //FUNCTION DAY MOOD
  40.  
  41. L_MENU:
  42.     mes "[Shop]";
  43.     mes "All hail!";
  44.     mes "How can l help you today?";
  45.     next;
  46.     menu "- l would like to sell items.",L_SELL,"- What do you do here?",L_ASK,"- l want to go, thank you... ",L_END;
  47.  
  48.     L_SELL:
  49.         mes "[Shop]";
  50.         mes "Okay, let us deal!";
  51.         close2;
  52.         goto L_SELL2;
  53.  
  54.  
  55.     L_SELL2:
  56.         callshop "GenStore",2;
  57.         end;
  58.  
  59.     L_ASK:
  60.         mes "[Shop]";
  61.         mes "l am a street hawker. You can everytime sell your items to me, if l am sleeping sometimes, please wake me up.";
  62.         next;
  63.         mes "[Shop]";
  64.         mes "Furthermore, every lx l make a tour through the city and sell the valuable items which were sold to me.";
  65.         mes "Besides, i will sell some other, special items.";
  66.         mes "Taking a look is worth it!";
  67.         next;
  68.         goto L_MENU;
  69.  
  70.     L_END:
  71.         mes "[Shop]";
  72.         mes "Thanky you very much!";
  73.         close;
  74.  
  75. }
  76. }
  77.  
  78. -   shop    BuyStore    -1,607:-1
  79. -   shop    SellStore   -1,511:-1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement