Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. local ply = LocalPlayer ()
  2.  
  3. local actwaveenabled = CreateClientConVar ( "actwave" , 0, true, false )
  4.  
  5. local function actwave ()
  6.  
  7. if (actwaveenabled:GetInt() < 1 ) then return end
  8.  
  9. ply:ConCommand( "_Darkrp_Doanimation " .. tostring ( ACT_GMOD_GESTURE_WAVE ) )
  10.  
  11. end
  12.  
  13. timer.Create ( "actwave", 2.6142855945412, 0, actwave )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement