diff options
-rw-r--r-- | npc/functions/goodbye.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/npc/functions/goodbye.txt b/npc/functions/goodbye.txt index af9ab08f..94bc338d 100644 --- a/npc/functions/goodbye.txt +++ b/npc/functions/goodbye.txt @@ -83,6 +83,18 @@ function script cwarp { } + +// cshop +// closes the dialog, then opens a shop +// if no npc is given, calls "#<npc> $" + +function script cshop { + closedialog; // XXX: maybe send closeclientdialog in the future + shop getarg(0, "#" + strnpcinfo(0) + " $"); + //close; => the shop buildin already sends close, and is a terminator itself +} + + function script goodbye { closedialog; |