diff options
author | Wushin <pasekei@gmail.com> | 2015-04-29 22:25:16 -0500 |
---|---|---|
committer | Wushin <pasekei@gmail.com> | 2015-04-29 22:25:16 -0500 |
commit | 4d416f4ee37e7d289d4009e78e3a68605065fc0a (patch) | |
tree | 81419a89db62ac3301663b83e718b8d74b437407 /world/map/npc/009-2/airlia.txt | |
parent | 31a11c7e19d721afe2f48f18bf36baaf2f666488 (diff) | |
parent | 5c596e4d1723d58bf300ff831dcfb2090a2da0ec (diff) | |
download | serverdata-4d416f4ee37e7d289d4009e78e3a68605065fc0a.tar.gz serverdata-4d416f4ee37e7d289d4009e78e3a68605065fc0a.tar.bz2 serverdata-4d416f4ee37e7d289d4009e78e3a68605065fc0a.tar.xz serverdata-4d416f4ee37e7d289d4009e78e3a68605065fc0a.zip |
Merge pull request #353 from mekolat/getitemname
deprecate getitemname and getequipname
Diffstat (limited to 'world/map/npc/009-2/airlia.txt')
-rw-r--r-- | world/map/npc/009-2/airlia.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/world/map/npc/009-2/airlia.txt b/world/map/npc/009-2/airlia.txt index 62c76e38..6f4be2bd 100644 --- a/world/map/npc/009-2/airlia.txt +++ b/world/map/npc/009-2/airlia.txt @@ -163,7 +163,7 @@ L_Next2: L_intro_proof: mes "[Airlia]"; - mes "\"Let's say " + @FETCH_AMOUNT_INITIAL + " " + getitemname(@FETCH_LABEL_INITIAL$) + "s. You don't know how much this means to me, thank you.\""; + mes "\"Let's say " + @FETCH_AMOUNT_INITIAL + " " + getitemlink(@FETCH_LABEL_INITIAL$) + "s. You don't know how much this means to me, thank you.\""; set QUEST_Airlia, @Q_STATUS_HELP_AIRLIA; close; @@ -180,12 +180,12 @@ L_Fetch: if (QUEST_Graveyard_Caretaker < @Q_STATUS_HAS_NEW_LETTER) menu "You are welcome.", L_Close, - "I have collected the " + @FETCH_AMOUNT_INITIAL + " " + getitemname(@FETCH_LABEL_INITIAL$) + "s.", L_Fetch_initial_reward; + "I have collected the " + @FETCH_AMOUNT_INITIAL + " " + getitemlink(@FETCH_LABEL_INITIAL$) + "s.", L_Fetch_initial_reward; if (QUEST_Graveyard_Caretaker == @Q_STATUS_HAS_NEW_LETTER) menu "You are welcome.", L_Close, "I have another letter from your father.", L_later_rewards, - "I have collected the " + @FETCH_AMOUNT_INITIAL + " " + getitemname(@FETCH_LABEL_INITIAL$) + "s.", L_Fetch_initial_reward; + "I have collected the " + @FETCH_AMOUNT_INITIAL + " " + getitemlink(@FETCH_LABEL_INITIAL$) + "s.", L_Fetch_initial_reward; goto L_Close; L_Fetch_initial_reward: @@ -233,12 +233,12 @@ L_Rewarded: if (QUEST_Graveyard_Caretaker < @Q_STATUS_HAS_NEW_LETTER) menu "You are welcome.", L_Close, - "I have collected the " + @FETCH_AMOUNT + " " + getitemname(@FETCH_LABEL$) + "s.", L_Fetch_later_rewards; + "I have collected the " + @FETCH_AMOUNT + " " + getitemlink(@FETCH_LABEL$) + "s.", L_Fetch_later_rewards; if (QUEST_Graveyard_Caretaker == @Q_STATUS_HAS_NEW_LETTER) menu "You are welcome.", L_Close, "I have another letter from your father.", L_later_rewards, - "I have collected the " + @FETCH_AMOUNT + " " + getitemname(@FETCH_LABEL$) + "s.", L_Fetch_later_rewards; + "I have collected the " + @FETCH_AMOUNT + " " + getitemlink(@FETCH_LABEL$) + "s.", L_Fetch_later_rewards; goto L_Close; L_Close: |