Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function spawnLort(playerSource)
  2.  
  3.  outputChatBox("You are now searching", playerSource)
  4.  setPedAnimation( playerSource, "BOMBER", "BOM_Plant")
  5.  setPedFrozen ( playerSource, true )
  6.  setTimer( function(playerSource)
  7.   setPedAnimation( playerSource, false )
  8.   setPedFrozen( playerSource, false )  
  9.   end, 2000, 1, playerSource)
  10. end
  11. addCommandHandler("search", spawnLort)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement