Did somebody see my jaw? I think I dropped it somewhere...
This is fantastic! This has just become my number one anticipated game!
This is fantastic! This has just become my number one anticipated 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: AtelierGames on Fri 09/07/2010 16:44:07You just made his Wi-Fi work again...
Lick it and see.
int lastTimerExpiredTime; //Here we will save the time we last set the timer.
int timerTimeout = 100; //How many ticks for the timer (100 just an example)?
int timerId = 1; //Select the timer id (1 just an example)
//Use that instead of the regular SetTimer
function MySetTimer()
{
DateTime *dt = DateTime.Now;
lastTimerExpiredTime = dt.RawTime;
SetTimer(timerId, timerTimeout);
}
//And then, the function you want will be:
int GetNumberOfTicksLeft()
{
DateTime *dt = DateTime.Now;
int currentTime = dt.RawTime;
int timeFromPreviousExpiredInTicks = (currentTime - lastTimerExpiredTime)
* GetGameSpeed();
return (timerTimeout - timeFromPreviousExpiredInTicks);
}
Quote from: barefoot on Mon 21/06/2010 17:20:10Nope, not egyptian symbols, that's hebrew (I'm talking about the cave entrance screenshot).Quote from: anian on Mon 21/06/2010 17:07:00
Don't mean to be negative, but Zeus in the title screen, jewish alphabet in the screenshot, a pharaoh and the setting from Egypt as part of the story...kinda mixing stuff there aren't ya?
The story seem interesting though.
In Fantasy you can put anything together... its about imagination... and its not a jewish alphabet: they are egytian symbols... But your point is noted and I have replaced Splash with Egyptian Gods...
cheers
-barefoot-
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.104 seconds with 16 queries.