Greasy Fork镜像 支持简体中文。

auto-perk-legacy

Subite los stats bobo

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.gf.qytechs.cn/scripts/529079/1549280/auto-perk-legacy.js

  1. // ==UserScript==
  2. // @name auto-perk-legacy
  3. // @namespace https://pablob.eu/
  4. // @match *://rivalregions.com/
  5. // @author pablo
  6. // @description Subite los stats bobo
  7. // @grant GM_getValue
  8. // @grant GM_setValue
  9. // @version 0.0.6
  10. // @require https://greasemonkey.github.io/gm4-polyfill/gm4-polyfill.js
  11. // @downloadURL https://github.com/pbl0/rr-scripts/raw/main/scripts/auto-perk/auto-perk-legacy.user.js
  12. // ==/UserScript==
  13.  
  14. /**
  15. * v0.0.3 - added perk and url menu
  16. */
  17.  
  18. /**
  19. * ONLY WORKS WITH ENGLISH INTERFACE
  20. *
  21. * Perk:
  22. * 1 = strength
  23. * 2 = education
  24. * 3 = endurance
  25. *
  26. * Url:
  27. * 1 = money
  28. * 2 = gold
  29. *
  30. *
  31. */
  32.  
  33. const firstTime = GM_getValue('first-time', true);
  34.  
  35. if (firstTime) {
  36. GM_setValue('perk', 2); // perk
  37. GM_setValue('url', 1); // url
  38. }
  39. $(document).ready(function () {
  40. window.addEventListener('popstate', listener);
  41. const pushUrl = (href) => {
  42. history.pushState({}, '', href);
  43. window.dispatchEvent(new Event('popstate'));
  44. };
  45. listener();
  46. });
  47. function listener() {
  48. if (location.href.includes('#overview')) {
  49. mainPage();
  50. }
  51. }
  52. function mainPage() {
  53. if (firstTime) {
  54. GM_setValue('first-time', false);
  55. }
  56. var waitInterval = setInterval(() => {
  57. if ($('#index_perks_list').length) {
  58. addMenu();
  59. clearInterval(waitInterval);
  60. // to check if any perk is already active
  61. const countdownAmount = $(
  62. '#index_perks_list>div>div[perk]>.hasCountdown'
  63. ).length;
  64. if (countdownAmount === 0) {
  65. setTimeout(() => {
  66. upgradePerk();
  67. }, 1000);
  68. } else {
  69. console.log('perk already active');
  70. setUpgradeTimeout();
  71. }
  72. }
  73. }, 1000);
  74. }
  75. function upgradePerk() {
  76. const perk = $('#myperk').val(); // GM_getValue('perk');
  77. const url = $('#myurl').val(); // GM_getValue('url');
  78. // console.log(perk, url)
  79. $.ajax({
  80. url: '/perks/up/' + perk + '/' + url,
  81. data: { c: c_html },
  82. type: 'POST',
  83. success: function (data) {
  84. console.log('perk upgraded', new Date().toLocaleString());
  85. // console.log(data);
  86. // ajax_action('main/content');
  87. location.reload();
  88. },
  89. });
  90. }
  91. function setUpgradeTimeout() {
  92. let nextPerkText = $('.ib_border>div>.tc>.small')
  93. .first()
  94. .text()
  95. .replace('New skill level: ', '');
  96. if (nextPerkText.includes('tomorrow')) {
  97. let tomorrow = new Date();
  98. tomorrow.setDate(tomorrow.getDate() + 1);
  99. const date = tomorrow.toLocaleDateString();
  100. const time = nextPerkText.replace('tomorrow ', '');
  101. nextPerkText = `${date} ${time}`;
  102. } else if (nextPerkText.includes('today')) {
  103. const date = new Date().toLocaleDateString();
  104. const time = nextPerkText.replace('today ', '');
  105. nextPerkText = `${date} ${time}`;
  106. }
  107. const nextPerk = Date.parse(nextPerkText);
  108. const timeout = nextPerk - c();
  109. addDiv(nextPerkText);
  110. setTimeout(() => {
  111. upgradePerk();
  112. }, timeout + 60000);
  113. }
  114. function addDiv(nextPerkDate) {
  115. if ($('#my-div').length <= 0){
  116. const perks = ['Stregth', 'Education', 'Endurance'];
  117. const urls = ['Money', 'Gold'];
  118. const div = ` <div id="my-div" class="perk_item ib_border hov pointer">
  119. <div class="tc small">Next Perk: ${nextPerkDate}</div>
  120. <div class="tc small">${GM_info.script.name} v${GM_info.script.version} by ${GM_info.script.author}</div>
  121. <div class="tc small">
  122. <a target="blank_" href="https://github.com/pbl0/rr-scripts">More scripts</a>
  123. </div>
  124. </div>`;
  125. if (window.location.href.includes('#overview')) {
  126. $('#index_perks_list').append(div);
  127. }
  128. }
  129. }
  130. function addMenu() {
  131. if ($('#mymenu').length <= 0) {
  132. const perk = Number(GM_getValue('perk'));
  133. const url = Number(GM_getValue('url'));
  134. // console.log(perk, url)
  135. const input = `<div id="mymenu" class="perk_item ib_border hov pointer">
  136. <select id="myurl">
  137. <option ${
  138. url == 1 ? 'selected' : ''
  139. } value="1">Money</option>
  140. <option ${
  141. url == 2 ? 'selected' : ''
  142. } value="2">Gold</option>
  143. </select>
  144. <select id="myperk">
  145. <option ${
  146. perk == 1 ? 'selected' : ''
  147. } value="1">Stregth</option>
  148. <option ${
  149. perk == 2 ? 'selected' : ''
  150. } value="2">Education</option>
  151. <option ${
  152. perk == 3 ? 'selected' : ''
  153. } value="3">Endurance</option>
  154. </select>
  155. </div>`;
  156. $('#index_perks_list').append(input);
  157. $('#myurl').change(function () {
  158. GM_setValue('url', $(this).val());
  159. });
  160. $('#myperk').change(function () {
  161. GM_setValue('perk', $(this).val());
  162. });
  163. }
  164. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址