Skip to content

Instantly share code, notes, and snippets.

@k1zn
Created March 1, 2022 13:29
Show Gist options
  • Select an option

  • Save k1zn/3bf045a9bc3567e36cf0c313dcd3d0a7 to your computer and use it in GitHub Desktop.

Select an option

Save k1zn/3bf045a9bc3567e36cf0c313dcd3d0a7 to your computer and use it in GitHub Desktop.
sendPickup
function sendPickup(pickupId)
if (tonumber(pickupId)) then
local pickupBs = bitStreamNew()
bitStreamWriteDWord(pickupBs, tonumber(pickupId))
sendRpc(131, pickupBs)
bitStreamDelete(pickupBs)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment