Skip to content

PrintUInt32

Note

This function only exists in REV02 and above.

Description

Prints an unsigned integer to the console.

Parameters

mode

The print mode of the message.

message

The label to call the integer.

integer

The unsigned integer to print.

Return Value

None.

Syntax

RSDK.PrintUInt32(int32 mode, const char *message, uint32 integer);
Dev::PrintUInt32(PrintModes mode, const char *message, uint32 integer);

Example

RSDK.PrintUInt32(PRINT_NORMAL, "health", self->health);
Dev::PrintUInt32(Dev::PRINT_NORMAL, "health", this->health);