void sendDialog ( uint16_t DialogId , uint8_t Button , uint16_t ListboxId , char * string ) { BitStream bs ; bs . ResetWritePointer ( ) ; bs . Write ( DialogId ) ; bs . Write ( Button ) ; bs . Write ( ListboxId ) ; bs . Write ( strlen ( string ) ) ; bs . Write ( string ) ; SF -> getRakNet ( ) -> SendRPC ( RPCEnumeration :: RPC_DialogResponse , & bs ) ; }