diff options
author | AnnieRuru <jeankofannie2@gmail.com> | 2019-01-27 21:21:01 +0800 |
---|---|---|
committer | AnnieRuru <jeankofannie2@gmail.com> | 2019-01-27 21:21:01 +0800 |
commit | 7b48fee4ffd90913e2beac51e0bed958129dd3e7 (patch) | |
tree | 88238ce77d615e154f271091d738a57c659d7864 /npc/re | |
parent | 51483b4569a6018f79ae8ece69273e3611e98a89 (diff) | |
download | hercules-7b48fee4ffd90913e2beac51e0bed958129dd3e7.tar.gz hercules-7b48fee4ffd90913e2beac51e0bed958129dd3e7.tar.bz2 hercules-7b48fee4ffd90913e2beac51e0bed958129dd3e7.tar.xz hercules-7b48fee4ffd90913e2beac51e0bed958129dd3e7.zip |
Add F_MesItemInfo function to show item name with description link
also fix OldGlastHeim ITEMLINK display incorrectly
Diffstat (limited to 'npc/re')
-rw-r--r-- | npc/re/instances/OldGlastHeim.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/re/instances/OldGlastHeim.txt b/npc/re/instances/OldGlastHeim.txt index 44b5f1e61..ec0efeb53 100644 --- a/npc/re/instances/OldGlastHeim.txt +++ b/npc/re/instances/OldGlastHeim.txt @@ -2744,7 +2744,7 @@ glast_01,188,273,5 script White Knight#1a 4_WHITEKNIGHT,{ close(); } mes("I exchange you a White Knight Card for ^0000FF3000 Coagulated Spell^000000 or ^FF000070 Contaminated Magic^000000."); - mes("<ITEMLINK>White Knight Card<INFO>4608</INFO></ITEMLINK>"); + mes(F_MesItemInfo(White_Knightage_Card)); next(); setarray(.@item[0], Coagulated_Spell, Corrupted_Charm); setarray(.@cost[0], 3000, 70); @@ -2777,7 +2777,7 @@ glast_01,192,273,3 script Khalitzburg Knight#1a 4_F_KHALITZBURG,{ close(); } mes("I exchange you a Khalitzburg Knight Card for ^0000FF5000 Coagulated Spell^000000 or ^FF0000100 Contaminated Magic^000000."); - mes("<ITEMLINK>Khalitzburg Knight Card<INFO>4609</INFO></ITEMLINK>"); + mes(F_MesItemInfo(Khali_Knightage_Card)); next(); setarray(.@item[0], Coagulated_Spell, Corrupted_Charm); setarray(.@cost[0], 5000, 100); |