- 367
- 184
В чем косяк? Не выводит нечего
И как мне рак-бота поставить на хостинг?
Lua:
function onRecvRpc(id, data, size)
if id == 84 then
bs, charData = bitStreamInit(data, size)
objectid = bitStreamReadWord(bs)
materialType = bitStreamReadByte(bs)
if materialType == 2 then
materialId = bitStreamReadByte(bs)
materialSize = bitStreamReadByte(bs)
fontName = bitStreamReadString(bs, bitStreamReadByte(bs))
fontSize = bitStreamReadByte(bs)
bold = bitStreamReadByte(bs)
fontColor = bitStreamReadDWord(bs)
backGroundColor = bitStreamReadDWord(bs)
align = bitStreamReadByte(bs)
text = bitStreamReadString(bs, bitStreamReadByte(bs), true)
printLog(tostring(text))
end
end
end
И как мне рак-бота поставить на хостинг?