Advertisement
lopezloo

MTA #9163 issue reproduction

Mar 1st, 2016
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. --local count = 0
  2. setTimer(
  3.   function()
  4.     if not Projectile ( localPlayer, 19, 0, 0, 5 ) then
  5.       outputChatBox("projectile not created")
  6.     end
  7.   end, 500, 0)
  8.  
  9. addEventHandler("onClientProjectileCreation", root,
  10.   function()
  11.       source.model = 1337
  12.       --count = count + 1
  13.       --local file = fileCreate("count.txt")
  14.       --fileWrite(file, count)
  15.       --fileClose(file)
  16.   end
  17. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement