I just read this entire forum, haha.
Anyways, this looks great! I was just wondering, how will the skins be used?
The title background will be replaced with the cool black one. If you want the green one, you can save the .png yourself and replace the background.png in the content folder with it.
I think I'll make the new skin default, and in the option menu there will be a choice to use the normal style cards.
__________________
"Against logic there is no armor like ignorance." - Laurence J. Peter
The title background will be replaced with the cool black one. If you want the green one, you can save the .png yourself and replace the background.png in the content folder with it.
I think I'll make the new skin default, and in the option menu there will be a choice to use the normal style cards.
Oh, so it'll just be a part of the game download? Okay, I was just asking in case people could make more and we just drag and drop the new ones in the folder like the Match Em game.
Oh, so it'll just be a part of the game download? Okay, I was just asking in case people could make more and we just drag and drop the new ones in the folder like the Match Em game.
I could make it like that too.
__________________
"Against logic there is no armor like ignorance." - Laurence J. Peter
I'm sorry I'm becoming someone annoying finding issues in all your releases
I found a bug in the final 2.1 version: I'm on the menu ("Deal" highlighted), then I press down to go to another option in the menu, and if I press up to go to "Deal" again, the game restarts...
I debugged and here's the error:
"An unhandled exception of type 'System.ArgumentOutOfRangeException' occurred in mscorlib.dll
Additional information:
An error message is available for this exception but cannot be displayed because these messages are optional and are not currently installed on this device. Please install ‘NETCFv35.Messages.EN.wm.cab’ for Windows Mobile 5.0 and above or ‘NETCFv35.Messages.EN.cab’ for other platforms. Restart the application to see the message.
"
On line:
while (menuEntries[selectedEntry].IsDisabled)
On this piece of code:
/// <summary>
/// Responds to user input, changing the selected entry and accepting
/// or cancelling the menu.
/// </summary>
public override void HandleInput(InputState input)
{
// Move to the previous menu entry?
if (input.MenuUp)
{
selectedEntry--;
if (selectedEntry < 0)
selectedEntry = menuEntries.Count - 1;
while (menuEntries[selectedEntry].IsDisabled)
selectedEntry--;
}
I just want to help, not to become nitpcky about your games... they're great!
bye!
-----
EDIT: I see that you posted a new version right now.. if this was the problem you found please ignore this post.
Last edited by mandelorapido; 06-22-2008 at 08:23 PM.
Awesome game. Thanks for the Vegas scoring and cumulative. Just a couple small things. When you win in Vegas draw-three, the "You Win" text comes out in black, so you can't really see it with the dark background. And in Vegas scoring, at least in MS Solitaire, with draw three, you're only allowed to go thru the deck three times. And in draw one, only one time. Though you don't have to change that. It just makes it a little harder. (i know in standard scoring you can just go thru the deck as many times as you want)
But it's awesome as is, you don't really have to change any of that.
Awesome game. Thanks for the Vegas scoring and cumulative. Just a couple small things. When you win in Vegas draw-three, the "You Win" text comes out in black, so you can't really see it with the dark background. And in Vegas scoring, at least in MS Solitaire, with draw three, you're only allowed to go thru the deck three times. And in draw one, only one time. Though you don't have to change that. It just makes it a little harder. (i know in standard scoring you can just go thru the deck as many times as you want)
But it's awesome as is, you don't really have to change any of that.
"You Win" shouldn't be just black... I made it change through the colors of the rainbow.
I haven't really played draw three with Vegas. I just went through the deck once and it let me go through again, so I thought it was just like with standard scoring. I'll change it.
__________________
"Against logic there is no armor like ignorance." - Laurence J. Peter