Created
March 1, 2022 13:29
-
-
Save k1zn/3bf045a9bc3567e36cf0c313dcd3d0a7 to your computer and use it in GitHub Desktop.
sendPickup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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