Guest User

C4 Disarm

a guest
Jun 2nd, 2013
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. local function DisarmC4()
  2. for k, v in pairs( ents.FindByClass( "ttt_c4" ) ) do
  3. if IsValid(v) then
  4. for i = 1,6 do
  5.  
  6. RunConsoleCommand( "ttt_c4_disarm", tostring(v:EntIndex()), tostring(i) )
  7.  
  8. end
  9. end
  10. end
  11. end
  12. concommand.Add("DisarmC4",DisarmC4)
Advertisement
Add Comment
Please, Sign In to add comment