Edie_Shoreland

Avatar Alt Loan Script

Apr 20th, 2019
8,612
0
Never
3
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //THIS IS A VERY DANGEROUS SCRIPT.  MAKE SURE YOU 100%
  2. //TRUST ANYONE IN THIS SCRIPT'S ALTS LIST.  ONCE YOU
  3. //GIVE PERMISSIONS FOR THIS SCRIPT TO TAKE MONEY, IT
  4. //IS VERY EASY FOR ANYONE IN THE ALTS LIST TO WIPE OUT
  5. //YOUR ACCOUNT WITH A FEW CLICKS.
  6.  
  7. //Modified from the single use transfer example script
  8. //at http://wiki.secondlife.com/wiki/LlGiveMoney
  9.  
  10. //replace the NULL_KEYs with your alts' UUIDs
  11. list alts= ["00000000-0000-0000-0000-000000000000", "00000000-0000-0000-0000-000000000000", "00000000-0000-0000-0000-000000000000", "00000000-0000-0000-0000-000000000000", "00000000-0000-0000-0000-000000000000"];
  12.  
  13. integer transfer = 50;
  14. integer debitPermission;
  15.  
  16. default
  17. {
  18.     state_entry()
  19.     {
  20.         //THIS GIVES ANYONE IN YOUR ALTS LIST PERMISSION TO
  21.         //TAKE MONEY OUT OF YOUR ACCOUNT.
  22.         llRequestPermissions(llGetOwner(), PERMISSION_DEBIT);
  23.     }
  24.  
  25.     run_time_permissions (integer perm)
  26.     {
  27.         if  (perm & PERMISSION_DEBIT) debitPermission = TRUE;
  28.     }
  29.  
  30.     touch_start(integer num_detected)
  31.     {
  32.         //This compares the person touching the prim against your
  33.         //list of alts.
  34.         string convertkey = (string)llDetectedKey(0);
  35.         integer authorized = (~llListFindList(alts, [convertkey]));
  36.  
  37.         //If you haven't given permissions, or the avatar touching
  38.         //the prim is not on the list, nothing happens.
  39.         if (!debitPermission) return;
  40.         if (!authorized) return;
  41.  
  42.         //if both permissions and the alt are approved, the alt
  43.         //receives $50L
  44.         key id = (key)convertkey;
  45.         llGiveMoney(id, transfer);
  46.     }
  47. }
Advertisement
Comments
  • User was banned
  • Varzatis
    123 days
    # CSS 0.85 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
  • User was banned
Add Comment
Please, Sign In to add comment