Remote Exec - An alternative to Streams

Started by habi, Jul 18, 2023, 02:48 PM

Previous topic - Next topic

habi2

#30
RemoteExec v1.1.4
  • Blob instances can be send and received
  • Fixed "Invalid ChunkID" on 64-bit windows server (and possibily corresponding Linux server) when using split-streams.
  • Limited amount of chunks send to not more than 5 per ServerFrame



Downloads



You can get the updated source here.

VirusTotal scan report of binaries- 1/63 link


Example Usage
//Written from memory of recent testing
local f=file("image.bmp", "rb");
local c=f.readblob(f.len()); // c is a blob
f.close();
RemoteExec(GetRemoteValue("DrawBitMap")(c), FindPlayer(0)); //calling DrawBitMap( c  ) - a client side function in player with ID 0 's space
For information about DrawBitMap, see this topic.