Lua:stringToByteTable
Revision as of 00:07, 25 January 2018 by TheyCallMeTim13 (talk | contribs) (moved stringToByteTable to Lua:stringToByteTable)
function stringToByteTable(String) : table
Converts a string to a byte table.
Function Parameters
| Parameter | Type | Description |
|---|---|---|
| String | string | The string to convert to a byte table |
Examples
local bt = stringToByteTable('player.weapons.rifle')
bt[#bt + 1] = 0
writeBytes('00123ABC', bt)
Code:
local bt = stringToByteTable('test')
for i, v in ipairs(bt) do
print(i - 1, string.format('%02X', v))
end
Output:
0 74 1 65 2 73 3 74