|
|
#1 (permalink) |
|
Honorary Member
Join Date: Nov 2006
Location: Brisbane, QLD
Posts: 1,746
Rep Power: 4
|
Well, topic pretty much says it all.
If anyone could help me out with some things I'd really appreciate it. I'm pretty horrible at the language and need to do this thing by Monday ![]() Contact me on msn: kuff_89@hotmail.com Thanks alot, ztuf
__________________
|
|
|
|
|
|
|
|
#5 (permalink) |
|
Pro Member
Join Date: Jun 2006
Age: 19
Posts: 5,593
Rep Power: 8
|
What specifically are you requiring?
I'm going to assume that because this is a project, your teacher has you using something **** like XNA for it. What is the setup so far? chem
__________________
There are no stupid questions... but there are alot of inquisitive idiots. - |
|
|
|
|
|
#6 (permalink) |
|
Honorary Member
Join Date: Nov 2006
Location: Brisbane, QLD
Posts: 1,746
Rep Power: 4
|
It's a uni assignment.
Pretty much they have given us a skeleton, with a bunch of classes. In each class they gave us each method that needs to be implemented in that class. The rest is pretty much go code yahtzee. I'm pretty far into it now, just having trouble getting the gameplay to work. I'm guessing someone who isn't doing the assignment would have quite a hard time trying to catch up to the point I'm at in the game. So perhaps this was a silly thread. However, if anyone is kind enough to have a look at my code and take a while to see if they can follow it that would be awesome. If you want me to post the specification sheet, I can do that also.
__________________
|
|
|
|
|
|
#7 (permalink) |
|
Pro Member
Join Date: Jun 2006
Age: 19
Posts: 5,593
Rep Power: 8
|
Yeah throw the sheet up here.. be interesting to see how your Uni course stacks up against my course. Attach the code aswell.. I'll have a look.
chem
__________________
There are no stupid questions... but there are alot of inquisitive idiots. - |
|
|
|
|
|
#8 (permalink) |
|
Honorary Member
Join Date: Nov 2006
Location: Brisbane, QLD
Posts: 1,746
Rep Power: 4
|
PM me for code so I don't get done for plagerism ****ing leeching bastards... No one will help me, yet everyones glad to steal my code -.-
There you go, try not to laugh ![]() Thanks a lot!
__________________
Last edited by fUtz; 28-10-2007 at 05:28 PM.. |
|
|
|
|
|
#10 (permalink) |
|
GotGames Moderator
Join Date: Aug 2006
Location: brisbane
Posts: 6,023
Rep Power: 9
|
Cheers for the code futz.
I just handed it in so you better redo yours I dont want you to copy
__________________
![]() Find me at: #gotgames @ gamesurge esjay ~ scoTT ~ ~ joeL ~ osprey_ ~ khooy ~ defi|er ~ pudge ~ KEGGGy ~ kotso ~Manji ~ dNb ~ Constance_ ~ aceh ~ subnOize ~ smiterz Handsome gentleman crew
(club closed - must be a gentleman and a handsome) |
|
|
|
|
|
#12 (permalink) |
|
Pro Member
Join Date: Jun 2006
Age: 19
Posts: 5,593
Rep Power: 8
|
I don't even understand Yahtzee.. LOL.
Give me specific examples of help you will need, and I can give you a ballpark on how to implement them. BTW: Is it part of your assignment to do this: Code:
void functionName() {
// stuff
}
Code:
void functionName()
{
// stuff
}
You don't really see that these days.. considering Visual Studio auto-formats it for you. chem
__________________
There are no stupid questions... but there are alot of inquisitive idiots. - |
|
|
|
|
|
#13 (permalink) |
|
Pro Member
Join Date: Jun 2006
Age: 19
Posts: 5,593
Rep Power: 8
|
Also:
You're lucky the .NET garbage collector unwinds and cleans this up for you: Code:
private int[] GetDiceValues() {
int[] diceValues = new int[5];
for (int i = 0; i <= 4; i++) {
diceValues[i] = dice[i].FaceValue;
}
return diceValues;
}
chem
__________________
There are no stupid questions... but there are alot of inquisitive idiots. - |
|
|
|
|
|
#14 (permalink) | |
|
Honorary Member
Join Date: Nov 2006
Location: Brisbane, QLD
Posts: 1,746
Rep Power: 4
|
Quote:
I'm sorta getting it now... I can play Yahtzee by myself...
__________________
|
|
|
|
|
|
|
#15 (permalink) | |
|
Honorary Member
Join Date: Nov 2006
Location: Brisbane, QLD
Posts: 1,746
Rep Power: 4
|
Quote:
__________________
|
|
|
|
|







