WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2025 Poal.co

1.5K

(post is archived)

[–] [deleted] 4 pts (edited )

Because I'm lazy any only have a handfull of things to find in the massive world, I found this website to help me find the ridiculous locations of the legendary fish. Unfortunately by default to see the heatmap for most of the animals, you need a 'pro' account. I disagree, so I found a way around it. Steps below (image for context)...

  1. Create a Free account, log in
  2. Open the developer console (F12 in chrome) and enter window.user.hasPro = true;
  3. Click on one of the 'Free' tier animals (really any item thats free) to get events to fire
  4. Presto! You're a pro.

Obviously this could be used with greasemonkey/tampermonkey, but you can do that part. I was just mucking about in the site's scripts and thought I'd share.

Edit:

So if you want to make a userscript out of this you can use the code below. I added the last two lines to automatically toggle the 'pro' switch and reset the view. Unless they change the element Ids, it will suffice.

window.user.hasPro = true; document.getElementById('heatmap-category-101').click(); document.getElementById('heatmap-category-101').click();

[–] 1 pt (edited )

Thanks for the tip, I found a way to get it working without needing an account too:

window.user = {hasPro:true};

Seems to work for me at least. Edit: though I just realized this site needs an account to save found items anyway, darn, IGN map used cookies instead..

[–] 1 pt

That is awesome!

[–] 0 pt

still can't add more than 5 notes

Error: Request failed with status code 400 at FtD3.e.exports (map.js?id=ab23fb32fa4f4c3f9213:1) at e.exports (map.js?id=ab23fb32fa4f4c3f9213:1) at XMLHttpRequest.p.<computed> (map.js?id=ab23fb32fa4f4c3f9213:1) at XMLHttpRequest.sentryWrapped (sentry.5.9.1.min.js:2)

Yeah, the storing of those values is done server-side and the credentials for the account are obviously from a free account. It might be possible to get around it, but I am not going that deep into it.