Another version of an infinite timer loop in Developer Help
|
|
Code:
spawn() { while(1) { var/time = Proc_GetTime(); winset(src, "default.ClockLabel","text=\"Server Time: [time]\""); sleep(600); } }
|
Problem description:
May not be a problem but I'm trying to track down a potential problem. Is this infinite loop following best practices or is it problematic?
|