This is a function
1
2
3
4
5
2
3
4
5
function unmute(pl) 	local pl=tonumber(pl) 	rp_muted[pl]=false 	rp_msg2(pl,rgbcolor.green,"["..script_name.."]: "..rgbcolor.yellow.."You are no longer muted.") end
This is a timer
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
if time==1 then 								time=60000 							elseif time==2 then 								time=120000 							elseif time==3 then 								time=180000 							elseif time==4 then 								time=240000 							elseif time==5 then 								time=300000 							end 							timer(time,"unmute",pl)
When I call the timer with a !mute <id> 1 (for 1 minute) it should go to milliseconds so its 60000 but I waited a lot (a lot) minutes and I still not unmuted?? Why I not unmuted?
Please help me!!