#⚒️ MGTools 🛠️

1 messages · Page 3 of 1

wise perch
#

Right click favourites too, they don’t advertise that enough 😂

#

So kinda gonna be a global ultimate favourite button bahahaha

#

Tied into that could be useful to have a specific crop favourite button so you can lock a slot in garden

marble berry
#
function hookAtom(atomPath, windowKey) {
  if (!globalThis.jotaiAtomCache) return;

  const atom = globalThis.jotaiAtomCache.get(atomPath);
  if (!atom?.read) return;

  const originalRead = atom.read;
  atom.read = (t) => {
    const value = originalRead(t);
    window[windowKey] = value;
    return value;
  };
}

hookAtom("/home/runner/work/magiccircle.gg/magiccircle.gg/client/src/games/Quinoa/atoms/myAtoms.ts/myDataAtom", "myData")

function favoriteSpecies(speciesName) {
    const items = myData.inventory.items;
    const favoritedIds = new Set(myData.inventory.favoritedItemIds);

    for (const item of items) {
        if (item.species === speciesName && !favoritedIds.has(item.id)) {
            window.MagicCircle_RoomConnection.sendMessage({
                scopePath: ["Room", "Quinoa"],
                type: "ToggleFavoriteItem",
                itemId: item.id
            });
            console.log(`Favorited: ${item.species} (id: ${item.id})`);
        }
    }
}

function unfavoriteSpecies(speciesName) {
    const items = myData.inventory.items;
    const favoritedIds = new Set(myData.inventory.favoritedItemIds);

    for (const item of items) {
        if (item.species === speciesName && favoritedIds.has(item.id)) {
            window.MagicCircle_RoomConnection.sendMessage({
                scopePath: ["Room", "Quinoa"],
                type: "ToggleFavoriteItem",
                itemId: item.id
            });
            console.log(`Unfavorited: ${item.species} (id: ${item.id})`);
        }
    }
}

...

favoriteSpecies("Starweaver")
unfavoriteSpecies("Starweaver")
tender sky
#

He need sum milk(sleep)

lofty orbit
#

petition to add tools to shop x)

#

it could be like on the bottom half of eggs screen

brisk parrot
#

Since we only have a few eggs anyway, and a little divider between them

#

Ok let’s do this

brisk parrot
lethal spire
#

how to use mgtools in discord

brisk parrot
#

To use the app, will be the next goal but may take a bit more time

#

If anyone wants to try to test them let me know, it would help tremendously

#

To test, and send me console logs

fresh lion
#

I can try rn

brisk parrot
#

test version, have not tried it yet, im still looking through this mess

fresh lion
#

on discord app?

brisk parrot
#

Intended changes:
Discord Browser support
and Auto Favoriting based on species

fresh lion
#

Values menu doesnt work

brisk parrot
#

Also should auto refresh when devs push an update

#

I got a stack trace ya same

#

Need to code autofavorite to exist

fresh lion
#

Join Room buttons still enabled on discord app -> crash

brisk parrot
#

Hmm

#

take 2

fresh lion
#

No menu lmao

#

Dont inject into iframe

brisk parrot
#

It’s under values for now

#

Ah ok for discord

#

Ok

#

Are u doing discord app or browser

fresh lion
#

browser

brisk parrot
#

Ok 1 moment

#

take 3

fresh lion
#

nop

brisk parrot
#

Hmm

#

Man I wish I was more patient with this script from the start

#

Soon, Ghastly is going to restructure it by hand, I’ll do some too to help the process

fresh lion
#

sandbox error

#

looks like for some reason it doesnt use GM_xmlhttpRequest or unsafeWindow

brisk parrot
#

Ok 1 moment for next shot:
notes:
discord browser no go
Auto favoriting displaying but not functional in browser version

#

So discord browser csp blocking, Gm functions not avail and auto favoriting issue hooking garden data and my data

fresh lion
brisk parrot
#

Event handlers to call functions from target window

#

Adding a diagnostic in case

#

Auto favoriting working

fresh lion
brisk parrot
#

Added mutation based auto-favoriting. Double checking a few things for discord compatibility

#

At least browser for now

#

Romann what do you do for your career? Curious

fresh lion
#

Actually unemployed lol

brisk parrot
#

That’s the best employment, lol as long as you can survive through it. Hope you find something soon if you’re looking.

fresh lion
#

I hope so

brisk parrot
#

Ok just a minute and will see

#

Pods and mythical eggs always happen when I’m working on this lol

#

Probably because I’m always working on it, and I’m off work today lol

fresh lion
#

Honestly, you already have a mostly stable, working build. The smartest move now is a full refactor to establish a solid foundation and use esbuild to split the code into multiple files for a cleaner architecture. If you bake in Discord compatibility and proper WebSocket/Atom handling from the start, you’ll add features much faster, with far fewer bugs, and maintenance will be much simpler. Might even save you from grinding on the code every day, lol. You already have all the pieces to rebuild the feature logic, so getting everything back up on a clean base shouldn’t take too long

#

Same for PC/mobile support: detect the screen resolution up front and rebuild the UI to be fully responsive, components included. It’s a big lift, but once it’s done you’ll basically have the best mod out there

brisk parrot
#

Yea that is the plan, Ghastly is going to work on that soon. I know I will too.

woven vortex
#

is there a way to auto update the game while i afk? because alert wont work when the game force me to click the update button so i missed starweaver 😢 StarweaverFlower

fast fossil
woven vortex
#

very appreciated!!!

fast fossil
#

but keep in mind the desktop app is very in beta rn and it might not get addid for a little bit

woven vortex
#

only needed the alert to work

#

👀

fast fossil
#

Ye

brisk parrot
#

Worked through 3 updates

#

It is actually already in the script but it failed

woven vortex
wooden nymph
#

im prob doing something wrong but i have the new version installed with tapermonkey on opera with discord open and developer mode on but im not seeing the "dock" anywhere on my screen im not sure whats up though

lofty orbit
brisk parrot
brisk parrot
#

And show me console logs

#

Or see if it works without tampermonkey, so we can isolate the issue

#

Here is the current beta if anyone wants to help test

wooden nymph
#

oh interesting pasting it directly makes it work

brisk parrot
wooden nymph
#

ill try that next

#

i just copied it into tamper monkey i tried both on opera and chrome with develop settings on each and it just doesnt seem to be activating when i load up magic garden for some reason

brisk parrot
wooden nymph
#

no i just started playing im gonna look more into making sure im using tampermonkey correctly and figure that out cuz the code worked when put directly into the console

#

oh when i hover over MGTools in the extension it says this script was not excecated yet

brisk parrot
brisk parrot
#

Seriously you’re going to autocorrect tampermonkey to tampon key ok cool thx Apple

#

Forgot the keys to my tampon don’t mind me

wooden nymph
#

lmfao

#

i think i got it but idk how to fix, when i try to enable dev mode in the extension to let stuff run the allower uer scripts part i allow it but when i close the settings and open it again it like re disables itself

wooden nymph
brisk parrot
#

wait, it worked in discord?

#

it shouldnt work in discord just yet

#

Did it rly that would be cool

wooden nymph
#

i was unaware of that

brisk parrot
#

it should only work on web browser version but

#

I am currently working on discord compatibility right now

#

So it actually came up for you in discord when you copy pasted into the console?

#

3.4.7?

wooden nymph
#

lemme see if i can get it to do it again

#

couldve sworn that worked before

brisk parrot
brisk parrot
wooden nymph
#

idk i thought it happened before, also its now saying that it activated but i dont se the bar (on magicgarden.gg this time)

brisk parrot
#

Or tampermonkey

tender sky
#

Im late to the party but

ALT+M doesnt show?

#

or even opening ur ui and zooming out doesnt?

#

cause i often have my dock go missing somewhere off screen

wooden nymph
#

through tamper monkey and alt m isnt working idk ill try to trouble shoot more tomorrow i gota go for tonight sorry have a good evening

brisk parrot
#

Are you running any other extensions perhaps? I know you said you turned on developer mode

Install Tampermonkey Extension
• For Chrome: Install from the Chrome Web Store.
• For Opera: First, use the Opera add-on “Install Chrome Extensions” to allow Chrome extensions in Opera. Then install Tampermonkey via the Chrome Web Store by clicking “+ Add to Opera”.[github +2]
2. Install the Userscript
• Open the raw .user.js or raw GitHub link for the script.
• Tampermonkey should auto-detect the script and prompt for installation.
• Confirm by clicking “Install”.
3. Check Extension Activation
• Ensure the Tampermonkey icon appears in the browser’s extensions bar.
• Click the icon, and verify the script appears in the dashboard and is set to “Enabled”.[youtube +1]
4. Enable Developer Mode and Allow User Scripts
• Open Chrome/Opera extensions page (chrome://extensions or opera://extensions).
• Turn on “Developer mode” (toggle in the top right).
• Right-click Tampermonkey icon > “Allow User Scripts” (if available).
• Restart the browser after changing these settings to ensure they take effect.

brisk parrot
#

No man, woman, or they left behind

#

If none of that works close browser completely and try to reopen. Or give me console logs we will get it. See ya tomorrow

little fulcrum
#

Clicking NO MUTATION in the locking section locks EVERYTHING automatically

#

TWT

#

so rip not working properly

brisk parrot
#

Bed time for me

brisk parrot
#

This is the beta version I’m working on

tender sky
#

u been sayin sleep for the 3rd time

#

sleep man XD

tired zinc
#

Found a new smaller bug, If i set the notifications on the ability, it keeps checking every checkbox. If i uncheck all (except the granters) and close the notification window, everything goes back to checked.

#

Happened only twice, and since then it works properly. No idea what was the cause. maybe some lag?

brittle anchor
#

im not sure why turtle timer is shown on uncommon egg but not mythical egg.

#

could this be a bug?

brisk parrot
#

Will be released soon

brisk parrot
#

Anyone willing to help test the new version, I’ll post here soon

woven vortex
#

im down

brisk parrot
#

Test in discord too

#

And browser

woven vortex
#

i test on browser

brisk parrot
#

Np def still need that

woven vortex
#

dawnlit sunflower size is 98, while amberlit is 99

#

the value is inaccurate by any chance?

little fulcrum
#

hey myke I have a question but find it hard to explain thru text was wondering if VCing rq would be ok loll

prisma geyser
little fulcrum
#

or I could send a voice message in dm

brisk parrot
#

Yea I’m fixing it in the beta I send soon

brisk parrot
#

Dm me

#

Text helps a lot tho lol

brisk parrot
little fulcrum
#

oh lemme just

#

speak it in into speech to text

#

xd

prisma geyser
brisk parrot
#

Version 3.5.5 (2025-10-11)

✨ New Features

🛒 Tool Shop Integration

  • Added tool shop to the egg shop window with professional divider
  • Eggs and tools now displayed in one convenient "Eggs & Tools" window
  • Dynamic tool discovery from game shop inventory
  • Full purchase tracking and stock management for tools
  • Supports all shop features: stock tracking, sorting, filtering, buy buttons

🔄 Enhanced Auto-Refresh System

  • Dual detection system for game updates with automatic page refresh
  • WebSocket close event detection (code 4710) triggers 5-second countdown notification
  • DOM popup monitor as backup detection method for update modals
  • Fixes work PC issues - main version now handles game refreshes automatically
  • No more manual refreshing when devs push updates!

🔒 Lock Only Non-Mutated

  • New crop protection option to lock ONLY crops with 0 mutations
  • Opposite behavior from "Lock All Mutations" for flexible protection strategies
  • Perfect for protecting base crops while allowing mutated ones to be harvested

🔧 Improvements

  • Renamed "No Mutation" to "Lock All Mutations" for better clarity
  • Enhanced Discord compatibility with detailed execution tracing
  • Improved shop window organization with cleaner separation between item types
  • Added tool purchase message type support ("PurchaseTool" with 'toolId')

🐛 Bug Fixe

  • Fixed duplicate event listeners causing button responsiveness issues
  • Migration system preserves existing crop protection settings
#

that is the beta, im not releasing yet

little fulcrum
#

you know the locking feature. basically my question was can you like white list for example frozen but so I was wondering for example if I lock gold and rainbow but I do want to pick them when they're frozen . Is it possible to have like the ability for the lock to go away if the gold and rainbow freezes without constantly changing the settings in the locking settings .

#

or like only pick up amberlit or dawnlit once frozen

#

hope I explained it right

#

My English broke there lol sorry

woven vortex
#

opps?

brisk parrot
#

yea opps indeed lol

woven vortex
#

i got the last one

brisk parrot
#

wait

#

dont get this one

#

lmao

woven vortex
#

QAQ

brisk parrot
#

its auto refreshing every 5 seconds 😄

little fulcrum
#

OOF

little fulcrum
#

text to speech was weird

brisk parrot
#

I’ll look in a sec

#

Okay, test this

woven vortex
#

ok

brisk parrot
#

i am testing too

#

if anyone wants to test in discord browser or app and provide logs that would be very helpful

#

regular browser version needs testing as well

brisk parrot
woven vortex
#

my dawnlit got dawnbounded 😂

#

should be accurate now..

brisk parrot
#

That’s not

#

What

#

Oh

#

It literally got that

#

Ok

#

So all is well? Or am I missing something

little fulcrum
#

yea fo r some reason dawnbound still worth less than amberlit LOL

#

you'd expect it to be worth more cuz dawnBINDER vs AmberLIT but alas

prisma geyser
#

whats the sizes? a size 100 will be worth more than a size 50 e. g.

woven vortex
#

Alt+a or s is moving my character

little fulcrum
#

XD

woven vortex
#

the widget pop up also

prisma geyser
woven vortex
brisk parrot
#

Ah tools not showing in shop

little fulcrum
#

😭

prisma geyser
#

ohh, yeah wait, Dawnbound Frozen is only 12x yes, where Amberlit Frozen is 14x. So that's correct

little fulcrum
#

dang

#

T_T

#

you'd expect bound to be worth more...

prisma geyser
#

well getting dawnbound is very easy in comparison to getting amberlit, so I think it's good like this

little fulcrum
#

ohh

#

well i wouldnt call it easy exactly LOLLOLOL earning the money for the binder is a hassle

#

XD

#

and u gotta get rlly lucky to get any binders in ur store..

prisma geyser
#

Okay, yeah, but once you have it, you will have a big chance

little fulcrum
#

so thats why i expected it to beworth more

#

😅

#

ah

wise perch
#

All the max size plants I’ve saved up are amberbound, pure chance I haven’t potted anything

#

Just keep them around cause I like em

little fulcrum
woven vortex
little fulcrum
#

You know the locking feature? Basically my question was would it be possible to do some type of white list feature. So like for example I'd lock Rainbow, Gold, Amberlit, Dawnlit etc from being picked up BUT I do want to pick them up once they're frozen . Is it possible to have like the ability for the lock to go away once the gold and rainbow freezes ? Without constantly having to change the settings in the locking settings again?

brisk parrot
brisk parrot
woven vortex
#

only the alt+a and alt+s is moving my character

#

im testing notification

#

okay theres no changes in notification so far

#

except theres decor missing

brisk parrot
#

on a carrot or somethign

#

and decor missing okay noted working on that

#

almost done with shop fix

woven vortex
#

i found a way to stop the continuous alert by checking the acknowledge persistent alert button and then test notification since it will stop when this big red button appears

brisk parrot
#

But without it it won’t stop

#

Right

woven vortex
#

yeah

brisk parrot
#

I’m going to make continuous automatically make the prompt come up and that should fix that

#

For now

woven vortex
#

i tested pet ability alert as well, did not work for me, i chose double beep sound effect

#

i checked seed finder 1 then close the widget, reopen then it got automatically unchecked.

brisk parrot
woven vortex
#

nope

brisk parrot
#

Noted, thanks

#

I’m making a list of everything and working on them 1 by 1

woven vortex
#

alright im going to sleep now and finish testing

#

i gonna put back the latest version and go afk

brisk parrot
#

Night

brisk parrot
#

Beta with potential fixes and new features, have not tested yet, will put what was changed soon i have to go take care of something... IRL ew.

#

Please report anything here. 🙂 will be testing myself soon

brisk parrot
ripe mantle
#

@brisk parrot is it possible to get a locke function for Feed pets (That certain plants cannot be fed)

brisk parrot
#

Need testers for Browser, Discord Browser, and Discord App.

This is a beta version

#

Changelog - MGTools

Note: some of these were not broken in the stable version, they are just notes for me.

Version 3.5.6 BETA (2025-10-11)

✨ New Features

  • Added frozen exception option to crop protection (allows harvesting protected crops when frozen)
  • Added auto-favorite toggle for seeds in the Values menu (for now, will move later)
  • Continuous notifications now auto-enable acknowledgment mode

🐛 Bug Fixes

  • Fixed notifications to show the proper Decor that is available.
  • Fixed tool stock not persisting across page refreshes
  • Fixed notification selections not saving
  • Fixed
  • Fixed seeds tab settings not persisting
  • Fixed shop tab settings not saving
  • Fixed protect tab caching issues
  • Fixed Shovel displaying as in stock when owned

#

^ this is 3.5.6 btw just didnt retitle

brisk parrot
#

May suit your needs, if not let me know.

#

Need testers for this beta Browser, Discord Browser, and Discord App.
Not officially pushed yet

ebon oak
#

Thank you for your work
If not for you, i would've probably dropped this game long ago :x

brisk parrot
# ebon oak hehe, fixed

Thank you, but it is indeed a collaborative effort so without @marble berry @wise perch @prisma geyser @carmine perch and others reporting bugs, suggestions, etc. it wouldn't happen. I'm glad you enjoy the QOL improvements MGTools offers. 😄

#

And thanks to @fresh lion as well

#

Oh and, yea it was something i meant to put there but I forgot.

ebon oak
brisk parrot
#

each time you plant an egg or seed?

ebon oak
#

It might not even be a pop up to ease the coding
Just straight up modify the button so that it says how much you have each time you plant, yeah

brisk parrot
#

Yea, that should be simple, based on what you have selected

#

can definitely do that

ebon oak
#

Thank you!

brisk parrot
#

Do you play on browser?

ebon oak
#

Yes

brisk parrot
#

I'm still in need of discord browser testers, and discord app

#

but its all good someone will test

#

I'm running into an issue where the ui will not even display on my own discord browser or app, but at least the UI is displaying for other people

#

so I need to find out whats going on

woven vortex
#

looks weird

brisk parrot
brisk parrot
woven vortex
#

quick buy tools is working yay

brisk parrot
#

**Beta: 3.5.7 - 10/11/25 - **

  • Added custom sound selections for notifications, any notification. Upload whatever you want! (Up to 2MB) Mixkit is a great place to start (Google it) to find the notifications you like best.
  • Added option to texture all of your windows, lots of options to choose from, because? Why not!
  • Fixed and added more options under themes to find the style you personally prefer!
    More soon to come!

Need testers on discord browser and app, need console logs and to know if UI loads or not. 💜

Posting soon.

#

I’m going to add a shift+alt click if you want to test current beta versions. The version checker will be blue 🔵 if you are using the beta.

#

And you normally update by shift+clicking to stable version, but you’ll always have beta if you like to report bugs.

ripe mantle
tender sky
#

click this

brisk parrot
tender sky
#

there should be an auto favourite feature in it

brisk parrot
#

you beat me to it

#

shift click it, or alt + v

#

And I can’t screenshot while streaming my pc to show the tool because it takes over the mouse sad 😔

#

On moonlight

ripe mantle
#

I dont have the auto Favorit Feature 😅

tender sky
#

i cant even show cause idk why my version is old while its greenlight

#

i'll update it later

ripe mantle
#

Ok

tender sky
#

is still still an ongoing issue? i cant open the extendo menu

#

i've hard refreshed

brisk parrot
#

The new beta should work

#

For you

tender sky
brisk parrot
#

3.5.7

tender sky
#

i did update. let me see whats the ver

brisk parrot
#

3.5.7 but I just updated it again

tender sky
#

yea i am on

brisk parrot
#

Server checker should show blue

#

Does it

#

If not there’s another 3.5.7

tender sky
#

i cant even see the server checker :

brisk parrot
#

Oh

brisk parrot
#

Refresh and give me console logs, it’s working for me…

fresh lion
brisk parrot
#

Go check if you have 2 on

tender sky
#

let me

#

disable it

#

was just using aries for memes

#

turtle conga line

#

:')

brisk parrot
#

lol 🤣

tender sky
#

okaythere it works

#

what is the incompatible thing tho xD

#

and yes its blue

brisk parrot
#

Ok yea someone else said the same thing earlier now I know why

fresh lion
#

I dont even know

tender sky
#

sadge

#

all g

brisk parrot
#

We’ll find it

tender sky
fresh lion
#

How your extend trigger work?

brisk parrot
#

And vice versa

#

I hate how autocorrect hates words

fresh lion
#

Okay so I know how to fix it

tender sky
fresh lion
#

@tender sky Fixed, you can update aries mod

tender sky
#

i seem to be having this issue

#

not sure if its mod related

#

but thank god i never go to sell anything(without reason)

tender sky
#

hmmmmmmmmmmmmmm

#

NVM

fresh lion
#

I haven’t touched my pets in 3 weeks, I’ve never had a single one remove itself from my favorites on its own, same for the crops

tender sky
#

I FOUND OUT WHY

#

cursed favouriting

#

its THIS.

#

everytime i untick something it also UNFAVOURITES whatever is in my inventory

#

for pets as well since GOLD/RAINBOW

#

counts

fresh lion
#

oh lol

tender sky
#

see my rainbow pets got unfavourited

#

myke... i swear.. u might have cause someone to lose theiir pets unknowingly 😛

fresh lion
#

sick

tender sky
#

PSA, DO NOT USE AUTO FAVOURITING FEATURE RN OR U RISK LOSING SOME STUFF WITHOUT KNOWING :'|

barren wave
tender sky
#

for now yes

#

until he fixes it

#

man probably wentMIA to get some food or somethign

brisk parrot
#

Hasn’t happened to me hmm

tender sky
brisk parrot
tender sky
#

yes

#

let me send u the vid

brisk parrot
#

Oh I see

#

Ok good catch

tender sky
#

I swear i cant seem to find where my desktop captures go. So heres a crappy phone recording

brisk parrot
#

Yes I’m fixing it rn

#

Good catch

tender sky
#

god

#

someone lost 2 gold pets

#

shh..delete that shii((no seriously please 🙂 )

fresh lion
tender sky
#

ik u didnt

#

ur msg

fresh lion
#

oh

#

mb

tender sky
#

tq

errant stump
#

Hi, my magic tool tab is hidden. What should I do to show its menu again?

fresh lion
#

Not hidden

#

Just disable

#

oh my bad

errant stump
brisk parrot
#

Yea if using beta, you’re testing thing guys, be careful. I am updating an issue with the auto favoriting

tender sky
brisk parrot
errant stump
#

after i click update it appeared again. thank you sir

brisk parrot
brisk parrot
tender sky
#

ok sec

brisk parrot
#

Shift alt click

#

And tell me what color the server check light was

tender sky
#

downgrade?

#

blue

brisk parrot
#

Did shift alt click?

tender sky
#

yes

brisk parrot
#

Might have to wait a couple min I just pushed it

tender sky
#

i did

#

ye

brisk parrot
#

It’s in the beta-live repo

tender sky
#

give it some time ig

#

oh there u go its in i think

brisk parrot
#

I tested 3.5.7 but I did not test the rainbow mutation one lol

tender sky
#

okay

#

i dont think its doing it anymore

#

i checked mut and plant

brisk parrot
#

Cool

brisk parrot
#

When I moved that beta

tender sky
#

i saw it blue

brisk parrot
#

Ok 👍🏻

#

I’ll make it purple when there’s a new beta pushed, and just blue if you’re on current beta

errant stump
#

Hi Sir, this is a new bug when I use the pet command I can't move my character on the keyboard anymore.

#

@brisk parrot

tender sky
#

i have no problem using it

#

i loaded a different preset and move fine

brisk parrot
#

Oh yea, you click server checker it turns purple, everything is in beta changelogs

brisk parrot
#

Known beta issue:
Notification & Settings tab not saving in refresh.

will have to push a fix for that when I wake up. If you have what you saved from previous versions you’ll just have the same settings in those 2 tabs for now.

ripe mantle
#

Can you add more crops for auto Favorit bamboo and cactus? Please😇

fresh lion
#

@brisk parrot Values tab keep refreshing, so can't use the input "add custom species"

tender sky
#

he sleepinn

little fulcrum
#

gonna test it once I've had some rest

brisk parrot
tender sky
#

oh wait its already morning

#

uh

#

none so far?............

#

oh

little fulcrum
tender sky
#

button looks like its being clicked in buy menu but its not

tender sky
little fulcrum
#

akdelpafpeafe

brisk parrot
#

I just fixed saving on refresh, and removing custom species for auto favoriting and just adding all the crops

#

So will push that in a moment, and if it works may go stable but let me check the shop thing

tender sky
# brisk parrot Fr?

ye, it starts doing that funny breathing button thing. like the old one did :X

tender sky
little fulcrum
#

i installed your beta version and it wont show up inmy game faam

#

fam

#

😭

#

just not there 😭

ebon oak
#

Does that mean that the proc failed due to hunger? :(

tender sky
#

if not zoom out again

#

with ur inventory open

little fulcrum
brisk parrot
# little fulcrum nope still not there

🔧 Reset Toolbar Position Command

Simple Reset (Recommended)

localStorage.removeItem('mgh_dock_position'); location.reload();

What it does: Removes saved position and refreshes the page. Dock will return to default position (bottom-left for
horizontal, left-middle for vertical).


Complete Reset (Position + Orientation)

localStorage.removeItem('mgh_dock_position'); localStorage.removeItem('mgh_dock_orientation'); location.reload();

What it does: Resets both position AND orientation (back to horizontal). Use this if the dock is stuck off-screen.

little fulcrum
#

wait how i install this

brisk parrot
little fulcrum
#

oh

brisk parrot
#

No install just paste in console

#

Feed your bees was a joke heh 😉

little fulcrum
#

ok

#

how do u open console again oops

#

we talkin about windfows console

#

or my web browser console

#

LOL

#

so CMD or f12

#

XD

#

i pasted hard reset its still not there . help lol

brisk parrot
#

Are u on mac or pc

little fulcrum
#

PC

brisk parrot
#

Really? It should refresh your game and the position

#

Are you running another mod? Test without if so

#

I also just updated the beta to 3.6.7

#

Check your tampermonkey toggles and see if you’re running more than one

little fulcrum
#

oh ok

#

updated it
Turned off Arie's mod

Still wont show up

#

💔

brisk parrot
#

Reset position now

#

And hard refresh control shift r

#

What zoom % are you on too

#

Check console for me if none of that works

little fulcrum
#

uhhh

brisk parrot
#

When you paste what I mentioned into console, does it refresh your game

little fulcrum
#

yes

#

but it wont show your mod

brisk parrot
#

Check your zoom for me

#

Try to shift+click the server checker and just go back to stable version if that does not work, then, if it continues please let me know. Well, let me know everything

#

I’m not having an issue seeing the ui atm though

little fulcrum
#

my pc loves to hate me LOL

#

wait lemme just

#

uhhhhhhh

#

whats server checker?

#

ah theres an issue the zoom isnt showing for me either

#

so weird T_T

#

its rlly weird cause Arie's does load properly but the moment I load yours it just dont wanna work TAT

brisk parrot
#

well you cant use the server checker since you're not seeing the ui

#

go here

little fulcrum
#

truly sorry LOL that im always having problems with stuff

#

😭

#

i reinstalled. still broke 💔

brisk parrot
#

What if

#

You paste the entire code in console

little fulcrum
brisk parrot
#

Ok sec

brisk parrot
#

And you’re just trying in browser right?

little fulcrum
#

yeah

#

lemme see if discord works ? 🤔

#

SO WEIRD

#

BECAUSE IT DOES WORK ON DISCORD

#

HUHHH

#

why not browser tho wth haha

fresh lion
#

Ahah

#

Window issues

brisk parrot
#

And it works on my browser, but not my discord lol

brisk parrot
#

I’m researching atm

little fulcrum
#

weird

#

omg

#

haha

#

btw i think dawnbound etc is missing from mutation? O:

brisk parrot
#

Yes it is but I need to get this stable for you first … hmm

fresh lion
little fulcrum
#

so weird that with you it dont work on discord but on browser

#

and for me vice versa

#

XD

brisk parrot
#

Tbf it’s never worked for me in discord so I have a hard time testing it

little fulcrum
#

rip

#

😭

fresh lion
#

Its seems you are using the wrong window

brisk parrot
fresh lion
#

for exemple right here instead of using GM_xmlhttpRequest cause of discord iframe you are using fetch method to retreive your rooms:

brisk parrot
#

Ok let me try rhat

fresh lion
#

Ask GPT to explain CORS and CSP errors, because I don’t really know how to explain it lol

brisk parrot
#

I’m unsure why he cannot see the toolbar in browser though

#

When I can and others can np

#

As well

#

Let’s seeeee

fresh lion
#

The only issue I’m getting compared to the normal game is this error when it runs inside Discord. I’m not sure if it’s what’s blocking the GUI

#

Like everything is working fine

#

But there is no GUI lmao

#

Try to add some log in your gui injection function

#

My bad its working

#

Zoom issue

brisk parrot
#

on discord?

fresh lion
#

discord web app or discord app?

#

Cause I only tested on discord web app

little fulcrum
#

but yeah idk why either rip

brisk parrot
little fulcrum
#

its okay

fresh lion
little fulcrum
#

its rlly weird in discord it works but not in the web version

little fulcrum
fresh lion
#

eh

#

what you mean it doesnt work on web version

brisk parrot
brisk parrot
#

For some people it works all around somehow

brisk parrot
#

Yea

fresh lion
#

I just made the Discord window bigger and the UI popped up

little fulcrum
#

is my actual profile name

#

but I had to edit it for the pings cause Nour didnt fit 🤣

fresh lion
little fulcrum
#

nothing works at all

fresh lion
#

thats rude

brisk parrot
fresh lion
#

hmmm

#

try to edit manually this local storage key: mgh_dock_position with those values: {"left":184,"top":259}

brisk parrot
# fresh lion

Thanks for your help btw, I’ll go check soon had to step away for a bit.

fast fossil
#

it even works when the app is minimized

#

(you can see thhere are some uui errors but i'll fix that soon)

brisk parrot
#

Nice ! I like it

fast fossil
#

i uhhh

#

may hhave fouunud a problem

#

i can no longer send chat messages or interact in any way with the game (like harvesting crops or chhangiing clothes) at all now

#

lol

#

lemme see why

#

iinteresting

#

it seems thhhe game is loading with no websocket connection

fresh lion
#

It is dont worry

fast fossil
#

lol wait

fresh lion
#

They don’t get sent right away, only a bit later. You can confirm it by checking the messages once the socket’s connected

fast fossil
#

i'm recieviing events from thhe websocket

#

uhhuuh

#

but like

#

websocket

#

never connects

fresh lion
#

If you are receinving events from the websocket then its connected..?

fast fossil
#

righhht

#

but i can't send events

#

weird

fresh lion
#

How are you catching the websocket

fast fossil
#

?

fresh lion
#

I mean, how are you sending events

fast fossil
#

Ohh wait

#

did umm

#

wouuld something happen if mg tools was being injected twice lol?

fresh lion
#

Idk ive never tried lol

fast fossil
#

Yuup!

#

That was the problem

fresh lion
#

😂

fast fossil
#

wait

#

nvm

#

its just

#

mgtools

#

in general

#

keeps it from sending stuff

#

weird

#

could it be from thhis?

fresh lion
#

are you trying on discord web app?

fast fossil
#

Nope i'm on the desktop app/(basically web)

#

unless there are some problems with electron iit shbouuld be the same as web

fresh lion
#

so you are using mgtools

#

with the desktop app?

fast fossil
#

yes

fresh lion
#

oh nice

fast fossil
fresh lion
#

Do you have others isssues like this?

fast fossil
#

uuhh nope

fresh lion
#

for exemple can you check rooms menu

fast fossil
#

I can check rooms and everything

fresh lion
#

okay

fast fossil
#

MGTools works

fresh lion
#

Nice

fast fossil
#

its just

#

that the game doesn't work

fresh lion
#

oh

#

bruh

fast fossil
#

something to do with mgtools iis preventiing the game from sending websocket requests

fresh lion
#

weird

#

as far I remember, mgtools use MagicCircle_RoomConnection.sendMessage() to send message to the websocket

#

so shouldnt interfere with your code

fast fossil
#

NVM

#

MGTOOLS IS JUST BROKEN

#

IT JUST DOESN'T WORK ON WEB REGULARLY

fresh lion
#

use the stable version

#

not the beta one

fast fossil
#

I'm on the stable version

fresh lion
#

mb

#

Can you try to inject Arie's mod? Im curious to see if its gonna be also broken

fast fossil
#

Sure

brisk parrot
fast fossil
#

Aries works

fresh lion
#

okay

fast fossil
#

its just MGtools on non beta

#

lemme try beta

brisk parrot
brisk parrot
#

in the works

fast fossil
#

betaa works

#

just not thhhe one in main branch of giithuub

fast fossil
#

Maybe update the main branch of the github

brisk parrot
#

Stable version still working for me, but regardless I’m planning to update the main soon

#

Odd

fast fossil
#

weird

brisk parrot
#

lol I still cannot get the ui to pop up in discord browser it seems. The issue is isolated to just me though

fast fossil
#

WAIIT

#

Is your game updated to the latest version

#

bc my game just updated

#

like

#

1 hhour ago

brisk parrot
#

Mine did yes but I haven’t tested the stable since then

brisk parrot
fresh lion
#

can you see your element dom?

brisk parrot
#

In discord pop out console?

fresh lion
#

there

brisk parrot
#

Wait typo

fresh lion
#

:/

timid needle
fast fossil
brisk parrot
brisk parrot
brisk parrot
#

Driving me nuts

fast fossil
brisk parrot
#

Like it’s cool it works for everyone else but wth is making it not work for me lol

#

Lmao

fast fossil
#

Omg

#

it doesn't let me

#

lol

#

i can't paste it into vscode

#

it just crashes

#

okay then

brisk parrot
#

That’s weird I can

fast fossil
#

WAIT

#

IT WORKED

#

YAY

brisk parrot
#

I have like 40 diff versions

fast fossil
#

IT TOOK 3 CRASHES

brisk parrot
#

Open at once

fast fossil
fresh lion
#

bro is coding with this

timid needle
#

HOLY

brisk parrot
fast fossil
#

okay

#

wel

#

i hhad to turn off compatibility mode

#

but now notifications work

little fulcrum
fast fossil
#

wait...

#

i just realized

#

i'm gonna make an android version of the desktop app using a similar framework

#

and that means

#

MGTools on mobile lol

teal void
#

I already have tools on mobile

#

but thats great for many people

#

looking forward to the app

fast fossil
#

iphone or android, i'm assuming android right?

teal void
#

im using android

fast fossil
#

nice

brisk parrot
#

Rofl it’s working now ok

#

I knew it was going to be something stupid, it was never the code.

little fulcrum
#

HUH

#

WHAT WAS IT LOL

torn plover
#

so why is my stuck in like 40 despite 240hz refresh rate monitor also why is the bottom ui stuck also on my hot bar and cant access my pets same issue if i move it to the left

brisk parrot
#

Will figure it out

torn plover
#

i just installed now on following the guide

#

browser chrome newest update

#

i tried 60fps and 240

#

i dont know how to use without tapermonkey i just follow guide

#

i play on windows 10 pro

brisk parrot
#

On web or discord on web?

torn plover
#

web

brisk parrot
#

And I guess your fps is much higher when not using MGTools right?

#

Mine is fine a steady 144 so let me see 1 moment

torn plover
#

10 fps while its raining and 334 ms idk

#

yes i get stable 60 or 240 if i wanted

brisk parrot
#

What version

torn plover
#

version where

brisk parrot
#

On the bar if you hover your mouse of the “…l

#

#

You will see a dot, either green, blue or purple more than likely

torn plover
#

on magic?

brisk parrot
#

Yea on the toolbar that mgtools makes

torn plover
#

its green

brisk parrot
torn plover
#

nothing happens

brisk parrot
#

And update to the beta, see if it continues. It will bring you to Tampermonkey to hit overwrite, update, etc. anything like that.

Then control+alt+R to hard refresh

#

Oh ya I didn’t add that yet in stable sorry lol

#

Here

#

Use this link, live beta one

#

I sent you an older one by mistake 🙂

torn plover
#

i did the reupdate

#

now tool is gone

brisk parrot
#

So you clicked this link? hit update, and now its gone right?

So go check tampermonkey - installed scripts

#

and make sure it is toggled on and then refresh your magic garden tab

#

turn off any other scripts

frozen pawn
#

I have same problem

#

reinstalled and made sure every other script was off

little fulcrum
#

im dumb so whats differecne between beta and stable

#

I assume beta is for ppl to test new features u arent sure work yet? XD

brisk parrot
#

Stable is a stable version thoroughly tested and should be working. Ofc dev updates can interfere

little fulcrum
#

ohhhh

brisk parrot
#

Beta is that yes

#

What we are working on currently

little fulcrum
#

okay 😄

#

i hope itll work bnow haha..

brisk parrot
#

It’s working for me so but I’m seeing what it may be

little fulcrum
#

PAIN

#

ITS STILL NOT LOADING FOR ME THE BETA

#

welp ima try stable see if that one does work for me

brisk parrot
brisk parrot
frozen pawn
#

3.6.7

little fulcrum
#

stabl;e does work for me

#

but not beta

#

so weird lol

brisk parrot
#

Remember if you’re putting in new script you need to save

#

And ensure it’s on but

#

I’m assuming you guys and gals did that so

#

Sec

little fulcrum
#

bruh darn

#

why wont beta work

#

😭

#

for me

#

truly suckz i wanted to trty beta so bad

brisk parrot
#

You will soon

tender sky
frozen pawn
#

my firefox is bricked ig idk

brisk parrot
#

But glad it works on chrome, I think I have Firefox instructions somewhere

frozen pawn
#

on chrome, my gpu usage is only like 6% but when I load the game on firefox it goes to 30% so idk its weird. Memory stays about the same

brisk parrot
brisk parrot
#

Ensure Firefox is assigned to use the high-performance GPU, not the integrated one.

#

Assuming you’re on a laptop

frozen pawn
#

oh im not using a laptop

#

using a 2070 super rn

#

I checked the about:support section of firefox and it says the gpu is active

brisk parrot
#

so the game runs like that in firefox without mgtools on too?

#

or no

frozen pawn
#

ye I turned it on and off

#

~50 frames both

brisk parrot
#

Ah okay so its not MGtools but

#

Still

#

I was going to test it on firefox soon

#

maybe ill go do that and see if i run into the issue

frozen pawn
#

appreciate the help tho!

frozen pawn
#

not on firefox

#

Also is there a way to cycle through Pet Presets by using one hotkey, similarly to Aires MM?

brisk parrot
#

But I will add it

frozen pawn
#

Looking forward to it >:)

frozen pawn
#

Also, is it possible to add Decor to the Crop Protection? I always find myself accidentally picking up my decor and its annoying to open the inventory, fish it out and replace it.

brisk parrot
#

Let me add it to the to do list

frozen pawn
#

Appreciate u 🙏

brisk parrot
#

I almost have this new beta released, and

#

I think its stable from the major issues I have ran into before but we will see

#

Or about to release it

carmine perch
#

just so you are aware, the csv can tell you about failed goldgranter

#

🥲

brisk parrot
#

yea that can go lol

#

not intended

cinder kayak
woven vortex
#

when i buy something on the quick shop while having full inventory, it kinda shows that i bought it but actually i didnt bought. Same with watering can while having it at 99 stack

#

forgot to mention this

tender sky
little fulcrum
#

Arie's mod and your stable version work normally for me on Firefox. I truly dunno why beta won't show up for me rip

brisk parrot
#

That’s something I can add to the list but too close to this new beta

#

Which may go stable based on your guys reports when I look when I wake up. I live in the U.S. so kinda 3 am rn lol 🤣

brisk parrot
woven vortex
woven vortex
#

it just happens the most to me with eggs and tools, would be a disaster and shame if i didnt pay attention to my max inventory and bought a celestial seed and thought to myself i bought it

brisk parrot
#

Maybe a little notification that lets you know

#

It wasn’t actually bought at least

woven vortex
#

yeah or maybe dont remove them from quick shop

brisk parrot
#

Yea

#

Ok I’ll add that then release

#

Works for seeds, eggs, and tools

  • Prevents partial "Buy All" and singular buy when inventory near full
  • Shows warning at 95/100 slots (yellow/orange)
  • Shows error at 100/100 slots (red)
brisk parrot
#

MGTools v3.6.3 - v3.7.8 Update Summary (2025-10-12 to 2025-10-13)

NEW FEATURES

Cycle Pet Presets Hotkey

  • Set a single hotkey to cycle through all your pet presets sequentially
  • Configure in Hotkeys tab or Pets tab banner
  • Automatically skips presets containing pets with Crop Eater ability

Shop Inventory Protection

  • Purchase buttons blocked when inventory is full (100/100)
  • Red flash warning when attempting to buy with full inventory
  • Live inventory counter in all shop interfaces (color-coded: green, yellow, red)
  • Stock quantities stay accurate when purchases are blocked

Discord Rooms Expansion

  • Added 87 total Discord activity rooms (play1-play10, play-2 through play-50, country rooms)
  • Player counts work from browser via game API
  • Join buttons functional from browser

Premium Texture System

  • 25 professional texture overlays organized in 5 categories
  • Intensity slider (0-100%), scale control, 4 blend modes
  • Animation toggle for supported textures
  • Real-time preview with all settings persisting

Auto-Favorite Enhancements

  • Added all 29 crop species as checkboxes
  • Improved layout with 3-column grid

BUG FIXES

Rooms Tab

  • Fixed rooms tab not opening when clicked
  • Fixed tab switching between MG and Discord rooms
  • Fixed player counts not displaying correctly
  • Fixed UI elements appearing outside containers

Ability Logs

  • Fixed ability logs not persisting after page refresh
  • Improved ability detection reliability
  • Fixed logs being cleared incorrectly on startup

Shop Interface

  • Fixed shop buttons flickering when hovering
  • Fixed purchase blocking accuracy for Buy 1 and Buy All
  • Improved inventory detection for all 100 slots

Notifications

  • Fixed notification settings not saving after refresh
  • Fixed custom sound upload UI not appearing
  • Fixed volume sliders not persisting changes
  • Fixed all notification toggles and checkboxes

Discord Compatibility

  • Fixed script not loading in Discord browser popout windows
  • All features now work correctly in Discord environment

Controller Support

  • Fixed controller inputs triggering MGTools hotkeys unintentionally
  • Game controller and MGTools now work together without conflicts

Chat Input

  • Fixed typing in game chat triggering MGTools hotkeys
  • Chat fully functional with hotkeys enabled

Auto Game Updates

  • Script now detects when game updates are available
  • Automatic refresh with countdown notification

General Stability

  • Improved data persistence across page refreshes
  • Enhanced WebSocket connection handling
  • Better event handler registration

TLDR SHORT VERSION (Very concise, vague on bugs)

MGTools v3.6.3 - v3.7.8 Update (2025-10-12 to 2025-10-13)

NEW FEATURES

  • Cycle Pet Presets: Set one hotkey to loop through all presets (auto-skips Crop Eater)
  • Inventory Protection: Shop blocks purchases when full, shows live counter with warnings
  • Discord Rooms: Added 87 total activity rooms with working player counts
  • Premium Textures: 25 professional patterns with intensity/scale/blend controls
  • Auto-Favorite: All 29 crop species now available

BUG FIXES

  • Fixed rooms tab and Discord room functionality
  • Fixed ability logs persistence issues
  • Fixed shop button flickering and purchase accuracy
  • Fixed notification settings not saving
  • Fixed Discord browser compatibility
  • Fixed controller and chat input interference
  • Improved overall stability and data persistence

This is a BETA, not everything is expected to work*

Known Issues:

Crop Eaters are not currently cycled through if you have one saved as a pet preset and use the cycling hotkey.

Ability logs will clear when refreshing, so if you want to keep them, save the CSV before exiting 1-2 may persist presently on refresh.

Discord Play Rooms Not Showing Live number of players when playing in browser

#

Please report any and all issues/bugs here.

#

LIVE BETA:
🔵 Blue = Checking or Up to Date
🟡 Cyan = Development version (local newer)
🟣 Magenta = Update available
🟠 Orange = Check failed

STABLE:
⚪ Gray = Checking
🟢 Green = Up to Date
🟡 Yellow = Development version (local newer)
🔴 Red = Update available
🟠 Orange = Check failed

brisk parrot
tender sky
woven vortex
#

is hunger boost actually hunger restore? because hunger boost doesnt make sense

tender sky
little fulcrum
little fulcrum
#

Hunger Boost = all active pets get bigger hunger bar when you place a hunger boost pet

Hunger Restore = pet hunger gets restored

little fulcrum
#

wait I explained boost incorrectly

wise perch
little fulcrum
#

fingers crossed that beta will work this time

#

nope

#

your beta still wont show upf or me

#

this is truly so weird 😔

brisk parrot
#

What browser again?

little fulcrum
#

okie

#

Firefox

brisk parrot
#

🤮 ok so

little fulcrum
#

LMAO WHY THE PUKE

#

bruh 💔

#

😭

brisk parrot
#

lol jk I just haven’t used Firefox in like 10 years

little fulcrum
#

XD

#

the dumb gif wont embed noooo

brisk parrot
#

Go to extensions

#

Find tampermonkey

#

Do you see “details”

brisk parrot
#

Then Manage

wary girder
#

the game does seem to run pretty bad on firefox for some reason btw, would recommend a dif browser

brisk parrot
#

I just installed Firefox to find out

wary girder
#

when i was testing different browsers, edge seemed to be one of the better ones, at least to run this game (just disable efficiency mode/sleeping tabs)

brisk parrot
#

That’s what I use

#

Yea I’m uncapped fps and it’s struggling to go over 60 on a super pc lol

#

Something ain’t right

wary girder
#

yea, definately is strange, maybe some hidden setting in firefox options 🤷‍♂️ was just easier to switch browser than figure it out lol

brisk parrot
#

Adjust Firefox Settings

Disable layout.frame_rate:

  • Type about:config into the Firefox address bar and press Enter.
  • Search for layout.frame_rate.
  • Double-click the entry and change the value to -1 (auto) or 0 (similar effect for disabling vsync).

Disable hardware acceleration:

  • Open the Firefox menu (three horizontal lines) and go to Settings.
  • Scroll down to the Performance section.
  • Uncheck Use recommended performance settings.
  • Uncheck Use hardware acceleration when available.
  • Restart Firefox for changes to take effect.

Disable other graphics features:

  • In about:config, search for gfx.webrender.enabled and set it to false.
  • Restart Firefox after making the change.

Check other potential causes

Disable VSync in Windows settings:

  • Open Start > Settings > Gaming > Game Mode.
  • Turn off Game Mode.
  • In some cases, this may prevent FPS limits.
#

I just did all of this and my fps shot up from 40 to sputtering around 100-120 fps

#

In Firefox

#

Edge however, clean 144 no matter what

#

So can probably get 60 np on most pc’s

#

I’m not sure which setting did the trick, might have been game mode tbh

brisk parrot
little fulcrum
#

idk why its weird. the game doesnt seem that heavy

#

and yet it keeps lagging for many ppl

brisk parrot
#

And sites with restrictions

brisk parrot
#

Nope wait I’m trying to see why Firefox is being weird I think I had instructions somewhere in the past

brisk parrot
#

Get violentmonkey extension, does the same exact thing as tampermonkey

#

Runs clean in Firefox

little fulcrum
#

okay

little fulcrum
little fulcrum
#

😭

brisk parrot
brisk parrot
# little fulcrum Chrome and Opera users have had issues with the games FPS too rip so idk if its ...

Ah really? Well there’s definitely a way to fix it for each one, you really only “want” 60 fps, anything higher is almost overkill. You really only “need” like 30. But what I mentioned above did work in Firefox. Also using violentmonkey instead of tampermonkey in Firefox seems to do the trick as well as far as the other issue, getting the script to run in Firefox.

It’s very similar to tampermonkey. You’d just need to copy paste the script into violentmonkey extension.

I’m sure there’s a way to get it to work with tampermonkey I just can’t look into it at this moment. I will figure out though.

But for now we have an alternative 🙂

—————————————

_____________________

brisk parrot
#

Will be releasing 3.7.9 soon with some fixes that were mentioned here and an instant feed button next to active pets

Will pair well with auto favoriting.

little fulcrum
fresh lion
little fulcrum
#

will that not like

#

suck my PC's resources too much or?

#

sorry im worried it could make my fans go wild LOL

#

or is it fine

little fulcrum
brisk parrot
little fulcrum
#

no

brisk parrot
#

Instead of tampermonkey, it will work 100%

little fulcrum
#

that name is wild tho HAHAHA

#

like pls dont give me a virus violentmonkey

#

🤣

brisk parrot
#

Yea but it’s widely known as an alternative to tampermonkey 🙂 it’s fine just make sure you get the official one just like you did for tampermonkey.

little fulcrum
#

OMG IT WORKED

brisk parrot
#

It is a rather peculiar name though

little fulcrum
#

THANK YOU DUDE

little fulcrum
#

its this one right ? I hope i got the official one lmao or else my PC finna be bricked

#

😭

#

hmm i dont see amberlit and such 🤔
You still gotta add those?

brisk parrot
little fulcrum
#

❤️

#

also I was wondering if you could also do the locking like Arie's mod with override by species ovo. That'd be epic haha. Because for example IDC about picking up strawberries that are wet, chilled etc cause they are cheap plants that I only use for feeding XDDD

#

shop module is a bit broken for me. It didn't show me the tools even tho they did show up in the regular shop

#

huh what does the below time mean XD

brisk parrot
#

Similar to how you can see it on crops that are growing when you have turtles active

brisk parrot
#

Adding to list I’m making to push another version soon

brisk parrot
#

Which version are you on, can you check on the toolbar

#

Just hover your mouse over the server checker, will be a little dot that’s colored on the extended tail

fast fossil
brisk parrot
#

And edge too

fast fossil
brisk parrot
#

I prefer it even because Chrome is starting to restrict things and be annoying

fast fossil
#

works greate

#

and edge is really horrible at security