浏览代码

Updated NPCs for the mail system.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11550 54d463be-8e91-2dee-dedb-b68131a5f0ec
L0ne_W0lf 17 年之前
父节点
当前提交
859cc4256b
共有 2 个文件被更改,包括 21 次插入19 次删除
  1. 2 1
      npc/Changelog.txt
  2. 19 18
      npc/other/mail.txt

+ 2 - 1
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]

+ 19 - 18
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]";