Don't make double posts.
I didn't understand you what exactly is that "time" and what exaclty are you trying to do...
Here's a strange example with commands that add +1/-1 to the user_time, but I don't know what do you want...
PHP Code:
#include <amxmodx>
new user_time[33]
public plugin_init()
{
register_clcmd("say /timeadd","time_add")
register_clcmd("say /timesub","time_substract")
}
public time_add(id) user_time[id]++ //add 1 time (???)
public time_substract(id) user_time[id]-- //substract 1 time (???)
__________________