Advertisement
Guest User

Untitled

a guest
Oct 16th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. @name Anti-Crynet
  2. @persist VirusCount:number
  3. @model models/props_junk/TrashBin01a.mdl
  4. interval(1000)
  5.  
  6. findByClass("gmod_wire_expression2")
  7.  
  8. VirusCount = 0
  9.  
  10. foreach ( K, V:entity = findToArray() ) {
  11. if ( V:getAlpha() <= 30 & V:name():trim() == "" ) {
  12. print("Removed virus from "+V:owner():name())
  13. VirusCount++
  14. V:propDelete()
  15. }
  16. }
  17.  
  18. setName("Anti-Crynet - Found " + VirusCount + " malicious E2s")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement