salahzar

tartaruga

Apr 5th, 2013
3,771
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. vector r1=<135, 0, 0>; // rotazione senso 1
  2. vector r2=<225, 0, 180>; // rotazione senso 2
  3.  
  4. vector p1=<85.4375, 38.4954-2, 23.3226>; // punto 1 della spola
  5. vector p2=<51.8792, 41.5985-2, 23.3226>; // punto 2 della spola
  6.  
  7. integer FACT=100; // quantità di passi per senso di marcia
  8.  
  9. vector diff;
  10. vector from;
  11. vector to;
  12.  
  13. default
  14. {
  15.     state_entry()
  16.     {
  17.         llSetRot(llEuler2Rot(DEG_TO_RAD*r1));
  18.         diff=(p2-p1)/FACT; from=p1; to=p2;
  19.         llSetPos(p1);
  20.         llSetTimerEvent(0.5);
  21.  
  22.     }
  23.    timer()
  24.     {
  25.         if(llVecDist(llGetPos(),to)<3) state state2;
  26.         llSetPos(llGetPos()+diff);
  27.     }
  28. }
  29. state state2
  30. {
  31.     state_entry()
  32.     {
  33.         llSetRot(llEuler2Rot(DEG_TO_RAD*r2));
  34.         diff=(p1-p2)/FACT; from=p2; to=p1;
  35.         llSetPos(p2);
  36.         llSetTimerEvent(0.5);
  37.  
  38.     }
  39.    timer()
  40.     {
  41.         if(llVecDist(llGetPos(),to)<3) state default;
  42.         llSetPos(llGetPos()+diff);
  43.     }
  44. }
Advertisement
Comments
  • Quinmitir
    9 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).
  • Fenmilon
    2 days
    # CSS 0.06 KB | 0 0
    1. We just shared HQ data on our channel: https://t.me/theprotocolone
Add Comment
Please, Sign In to add comment