diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 3 | ||||
-rw-r--r-- | npc/other/mail.txt | 37 |
2 files changed, 21 insertions, 19 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index b1b83abd8..c8229b575 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -1,7 +1,8 @@ Date Added ====== 2007/10/22 - * Rev. 11548 Bug fixes for the turbo track. [L0ne_W0lf] + * Rev. 11550 Updated NPCs for the mail system. [L0ne_W0lf] + * Rev. 11549 Bug fixes for the turbo track. [L0ne_W0lf] - Fixes both the point exchanger for exp when selecting "No" and also fixes the infinite loop in the game Guide. * Rev. 11545 Implemented Al De Baran turbo Track. Please report any errors. [L0ne_W0lf] diff --git a/npc/other/mail.txt b/npc/other/mail.txt index e84ffb6b2..a64593305 100644 --- a/npc/other/mail.txt +++ b/npc/other/mail.txt @@ -3,44 +3,45 @@ //===== By: ================================================== //= L0ne_W0lf //===== Current Version: ===================================== -//= 1.0 +//= 1.1 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= //= [Aegis Conversion] //= Pickup and write mail from/to players in game. -//= Note: Mail System is NOT implemented. These NPCs are only -//= place-holders. //===== Additional Comments: ================================= //= 1.0 First version, place holders only. [L0ne_W0lf] +//= 1.1 Dialog updated to Official. [L0ne_W0lf] //============================================================ // Prontera //============================================================ prontera,146,86,0 script Mailbox#prt::MailBox 888,{ mes "[Mailbox]"; - mes "To use the mailbox service, you are required"; - mes "to pay 130 zeny."; - mes "Would you like to use the service?"; + mes "If you'd like to use"; + mes "the Mailbox Service,"; + mes "you must firs pay"; + mes "the 130 zeny service fee."; + mes "Would you like to use the"; + mes "mailbox now?"; next; if (select("Yes.:No.") == 1) { if (Zeny < 130) { mes "[Mailbox]"; - mes "I am sorry, but you do not have enough money."; - mes "To use the mailbox service, you are required"; - mes "to pay 130 zeny."; + mes "I am sorry, but would"; + mes "you please check your"; + mes "money again? You don't"; + mes "have enough zeny to pay"; + mes "the 130 zeny service fee."; close; } mes "[Mailbox]"; - //Custom messages. - mes "Oh, I'm sorry but the"; - mes "^FF0000Mail System^000000 is still under"; - mes "construction."; - mes " "; - mes "No charges have been applied."; - //mes "Thank you, please come again." - //set Zeny,Zeny-130; - //OpenMail + mes "Thank you for your"; + mes "patronage. Please come"; + mes "again soon, and use our"; + mes "convenient Mailbox Service~"; + set Zeny,Zeny-130; + atcommand "@mail"; close; } mes "[Mailbox]"; |