tooya 发表于 2009-3-15 01:47:22

如何获取系统时间

如题,获取系统时间该怎么写。

比如写 当时间到0:00分的时候
执行server_cmd("mp_timelimit 0"):)

请各位版主、高手们指教

zwfgdlc 发表于 2009-3-15 08:19:47


new hour;
get_time("%H",hour,2);
if(str_to_num(hour)>=0 && str_to_num(hour)<12)//当时间在0-12点时
server_cmd("mp_timelimit 0")

tooya 发表于 2009-3-15 12:51:08

谢谢 zwfgdlc 大哥!:)
页: [1]
查看完整版本: 如何获取系统时间