Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. function func_time()
  2.     local time
  3.     local count
  4.    
  5.     if (time >= 10) then
  6.         time = time -1
  7.         count = count +1
  8.        
  9.         if (count == 10) then
  10.             count = 0
  11.             outputChatBox(time)
  12.         end
  13.     else
  14.         time = time -1
  15.         outputChatBox(time)
  16.     end
  17.  
  18.     if (time <= 0) then
  19.         killTimer(timer)
  20.     end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement