Код с C++ на Lua

azimoff

azimoff
Автор темы
Проверенный
90
70
Версия MoonLoader
.026-beta
Как перевести это на Lua:
C++:
char* cKey = "NPC";
RakNet::BitStream wcKey;
BYTE cKeyLenght;
cKeyLenght = (BYTE)strlen(cKey);
wcKey.Write((BYTE)ID_AUTH_KEY);
wcKey.Write((BYTE)cKeyLenght);
wcKey.Write(cKey, cKeyLenght);

пробывал так не получилось
Lua:
cKey = "NPC"
cKeyLenght = string.byte(string.len(cKey))
raknetBitStreamWriteInt8 (wcKey, string.byte(12))
raknetBitStreamWriteInt8 (wcKey, string.byte(cKeyLenght))
raknetBitStreamWriteBuffer(wcKey, cKey, сKeyLenght)
raknetSendBitStreamEx(wcKey, sampfuncs.SYSTEM_PRIORITY, sampfuncs.RELIABLE, 1)