CLEO Help game text

CLEO related
Status
Not open for further replies.

davidel

Well-known member
Joined
Jan 17, 2020
Messages
207
Reaction score
7
Location
Germania
how to get gametext ? cleo
i only find something in C++ but idk c++.. i need cleo and i dont know how to get that text

//found

Code:
:IncomingRPC
0BE5: raknet 0@ = get_hook_param PARAM_PACKETID
if
0@ == RPC_SCRDISPLAYGAMETEXT // GameText
then
    0BE5: raknet 1@ = get_hook_param PARAM_BITSTREAM
    //ignore gamtext style and time (8bytes = 64bits)
    0BEB: raknet bit_stream 1@ ignore_bits 64
    //read text length                                   
    0BE7: raknet 2@ = bit_stream_read 1@ type BS_TYPE_INT
    //allocate text length + 1 for null terminating char   
    0A8E: 3@ = 2@ + 1
    alloc 4@ = 3@
    //clear buffer, make sure last char is 0
    0C11: memset 4@ value 0 size 3@
    //read to buffer with size
    0BE8: raknet bit_stream 1@ read_array 4@ size 2@
    //chatmsg "GameText: %s" -1 4@ --- this use to find the correct text
    if
    0C14: strcmp string1 4@ string2 "~y~text"
    then
        //do something
    end
    free 4@
end
0BE0: raknet hook_ret true
 
Last edited:
Status
Not open for further replies.
Top