Опкод 0ADC.
bool result = testCheat(string text)
Проверяет был ли введён указанный текст на клавиатуре.
string text
текст
bool result
статус
script_name("Example script")
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do
wait(0)
if testCheat("TEST") then
print("Чит-код активирован")
end
end
end