🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Steam and Stuff

Started by
3 comments, last by hplus0603 6 years, 11 months ago

Ok so im making a game but i have run into some problems with it. Im adding an inventory system and i want it to work with steams inventory system. Also I will love to use steams servers (for the game online part) but i dont know if thats allowed, and then i dont have to worry about paying for servers every month if i do get to use them. Last but not lease is the steam work shop, I  would like to have it work with my game. I am using Unreal Engine and i dont know how to code that well so i am using blueprints to make my life a bit easier. Im not expecting you to give me the answers exactly but links and other info would be great!

Advertisement

Here's the documentation: https://partner.steamgames.com/doc/sdk/api

2 minutes ago, Hodgman said:

Here's the documentation: https://partner.steamgames.com/doc/sdk/api

Thank you so much! this looks just what i need.

For Unreal Engine, with Blueprints, you will likely also want to read this:

https://wiki.unrealengine.com/Steam,_Using_Online_Subsystem

https://docs.unrealengine.com/latest/INT/Programming/Online/Steam/

Note that Steam won't host your actual game servers for you; they'll just host social features and matchmaking. You will have to code your game so that one player "hosts" the game server, and other players "connect" to that hosting player. Finding other players (who are hosting) can be done through the Steam servers.

 

 

enum Bool { True, False, FileNotFound };

This topic is closed to new replies.

Advertisement