Placeholders
The texts and values of all elements are customizable using placeholder, you can use them instead of updating values.
Default placeholders
Custom placeholders
-- You should return table like this with how many keys you want
-- In example below, %TestData% can be used as a placeholder for "Test" static value
function GetExtraData()
return {
TestData = "Test"
}
end
Formatting numbers
-- in example below, if player cash is 111111 the output would be: 111,111
local placeholder = "format(%cash%)"Last updated