Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1.  
  2. NoSpawnEffectTAB = {}
  3.  
  4. function NoSpawnEffectTAB:Init( data )
  5.     return
  6. end
  7. function NoSpawnEffectTAB:Think( )
  8.     return false
  9. end
  10. function NoSpawnEffectTAB:Render()
  11. end
  12.  
  13. effects.Register( NoSpawnEffectTAB, "propspawn")
  14.  
  15. local function NoSpawnEffectCL()
  16.     effects.Register( NoSpawnEffectTAB, "propspawn")
  17. end
  18. hook.Add("InitPostEntity", "NoSpawnEffectCL", NoSpawnEffectCL)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement