Home API Manuals About Forum
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

DressSavedSet

Dress set of clothes that was saved by SetDress method.

Synonym for EquipDressSet

On dressing successful returns True.

If Char disconnected, or dressing failed - return False.

Pascal

function DressSavedSet : Boolean;

Python

def DressSavedSet(): -> list

Example Pascal

Program New;
begin
DressSpeed := 650;
SetDress;
Wait(1000);
AddToSystemJournal('Undress');
Undress;
Wait(1000)                   ;
AddToSystemJournal('Try Dress');
DressSavedSet();
end.```