Nelight has written
addhook("minute","msjes")
function msjes()
This is for 60 secound.
How to make more then 60 secound?
function msjes()
This is for 60 secound.
How to make more then 60 secound?
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
dd = 0 addhook("minute","msjes") function msjes() 	dd = dd + 1 	if dd == 30 then 		dd = 0 		..... 	end end