Advertisement
Kodos

Gamblosphere v1.0

Jan 2nd, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. key playerID;
  2. string lastWinner = "None";
  3. integer potValue = 50;
  4. float odds = 0.905; //Valid values are 0.50 to 0.99.  
  5. integer moneyIn;
  6. integer moneyOut;
  7. integer counter;
  8. integer maxLosses = 125;
  9.  
  10. display(string text)
  11. {
  12.     llSetText(text, <1,1,1>, 1);
  13. }
  14.  
  15. default
  16. {
  17.     state_entry()
  18.     {
  19.         //Do some initialization here
  20.         llRequestPermissions(llGetOwner(), PERMISSION_DEBIT);
  21.     }
  22.     run_time_permissions(integer permissions)
  23.     {
  24.         //Only wait for payment if the owner agreed to pay out money
  25.         if (permissions)
  26.         {
  27.             llSay(0, "Initailized Successfully...");
  28.             state waiting;
  29.         }
  30.     }
  31. }
  32. state broken
  33. {
  34.     state_entry()
  35.     {
  36.         display("Machine Malfunction.  Please Contact Kodos Macarthur");
  37.     }
  38.     touch_start(integer num_detected)
  39.     {
  40.         if (llDetectedKey(0) == llGetOwner())
  41.         {
  42.             llSay(0, "Resuming...");
  43.             maxLosses += 50;
  44.             state waiting;
  45.         }
  46.     }
  47. }
  48. state waiting
  49. {
  50.     state_entry()
  51.     {
  52.         string oddsString;
  53.        
  54.         oddsString = "1:" + (string)llRound(1/(1-odds));
  55.        
  56.         llSetColor(<0,0,1>, ALL_SIDES);
  57.         display("Gamblosphere\nCurrent Pot: L$" + (string)potValue + "\nPay L$10 to Play!\nOdds " + oddsString + "\nLast Winner: " + lastWinner);
  58.        
  59.         if ((moneyOut - moneyIn) > maxLosses)
  60.         {
  61.             state broken;
  62.         }
  63.         //llSetTimerEvent(300);
  64.     }
  65.     money(key id, integer amount)
  66.     {
  67.         if (amount == 10)
  68.         {
  69.             playerID = id;
  70.             moneyIn += amount;
  71.             state playing;        
  72.         }
  73.         else
  74.         {
  75.             llSay(0, "You must pay L$10 to play.  Refunding Money...");
  76.             llGiveMoney(id, amount);
  77.         }
  78.     }
  79.     touch_start(integer num_detected)
  80.     {
  81.         if (llDetectedKey(0) == llGetOwner())
  82.         {
  83.             llSay(0, "L$ Collected: " + (string)moneyIn);
  84.             llSay(0, "L$ Dispensed: " + (string)moneyOut);
  85.         }
  86.     }
  87.     timer()
  88.     {
  89.         //llSay(0, "Play to Win!  Only L$10 per play!  Current Pot is L$" + (string)potValue + "!");
  90.     }
  91. }
  92.  
  93. state playing
  94. {
  95.     state_entry()
  96.     {
  97.         counter = 0;
  98.         display("Randomizing...");
  99.         llLoopSound("SlotLoop", 1);
  100.         llSetTimerEvent(0.1);
  101.     }
  102.     timer()
  103.     {
  104.         counter += 1;
  105.         llSetColor(<llFrand(1), llFrand(1), llFrand(1)>, ALL_SIDES);
  106.         if (counter >= 80)
  107.         {
  108.             llSetTimerEvent(0);
  109.             llStopSound();
  110.             if (llFrand(1) >= odds)
  111.             {
  112.                 state winner;
  113.             }
  114.             else
  115.             {
  116.                 state loser;
  117.             }
  118.         }
  119.     }
  120. }
  121.  
  122. state winner
  123. {
  124.     state_entry()
  125.     {      
  126.         display("You won L$" + (string)potValue + "!");
  127.         lastWinner = llKey2Name(playerID) + " L$" + (string)potValue;
  128.         llSetColor(<0,1,0>, ALL_SIDES);
  129.         llGiveMoney(playerID, potValue);
  130.         moneyOut += potValue;
  131.         potValue = 50;
  132.         llSleep(5);
  133.         state waiting;
  134.     }
  135. }
  136.  
  137. state loser
  138. {
  139.     state_entry()
  140.     {
  141.         display("Sorry, better luck next time...");
  142.         llSetColor(<1,0,0>, ALL_SIDES);
  143.         potValue += 3;
  144.         llSleep(5);
  145.         state waiting;
  146.     }
  147. }
  148. // END //
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement