Emistry

[RO] Hourly Point - auto reset 1.3

Nov 25th, 2016
1,407
0
Never
9
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. // https://rathena.org/board/topic/108246-hourly-points/
  2.  
  3. - script hourly_point_main -1,{
  4.  
  5. OnInit:
  6. .max_minute = 300;
  7. bindatcmd "check",strnpcinfo(3)+"::OnAtcommand";
  8. .npc_name$ = strnpcinfo(3);
  9. end;
  10.  
  11. OnAtcommand:
  12. dispbottom "Accumulated "+#daily_minute_count+" / "+.max_minute+" minute(s) - "+ ( ( #daily_minute_count < .max_minute )?" In Progress":"Completed" );
  13. end;
  14.  
  15. OnClock0000:
  16. query_sql( "DELETE FROM acc_reg_num` WHERE `key` = '#daily_minute_count' AND `account_id` IN ( SELECT `account_id` FROM `char` WHERE `login` = 0 GROUP BY `account_id` ) " );
  17. addrid(0);
  18. #daily_minute_count = -1;
  19.  
  20. OnUpdate:
  21. deltimer .npc_name$+"::OnUpdate";
  22. #daily_minute_count++;
  23. switch ( #daily_minute_count ) {
  24. default:
  25. break;
  26. case 60: // 60 minutes
  27. #CASHPOINT += 1;
  28. getitem 512,1;
  29. break;
  30. case 120: // 120 minutes
  31. #CASHPOINT += 2;
  32. getitem 512,2;
  33. break;
  34. case 180: // 180 minutes
  35. #CASHPOINT += 3;
  36. getitem 512,3;
  37. break;
  38. case 240: // 240 minutes
  39. #CASHPOINT += 4;
  40. getitem 512,4;
  41. break;
  42. case 300: // 300 minutes
  43. #CASHPOINT += 5;
  44. getitem 512,6;
  45. break;
  46. }
  47.  
  48. OnPCLoginEvent:
  49. dispbottom "Accumulated "+#daily_minute_count+" minute(s)";
  50. if ( #daily_minute_count < .max_minute ) {
  51. addtimer ( 60 * 1000 ), .npc_name$+"::OnUpdate";
  52. }
  53. end;
  54.  
  55. }
Advertisement
Comments
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • User was banned
  • Fexlator
    61 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