diff options
Diffstat (limited to 'npc/025-1')
-rw-r--r-- | npc/025-1/ctrl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/025-1/ctrl.c b/npc/025-1/ctrl.c index 03997d62b..7006f7a63 100644 --- a/npc/025-1/ctrl.c +++ b/npc/025-1/ctrl.c @@ -432,8 +432,10 @@ OnConquest: FTCleanup(true); kamibroadcast("Fortress Town has been captured by the Allied Forces!"); // Experience injection to the brave (500k EXP, 100k JEXP) - if (playerattached()) + if (playerattached()) { getexp 500000, 100000; + getitem StrangeCoin, rand2(40,50); + } stopnpctimer; end; } |