Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,15 @@ It renders a small draggable control panel over the game and fires synthetic mou
3. Tampermonkey detects the `.user.js` and opens its install tab — click **Install**.
4. Go to <https://www.legendsofidleon.com/> and load the game. The panel appears in the top-right.

To update later, just open the raw link again and re-install (Tampermonkey can also auto-check if you enable it).
### Updating

Every script declares `@updateURL`, so Tampermonkey polls this repo on its own — but only on its update interval, which defaults to **once a day**. To pull a change immediately, do any of:

- **Open the raw link again.** Tampermonkey intercepts the `.user.js`, shows you a diff, and offers **Update**. Instant, and works no matter how the script was installed.
- **Dashboard → Installed Userscripts → click the "Last updated" timestamp** for that script. That checks just that one.
- **Dashboard → Settings → Config mode: Advanced → Externals/Update → check interval**, to make automatic checks more frequent.

Two things that look like a broken update but aren't: `raw.githubusercontent.com` is CDN-cached for about five minutes, so a change pushed a moment ago may not be visible yet; and Tampermonkey only updates when `@version` **increases**, which is why the build refuses to ship suite content without bumping it.

### Manual install (alternative)

Expand Down
4 changes: 3 additions & 1 deletion idleon-clicker.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// ==UserScript==
// @name IdleOn Clicker
// @namespace nativerobot
// @version 3.4
// @version 3.5
// @downloadURL https://raw.githubusercontent.com/averagenative/idleon-userscripts/main/idleon-clicker.user.js
// @updateURL https://raw.githubusercontent.com/averagenative/idleon-userscripts/main/idleon-clicker.user.js
// @description Stealthy in-page autoclicker panel for Legends of IdleOn (browser)
// @match https://www.legendsofidleon.com/*
// @grant none
Expand Down
4 changes: 3 additions & 1 deletion idleon-darts.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// ==UserScript==
// @name IdleOn Darts Helper
// @namespace nativerobot
// @version 1.3
// @version 1.4
// @downloadURL https://raw.githubusercontent.com/averagenative/idleon-userscripts/main/idleon-darts.user.js
// @updateURL https://raw.githubusercontent.com/averagenative/idleon-userscripts/main/idleon-darts.user.js
// @description Draws the predicted dart path and where it lands on the board, wind included, for the Throwy Darts minigame
// @match https://www.legendsofidleon.com/*
// @grant none
Expand Down
4 changes: 3 additions & 1 deletion idleon-fishing.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// ==UserScript==
// @name IdleOn Fishing Helper
// @namespace nativerobot
// @version 2.0
// @version 2.1
// @downloadURL https://raw.githubusercontent.com/averagenative/idleon-userscripts/main/idleon-fishing.user.js
// @updateURL https://raw.githubusercontent.com/averagenative/idleon-userscripts/main/idleon-fishing.user.js
// @description Draws where your cast will land, plus fish and hazard markers, for the IdleOn fishing minigame
// @match https://www.legendsofidleon.com/*
// @grant none
Expand Down
4 changes: 3 additions & 1 deletion idleon-hoops.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// ==UserScript==
// @name IdleOn Hoops Helper
// @namespace nativerobot
// @version 1.7
// @version 1.8
// @downloadURL https://raw.githubusercontent.com/averagenative/idleon-userscripts/main/idleon-hoops.user.js
// @updateURL https://raw.githubusercontent.com/averagenative/idleon-userscripts/main/idleon-hoops.user.js
// @description Dotted-line shot preview + live ball arc for the Swishy Hoops minigame in Legends of IdleOn
// @match https://www.legendsofidleon.com/*
// @grant none
Expand Down
4 changes: 3 additions & 1 deletion idleon-suite.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// ==UserScript==
// @name IdleOn Helper Suite
// @namespace nativerobot
// @version 1.2
// @version 1.3
// @downloadURL https://raw.githubusercontent.com/averagenative/idleon-userscripts/main/idleon-suite.user.js
// @updateURL https://raw.githubusercontent.com/averagenative/idleon-userscripts/main/idleon-suite.user.js
// @description All-in-one: autoclicker + Hoops, Fishing and Darts minigame helpers for Legends of IdleOn, each one individually switchable
// @match https://www.legendsofidleon.com/*
// @grant none
Expand Down
2 changes: 2 additions & 0 deletions tools/suite/00-head.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// @name IdleOn Helper Suite
// @namespace nativerobot
// @version 1.2
// @downloadURL https://raw.githubusercontent.com/averagenative/idleon-userscripts/main/idleon-suite.user.js
// @updateURL https://raw.githubusercontent.com/averagenative/idleon-userscripts/main/idleon-suite.user.js
// @description All-in-one: autoclicker + Hoops, Fishing and Darts minigame helpers for Legends of IdleOn, each one individually switchable
// @match https://www.legendsofidleon.com/*
// @grant none
Expand Down
Loading