Hi guys!
When i play my game it allways acts as if in trial mode i have checked for Guide.SimulateTrialMode = true;
and its not there so is it something wrong with my code. This is one of the sections of it
//Load track three
void trackThreeSelected(object sender, PlayerIndexEventArgs e)
{
if (!Guide.IsTrialMode)
LoadingScreen.Load(ScreenManager, true, e.PlayerIndex, new TrackThree());
else
{
//prompt player to buy
MessageBoxScreen m = new MessageBoxScreen("Pit Stop isn't available in the trial! \nPurchase the full version for 80MSP" + "\n\nB button = Return", false);
m.Accepted += delegate
{
{
}
};
ScreenManager.AddScreen(m, PlayerIndex.One);
}
}
It just always loads the screen Prompting to buy?
Any help is appreciated so thanks guys!