Great to hear you're making such rapid progress! Really looking forward to this game...
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: jwalt on Fri 05/07/2013 12:38:14
I rerolled several times, but this one seemed inspirational.
[imgzoom]http://i1341.photobucket.com/albums/o756/jwalt10705/titleBlitz_zps2e4f246d.png[/imgzoom]
//-------------
// Septimal, determine the current day of the week
// ------------
int CurrentDayNumber = 0;
String CurrentDayName;
function InitDayOfWeek()
{
DateTime *Today = DateTime.Now;
int CurrentY = Today.Year;
int CurrentM = Today.Month;
int CurrentD = Today.DayOfMonth;
int DayTable[12];
DayTable[0] = 0;
DayTable[1] = 3;
DayTable[2] = 2;
DayTable[3] = 5;
DayTable[4] = 0;
DayTable[5] = 3;
DayTable[6] = 5;
DayTable[7] = 1;
DayTable[8] = 4;
DayTable[9] = 6;
DayTable[10] = 2;
DayTable[11] = 4;
String DayName[7];
DayName[0] = "Solday";
DayName[1] = "Moonday";
DayName[2] = "Tiwazday";
DayName[3] = "Wodansday";
DayName[4] = "Thorsday";
DayName[5] = "Frigaday";
DayName[6] = "Saturnday";
if (CurrentM < 3) {
CurrentY--;
}
CurrentDayNumber = (CurrentY + CurrentY/4 - CurrentY/100 + CurrentY/400 + DayTable[CurrentM - 1] + CurrentD) % 7;
CurrentDayName = DayName[CurrentDayNumber];
}
Quote from: cat on Sun 30/06/2013 10:48:17
I think Chewbacca will get a close shave...
Quote from: CaptainD on Fri 28/06/2013 19:58:24
Just one thing... if we do one day make a game with this name, does that disqualify it from the contest?
Quote from: Stupot+ on Fri 14/06/2013 21:59:41
@Miez. The top half is very nice, but I'm not overly keen on the army of cups in the bottom half.
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.264 seconds with 18 queries.