Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.24 KB | None | 0 0
  1. if shockwaveTimer1 == true and shockwaveTimer2 == true then
  2.     killShockwaveTimers()
  3. end
  4. if shockwaveTimer1 == false and shockwaveTimer1Failsafe == false then
  5.     shockwaveTimer1 = true
  6.     if timer1a then killTimer(timer1a) end
  7.     if timer1b then killTimer(timer1b) end
  8.     if timer1c then killTimer(timer1c) end
  9.     timer1a = tempTimer (3300, [[send ("shipt Primary shockwave expires in five minutes!");shockwaveTimer1 = false;shockwaveTimer1Failsafe = false]])
  10.     timer1b = tempTimer (3420, [[send ("shipt Primary shockwave expires in three minutes!")]])
  11.     timer1c = tempTimer (3540, [[send ("shipt Primary shockwave expires in ONE MINUTE!")]])
  12.     shockwaveTimer1Failsafe = true
  13. elseif shockwaveTimer2 == false and shockwaveTimer2Failsafe == false then
  14.     shockwaveTimer2 = true
  15.     if timer2a then killTimer(timer2a) end
  16.     if timer2b then killTimer(timer2b) end
  17.     if timer2c then killTimer(timer2c) end
  18.     timer2a = tempTimer (3300, [[send ("shipt Secondary shockwave expires in five minutes!");shockwaveTimer2 = false;shockwaveTimer2Failsafe = false]])
  19.     timer2b = tempTimer (3420, [[send ("shipt Secondary shockwave expires in three minutes!")]])
  20.     timer2c = tempTimer (3540, [[send ("shipt Secondary shockwave expires in ONE MINUTE!")]])
  21.     shockwaveTimer2Failsafe = true
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement