Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. rule("SLOW DOWN IF THING STARTS TO CRASH")
  2. {
  3. event
  4. {
  5. Ongoing - Global;
  6. }
  7.  
  8. conditions
  9. {
  10. Server Load Average >= 255;
  11. Server Load == Is Game In Progress;
  12. }
  13.  
  14. actions
  15. {
  16. Big Message(All Players(All Teams), String("Recovering", Null, Null, Null));
  17. Set Slow Motion(0);
  18. Wait(2, Ignore Condition);
  19. Set Slow Motion(100);
  20. Wait(15, Ignore Condition);
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement