diff options
-rw-r--r-- | npc/001-8/hub.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/npc/001-8/hub.txt b/npc/001-8/hub.txt index 9a656bbc9..51abfc258 100644 --- a/npc/001-8/hub.txt +++ b/npc/001-8/hub.txt @@ -421,8 +421,7 @@ OnPCLogoutEvent: // I want to know if it is already safe to read your current exp // to implement a no-death-penalty and a halved-penalty system if (is_staff() && @qhub_died) { - dispbottom l("Exp: @@", readparam(BaseExp)); - dispbottom l("JExp: @@", readparam(JobExp)); + addtimer(200, "#QuirinoHUB::OnNoPenaltyCommand"); } @qhub_victor=0; @@ -433,5 +432,10 @@ OnCancel: setpcblock(PCBLOCK_ATTACK|PCBLOCK_SKILL|PCBLOCK_ITEM|PCBLOCK_MOVE|PCBLOCK_COMMANDS, false); warp "Save", 0, 0; end; + +OnNoPenaltyCommand: + dispbottom l("Exp: @@", readparam(BaseExp)); + dispbottom l("JExp: @@", readparam(JobExp)); + end; } |