PartySay
Sends a message to all party members (party broadcast).
Msg — the message text.
Отправляет сообщение всем членам пати (широковещательное сообщение пати).
Msg — текст сообщения.
procedure PartySay(Msg: String);
def PartySay(Msg: str) -> None: ...
begin
if InParty then
PartySay('Moving to the dungeon entrance');
end.
if InParty():
PartySay('Moving to the dungeon entrance')