
Forum in READ ONLY mode! All questions and discussions on Discord official server, invite link: https://discord.gg/VxsGzJ7
Помогите разобратся
Помогите разобратся
напешите пожалуйсто скрипт в цикле, чтобы если ты мёртвый говорил слово какоето, если живой то ждал пока умрёш..... плиз 

Ну это понятно, что сам... правельно?
Code: Select all
Begin
Repeat
If((Dead) and Connected) Then
Begin
UOSay('Vendor Ress');
Repeat
Until (Not Dead);
End;
Until 1<>1
End.
Лучше так:
Code: Select all
Begin
Repeat
If((Dead) and Connected) Then
Begin
UOSay('Vendor Ress');
Repeat
wait(1000);
Until (Not Dead);
End;
wait(1000);
Until 1<>1
End.