Untitled

By Social Zebra, 1 Month ago, written in php.
  1. //============================================================
  2. //= Gold Room Script
  3. //===== Current Version: =====================================
  4. //= 1.01
  5. //===== Description: =========================================
  6. //= Literally creates a room...full of gold
  7. //= Note: depending on how much gold you add, you may or may
  8. //=       not develop a headache from the red item flashing
  9. //============================================================
  10.  
  11. -       script  LiteralGoldRoom         -1,{
  12.     OnTimer100:
  13.                 makeitem 969, 1, "pvp_y_1-1", rand(87, 119),rand(86,115);
  14.                 stopnpctimer;
  15.                 initnpctimer;
  16.         end;
  17.  
  18.     OnInit:
  19.         initnpctimer;
  20.         end;
  21. }
  22.  
  23. ra_temple,133,158,6     script  Gold Room       839,{
  24.  
  25.     mes "Would you like to go to the gold room?";
  26.     if(select("Yes", "No") == 1) {
  27.         warp "poring_c01", 100, 100;
  28.     }
  29.     close;
  30. }
  31.  
  32.