When a player logs into my game i want a random image to be displayed to them (one of 6). Which is simple enough, ill just use pick() - but ideally i dont want it to change the image thats displayed for 24 hours. I want them to see the same one, for a day.
Does anyone know of a no-fuss way of doing this? The only things i can think of seem overly complicated.
Thanks
ID:159954
![]() Dec 13 2008, 12:40 pm
|
|
![]() Dec 13 2008, 1:00 pm
|
|
Turn world.realtime into years, days, minutes, seconds, and 1/10 seconds. Then check if the day is the same as the day the image was displayed to them.
|
I belive you could do that over-riding the world/New() calling a proc that loops everyday, and use for() loop to get the login screen's path and editting it's icon.
Ex: turf |
turf Fix'd, my idea would still be better though. This can still cause someone to have more than one login screen a day if the world isn't rebooted at 12:00 AM. |
turf I belive, i fixed the error you were talking about. By the way, nice idea i didn't know i could use '[]' inside file() to manage the icon like that. |
No, you didn't. If the world is rebooted, the login screen will be changed. Then it will be changed in 24 hours. Sometimes the world may be rebooted midday. This will result not only in two login screens on the day it's rebooted, but two on every day after that because the proc will be called again in 24 hours. The only way to do this without that problem is to do what I said :P
|