В этом уроке вы узнаете как создать чит через программу CHEAT ENGINE, и поставить кнопки под войти и разблокировать.
Видео:
Скрипт на кнопку (войти/разблокировать):
Код
CEEdit1 = component_findComponentByName(UDF1, "CEEdit1")
CEButton1 = component_findComponentByName(UDF1, "CEButton1")
CEGroupBox1 = component_findComponentByName(UDF1, "CEGroupBox1")
function CEButton1Click(sender)
if (control_getCaption(CEEdit1)=="1111" and string.len(control_getCaption(CEEdit1))>0) then
control_setEnabled(CEGroupBox1, true)
end
if (control_getCaption(CEEdit1)~="1111" and string.len(control_getCaption(CEEdit1))>0) then
messageDialog('Пароль неверный',1,2)
end
if (string.len(control_getCaption(CEEdit1))==0) then
messageDialog('Введите пароль!',1,2)
end
end