Notify Server when game new update is published

Is there any service or a way to notify a server when the developers push out a new update via Studio?

1 Like

So far i do not have any ways,but maybe have just that i do not know

My best bet would be to try HTTP service, but I am not that sure.

I’m pretty sure there is a way. I’ve seen a game called Perris do it. I’m not sure though.

Yeah, you can try checking if the game’s version is changed.

local PlaceVersion = MarketplaceService:GetProductInfo(game.PlaceId).Updated
if PlaceVersion ~= OldPlaceVersion then
   -- Do the rest here
end

You could also manually do it by using messaging service, and have a template that shows the update info, and fill it in whenever you send the message’s data over.

If you’re talking about from roblox server to roblox server then MessagingService. If you’re talking about a discord server then use an external api and a plugin to check the game version when it gets updated. Once the game gets updated you can send a “Post” request to the external api then use the api to send a message to a channel using a bot. On game published event - #9 by IdiomicLanguage

I’ll be sure to try this. Thanks.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.