diff options
author | mekolat <mekolat@users.noreply.github.com> | 2015-05-23 11:00:00 -0400 |
---|---|---|
committer | mekolat <mekolat@users.noreply.github.com> | 2015-06-24 13:24:44 -0400 |
commit | 9c80735ee437f90b2baefbbfcdf6c5829234c908 (patch) | |
tree | 01a728f52b59345822be6ac7b1403d6e78c67311 /world/map/npc/029-3 | |
parent | ab76e47e3f090b29aaba2ec4579e2431a4465d12 (diff) | |
download | serverdata-9c80735ee437f90b2baefbbfcdf6c5829234c908.tar.gz serverdata-9c80735ee437f90b2baefbbfcdf6c5829234c908.tar.bz2 serverdata-9c80735ee437f90b2baefbbfcdf6c5829234c908.tar.xz serverdata-9c80735ee437f90b2baefbbfcdf6c5829234c908.zip |
allow to specify emitter and receiver in npctalk
Diffstat (limited to 'world/map/npc/029-3')
-rw-r--r-- | world/map/npc/029-3/parua.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/world/map/npc/029-3/parua.txt b/world/map/npc/029-3/parua.txt index 1ac59e0a..5ebcc4d7 100644 --- a/world/map/npc/029-3/parua.txt +++ b/world/map/npc/029-3/parua.txt @@ -49,7 +49,7 @@ L_Paying: L_StartFight: if (getmapusers("029-3") < 5) goto L_NotEnoughPlayers; - npctalk "Let the battle begin!"; + npctalk strnpcinfo(0), "Let the battle begin!"; set $@FIGHT_CAVE_STATUS, 1; set $@FIGHT_CAVE_LEVEL, 1; set $@FIGHT_CAVE_PLAYER_COUNT, getmapusers("029-3"); @@ -357,7 +357,7 @@ OnInit: goto L_CleanUp; L_CleanUp: - npctalk "Game Over"; + npctalk strnpcinfo(0), "Game Over"; set $@candor_npctalk$, "The dungeon is now ready for its next victims."; donpcevent "#CandorAnnouncer::OnCommandTalk"; areatimer "029-3", 20, 20, 70, 60, 10, "Parua::OnReward"; @@ -373,7 +373,7 @@ L_CleanUp: end; L_CleanUp_Announcement: - npctalk $@SPONSOR$ + " lost the money invested in the fight, since there are less than 5 players in the cave"; + npctalk strnpcinfo(0), $@SPONSOR$ + " lost the money invested in the fight, since there are less than 5 players in the cave"; set $@SPONSOR$, ""; set $@ANNOUNCE_TIME, 0; set $@FIGHT_CAVE_STATUS, 0; |