thegrimspirit Posted May 21, 2025 Share Posted May 21, 2025 Hello, After a long day of messing with Lua files and trying to learn things I knew nothing about, I finally got it working! 😄 This little tool reads data from a Don't Starve Together server and sends a status update to Discord every 60 seconds. It shows info like the season, number of players, and more—just like in the screenshot. I know it’s a small thing, but I’m really happy it works. What do you think? Any ideas for what else I could add?  1 Link to comment https://forums.kleientertainment.com/forums/topic/165773-discord-status-modbot/ Share on other sites More sharing options...
Haruhi Kawaii Posted May 23, 2025 Share Posted May 23, 2025 On 5/22/2025 at 6:06 AM, thegrimspirit said: Hello, After a long day of messing with Lua files and trying to learn things I knew nothing about, I finally got it working! 😄 This little tool reads data from a Don't Starve Together server and sends a status update to Discord every 60 seconds. It shows info like the season, number of players, and more—just like in the screenshot. I know it’s a small thing, but I’m really happy it works. What do you think? Any ideas for what else I could add?  Looks interesting, if it's just for status display I hope to add features like notification of how long it will take for the boss to respawn or be killed, advanced features like chat-bridge, admin panel are also worth considering 1 Link to comment https://forums.kleientertainment.com/forums/topic/165773-discord-status-modbot/#findComment-1816905 Share on other sites More sharing options...
thegrimspirit Posted May 23, 2025 Author Share Posted May 23, 2025 Small update version - 0.002 Â New: Active Bosses / Server Password / Version / Character Link to comment https://forums.kleientertainment.com/forums/topic/165773-discord-status-modbot/#findComment-1817115 Share on other sites More sharing options...
thegrimspirit Posted May 24, 2025 Author Share Posted May 24, 2025 On 23/05/2025 at 11:24, Haruhi Kawaii said: Looks interesting, if it's just for status display I hope to add features like notification of how long it will take for the boss to respawn or be killed, advanced features like chat-bridge, admin panel are also worth considering About the boss respawn or killed timers — that’s quite tricky for me, but I will look for solutions. I already added a second script that sends a warning message to the chat when a boss respawns and also tells how many days until the next hound attack (from DST). I’m working on the chat bridge now, so it should be ready in a few days. As for the admin panel, maybe at the end, when all features are done and working well. Link to comment https://forums.kleientertainment.com/forums/topic/165773-discord-status-modbot/#findComment-1817539 Share on other sites More sharing options...
Haruhi Kawaii Posted May 25, 2025 Share Posted May 25, 2025 10 hours ago, thegrimspirit said: About the boss respawn or killed timers — that’s quite tricky for me, but I will look for solutions. I already added a second script that sends a warning message to the chat when a boss respawns and also tells how many days until the next hound attack (from DST). I’m working on the chat bridge now, so it should be ready in a few days. As for the admin panel, maybe at the end, when all features are done and working well. You can use this code to return the respawn time of the Dragonfly boss  AddPrefabPostInit("dragonfly_spawner", function(inst) if not GLOBAL.TheWorld.ismastersim then return end inst:DoPeriodicTask(1, function() if inst.components.worldsettingstimer then if inst.components.worldsettingstimer:TimerExists("regen_dragonfly") then local time_left = inst.components.worldsettingstimer:GetTimeLeft("regen_dragonfly") if time_left ~= nil then print("Dragonfly will respawn in " .. time_left) else print("Drafonfly alive") end end end end) end)  Link to comment https://forums.kleientertainment.com/forums/topic/165773-discord-status-modbot/#findComment-1817706 Share on other sites More sharing options...
Rowlz Posted October 26, 2025 Share Posted October 26, 2025 On 5/21/2025 at 8:06 PM, thegrimspirit said: Hello, After a long day of messing with Lua files and trying to learn things I knew nothing about, I finally got it working! 😄 This little tool reads data from a Don't Starve Together server and sends a status update to Discord every 60 seconds. It shows info like the season, number of players, and more—just like in the screenshot. Hello! Do you have any plans to make this public? I spent some hours messing with luas and discord bots and creating custom mods to figure it out how to make something similar, and while trying to figure out why can't dst communicate with discord, I just found out your post. i'm running a dedicated linux server atm. Link to comment https://forums.kleientertainment.com/forums/topic/165773-discord-status-modbot/#findComment-1840774 Share on other sites More sharing options...
Haruhi Kawaii Posted October 28, 2025 Share Posted October 28, 2025 On 10/27/2025 at 1:22 AM, Rowlz said: Hello! Do you have any plans to make this public? I spent some hours messing with luas and discord bots and creating custom mods to figure it out how to make something similar, and while trying to figure out why can't dst communicate with discord, I just found out your post. i'm running a dedicated linux server atm. It is possible that this update is causing the problem  Link to comment https://forums.kleientertainment.com/forums/topic/165773-discord-status-modbot/#findComment-1841118 Share on other sites More sharing options...
thegrimspirit Posted November 21, 2025 Author Share Posted November 21, 2025 On 26/10/2025 at 18:22, Rowlz said: Hello! Do you have any plans to make this public? I spent some hours messing with luas and discord bots and creating custom mods to figure it out how to make something similar, and while trying to figure out why can't dst communicate with discord, I just found out your post. i'm running a dedicated linux server atm. sure Link to comment https://forums.kleientertainment.com/forums/topic/165773-discord-status-modbot/#findComment-1843504 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now