观众甲
|
分享:
▼
x0
|
[1.6][插件] 选单问题[300雅币]
new min, sec min = floatround((get_gametime() - g_contime[id]) / 60, floatround_floor) sec = floatround((get_gametime() - g_contime[id]) - (min * 60), floatround_floor) new show1[256] formatex( show1, 255, "\w在线时间 : %s%d:%s%d\w", min < 10 ? "0" : "", min, sec < 10? "0" : "", sec) menu_additem(menu, show1, "1", 0) 这是在某选单内的某段 是显示在线时间(其中,g_contime[id]是在putinserver后的get_gametime()) 但是,如果玩家按一下选单,就只会停在那里 例如按下去后: 01:05 就只会显示01:05,必须再次开启选单才会更新 如何令按下选单后随时间更新自动更新?
|