{$CLEO}
0662: printstring "CLEO : SF Dialog lesson"
thread "lessondialog"
repeat
wait 100
until SAMP.Available()
0B34: samp register_client_command "lesson" to_label @dlgcmd
Dialog.Create(29@, "Test Dialog")
SAMP.GetScreenResolution(0@, 28@)
28@ /= 2
Dialog.SetRECT(29@, 0, 28@, 200, 300)
Dialog.AddCheckBox(29@, 1, "Бесконечный бег", 11, 35, 150, 15)
Dialog.AddCheckBox(29@, 2, "Заморозить игрока", 11, 60, 150, 15)
Dialog.AddStatic(29@, 3, "StaticText", 11, 75, 150, 15) // Dialog.AddStatic(29@, 1, "StaticText", 11, 75, 150, 15)
Dialog.SetVisible(29@, 0)
while true
wait 0
end
:dlgcmd
if Dialog.IsVisible(29@)
then Dialog.SetVisible(29@, 0)
else Dialog.SetVisible(29@, 1)
end
SAMP.CmdRet