Alternatives to Live/GamerServices for XNA projects? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:16:18Z http://stackoverflow.com/feeds/question/100459 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/100459/alternatives-to-live-gamerservices-for-xna-projects 0 Alternatives to Live/GamerServices for XNA projects? Chris Charabaruk 2008-09-19T08:18:38Z 2008-09-21T11:55:16Z <p>Using the GamerServices component for XNA to access Xbox/GfW Live for networking purposes requires developers and players each to have a US$100/year subscription to Microsoft's Creators Club. That's not much of an issue for Xbox360 XNA projects as you need the subscription anyway to be able to put your game on the 360.</p> <p>But for PC games using XNA, requiring developers and players to put that much up each year is pretty crazy just for the access to a player's gamer card. Are there any solutions for XNA games that provide similar benefits to GamerServices? Or are developers pretty much restricted to building their own networking functionality if they don't want to subject their players (and themselves) to that $100/head hit?</p> http://stackoverflow.com/questions/100459/alternatives-to-live-gamerservices-for-xna-projects/100559#100559 0 Answer by TraumaPony for Alternatives to Live/GamerServices for XNA projects? TraumaPony 2008-09-19T08:49:10Z 2008-09-19T08:49:10Z <p>Well, you can use sockets, obviously, and using sockets you can create a seperate, dedicated server app, which you can't do with Live (as far as I know). You could also try SteamWorks; I haven't heard of anyone trying that, however.</p> http://stackoverflow.com/questions/100459/alternatives-to-live-gamerservices-for-xna-projects/102677#102677 2 Answer by Joel Martinez for Alternatives to Live/GamerServices for XNA projects? Joel Martinez 2008-09-19T15:14:29Z 2008-09-21T11:54:18Z <p>Please note that games for windows live is now free: <a href="http://www.engadget.com/2008/07/22/games-for-windows-live-now-free/" rel="nofollow">http://www.engadget.com/2008/07/22/games-for-windows-live-now-free/</a></p> <p>Since using the Live APIs is your only option on xbox and zune, it makes it a pretty compelling option since your only issue was the cost on windows :-) Especially considering the fact that once game studio 3.0 launches, you'll be able to sell your games on xbox live's new community games section</p> <p><em>Edit, upon further investigation, it turns out that the games for windows live stuff is kind of half-baked. The gamerservices library doesn't seem to be included in the redistributable bits. So unless you want to break the EULA, your player would have to install gamestudio. That being said, I do still believe that it's free nonetheless, if not inconvenient.</em></p> http://stackoverflow.com/questions/100459/alternatives-to-live-gamerservices-for-xna-projects/110837#110837 5 Answer by Joel Martinez for Alternatives to Live/GamerServices for XNA projects? Joel Martinez 2008-09-21T11:55:16Z 2008-09-21T11:55:16Z <p>Perhaps you could try <a href="http://www.ziggyware.com/readarticle.php?article_id=168" rel="nofollow">Lidgren</a></p>