- 4
- 0
- Версия MoonLoader
- .027.0-preview
I'm trying to read the bs data, write it to file and later read it from file.
I have a onRecieveRpc function which writes the bs "data" to the file.
The data in the text file is:
24638064
24638068
- I want to get all the data from the bitstream and write it to a file
- I want to read that data from the file and emulate that I recieved a rpc.
I have a onRecieveRpc function which writes the bs "data" to the file.
The data in the text file is:
24638064
24638068
- I want to get all the data from the bitstream and write it to a file
- I want to read that data from the file and emulate that I recieved a rpc.
Lua:
function onReceiveRpc(id, bs, priority, reliability)
if id == 61 then
file = io.open(getGameDirectory().."//moonloader//test.txt", "a")
file:write(bs, "\n")
file:close()
end
end
function recieve()
file = io.open(getGameDirectory().."//moonloader//test.txt", "r")
for bs in file:lines() do
raknetEmulRpcReceiveBitStream(61, bs)
end
file:close()
end