Current profile does not have an XNA Creators Club

Monkey Targets Forums/XNA/Current profile does not have an XNA Creators Club

therevills(Posted 2011) [#1]
ERROR:Unhandled Exception: Microsoft.Xna.Framework.GamerServices.GamerServicesNotAvailableException: The current profile does not have an XNA Creators Club membership, which is required to sign in to the LIVE service. To continue, purchase a membership from Xbox LIVE Marketplace, or switch to a local gamer profile.


Anyway to stop this message coming up when running a XNA project?


mangoo(Posted 2011) [#2]
Do you have a XNA membership?

Its strange, but i also get an error although i should have a valid account:

"Error initializing Games for Windows - LIVE."


Any idea whats going wrong?


mangoo(Posted 2011) [#3]
commenting out

#if !WINDOWS_PHONE
this.Components.Add( new GamerServicesComponent( this ) );
#endif




helped


but now i am confused. i thought the xna target would create a windows phone xna project? it seems to be for phone,xbox and pc.

how do i change it to a windows phone project?


mangoo(Posted 2011) [#4]
sorry i found it :-)

right click the project and "create copy for windows phone"


therevills(Posted 2011) [#5]
Hi Mangoo... where do I find that piece of code to comment out?

#if !WINDOWS_PHONE 
this.Components.Add( new GamerServicesComponent( this ) );
#endif


[edit]
Found it - mojo.xna.cs line 212.

Looks good thanks Mangoo!