EquipDressSet
Dress set of clothes that was saved by SetDress method.
Synonym for DressSavedSet
On dressing successful returns True.
If Char disconnected, or dressing failed - return False.
Pascal
function EquipDressSet : Boolean;
Python
def EquipDressSet(): -> list
Example Pascal
Program New;
begin
DressSpeed := 650;
SetDress;
Wait(1000);
AddToSystemJournal('Undress');
Undress;
Wait(1000) ;
AddToSystemJournal('Try Dress');
EquipDressSet();
end.```