Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1.  
  2. local whatefak = {0.49, 0.48, 0.47, 0.46, 0.45, 0.44, 0.43, 0.42, 0.41, 0.4, 0.39, 0.38, 0.37, 0.36, 0.35, 0.34, 0.33, 0.32, 0.31}
  3.  
  4. if target.buff["exaltedwithbaronnashorminion"] then
  5. if (math.floor(game.time / 60)) <= 20 then
  6. if target.charName:find("Ranged") then
  7. damage = damage * 0.5
  8. end
  9. if target.charName:find("Melee") then
  10. damage = damage * 0.5
  11. end
  12. end
  13. ----
  14. if ((math.floor(game.time / 60)) >= 21) and not ((math.floor(game.time / 60)) >= 40) then
  15. if target.charName:find("Ranged") then
  16. damage = damage * (whatefak[((math.floor(game.time / 60)) - 20)])
  17. end
  18. if target.charName:find("Melee") then
  19. damage = damage * (whatefak[((math.floor(game.time / 60)) - 20)])
  20. end
  21. end
  22. ----
  23. if (math.floor(game.time / 60)) >= 40 then
  24. if target.charName:find("Ranged") then
  25. damage = damage * 0.3
  26. end
  27. if target.charName:find("Melee") then
  28. damage = damage * 0.3
  29. end
  30. end
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement