Can I change bullet direction uzing hook on client:
hook.Add("EntityFireBullets","changedir",function(ent,tabl)
tabl.Dir = tabl.Dir + Vector(0,0,100)
return true
end)
You have to do it shared for prediction, or at least serverside to actually work. If you're trying to do something like context menu aiming, the mouse position is networked to the server so that it may be done shared - you cannot change the direction purely clientside
Sorry, you need to Log In to post a reply to this thread.