From 4e6774e4173eccff9d0b51b45fe2af07e682e67d Mon Sep 17 00:00:00 2001 From: euphyy Date: Wed, 5 Sep 2012 02:42:20 +0000 Subject: * Follow-up r16742, revised quest sample (doc\sample\npc_test_quest.txt) and whisper system documentation (doc\whisper_sys.txt) * Follow-up r16745, fixed a few typos in atcommand documentation (doc\atcommands.txt) * Minor cleaning - spacing, tabulation, comments, dividers git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16746 54d463be-8e91-2dee-dedb-b68131a5f0ec --- npc/events/MemorialDay_2008.txt | 17 ++++++------ npc/events/children_week.txt | 58 ++++++++++++++++++++--------------------- npc/events/halloween_2009.txt | 6 ++--- npc/events/idul_fitri.txt | 22 +++++++--------- npc/events/valentinesday.txt | 9 ++++--- 5 files changed, 56 insertions(+), 56 deletions(-) (limited to 'npc/events') diff --git a/npc/events/MemorialDay_2008.txt b/npc/events/MemorialDay_2008.txt index d6dae7d78..4073092f3 100644 --- a/npc/events/MemorialDay_2008.txt +++ b/npc/events/MemorialDay_2008.txt @@ -1,5 +1,5 @@ //===== rAthena Script ======================================= -//= In Memory of Heroes (iRO Memorial Day 2008) +//= In Memory of Heroes //===== By: ================================================== //= Kisuka //===== Current Version: ===================================== @@ -7,15 +7,15 @@ //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= -// +//= iRO Memorial Day (2008) //===== Additional Comments: ================================= //= 1.0 First version. [Kisuka] //= 1.1 Many Many Fixes. [Kisuka] //= 1.2 Some changes. [Kisuka] //============================================================ -// ================== Lauds ====================== -// =============================================== +// Lauds +//============================================================ prontera,182,214,4 script Lauds#Memorial 58,{ if(Memorial08 < 1) { mes "[Mad Sago Lauds]"; @@ -194,8 +194,8 @@ prontera,182,214,4 script Lauds#Memorial 58,{ } } -// ============== Memorial Plaque ================ -// =============================================== +// Memorial Plaque +//============================================================ prontera,153,286,4 script Memorial Plaque#Memorial 857,{ if(Memorial08 < 8) { mes "[" + strcharinfo(0) + "]"; @@ -251,9 +251,8 @@ prontera,153,286,4 script Memorial Plaque#Memorial 857,{ close; } - -// ==================== Grast ==================== -// =============================================== +// Grast +//============================================================ prontera,150,270,4 script Grast#Memorial 900,{ if(Memorial08 < 3) { mes "[Grast]"; diff --git a/npc/events/children_week.txt b/npc/events/children_week.txt index e0d3fec88..99c0fedaf 100644 --- a/npc/events/children_week.txt +++ b/npc/events/children_week.txt @@ -16,20 +16,20 @@ prontera,146,91,5 script Pandit chacha#child07 61,{ if(BaseLevel > 50) { mes "[Pandit chacha]"; - mes "Hahaha."; + mes "Hahaha~"; mes "It is special day, comes only one time in a year."; mes "If you see little adventurers around you send to me~"; mes "I will give the special gift."; close; } else if(BaseLevel < 20) { mes "[Pandit chacha]"; - mes "Hahaha."; + mes "Hahaha~"; mes "You are a baby adventurer not little adventurer."; mes "When you more grow up, come back again. hahaha."; close; } else if(oversea_event9 < 1) { mes "[Pandit chacha]"; - mes "Hahaha."; + mes "Hahaha~"; mes "Welcome, little adventurers!"; mes "Today is special day, isn't it~?"; mes "I would like to give the small gift to little adventurer..."; @@ -42,13 +42,13 @@ prontera,146,91,5 script Pandit chacha#child07 61,{ mes "Whenever come back again if you want it..."; close; } - set oversea_event9,1; - getitem 11705,10; //Children's Potion - mes "[Pandit chacha]"; - mes "Look. This is a child Potion."; - mes "The weight is just 1 but recover much HP."; - mes "If you want to get more, bring the 1 Wedding Bouquet and 1 Witherless Rose."; - close; + set oversea_event9,1; + getitem 11705,10; //Children's Potion + mes "[Pandit chacha]"; + mes "Look. This is a child Potion."; + mes "The weight is just 1 but recover much HP."; + mes "If you want to get more, bring the 1 Wedding Bouquet and 1 Witherless Rose."; + close; } else if(oversea_event9 == 1) { if(countitem(745) > 0 && countitem(748) > 0) { mes "[Pandit chacha]"; @@ -62,25 +62,25 @@ prontera,146,91,5 script Pandit chacha#child07 61,{ mes "If you are not prepared yet, call me when you ready."; close; } - mes "[Pandit chacha]"; - mes "Hahaha."; - mes "Oh~ you get it."; - mes "Here, I will exchange to the 50 child potion."; - mes "Once you get this 50 child potion, I won't give any more."; - close2; - delitem 745,1; //Wedding Bouquet - delitem 748,1; //Witherless Rose - set oversea_event9,2; - getitem 11705,50; //Children's Potion - end; - } mes "[Pandit chacha]"; - mes "Little adventurers, you should bring the 1 Wedding Bouquet and 1 Witherless Rose."; - mes "If you bring these stuffs I will exchange them for child Potion. "; - close; + mes "Hahaha~"; + mes "Oh~ you get it."; + mes "Here, I will exchange to the 50 child potion."; + mes "Once you get this 50 child potion, I won't give any more."; + close2; + delitem 745,1; //Wedding Bouquet + delitem 748,1; //Witherless Rose + set oversea_event9,2; + getitem 11705,50; //Children's Potion + end; + } + mes "[Pandit chacha]"; + mes "Little adventurers, you should bring the 1 Wedding Bouquet and 1 Witherless Rose."; + mes "If you bring these stuffs I will exchange them for child Potion. "; + close; } - mes "[Pandit chacha]"; - mes "Hahaha."; - mes "Are you enjoying children week~? "; - close; + mes "[Pandit chacha]"; + mes "Hahaha~"; + mes "Are you enjoying children week~?"; + close; } diff --git a/npc/events/halloween_2009.txt b/npc/events/halloween_2009.txt index c3d314d7a..f143c95f4 100644 --- a/npc/events/halloween_2009.txt +++ b/npc/events/halloween_2009.txt @@ -21,7 +21,7 @@ //============================================================ // Headgear Quest - Pumpkin Hat -// ============================ +//============================================================ prontera,152,192,5 script Pumpkin Hat Researcher 712,{ if(BaseLevel < 45) { mes "[Pumpkin Hat Researcher]"; @@ -95,7 +95,7 @@ prontera,152,192,5 script Pumpkin Hat Researcher 712,{ } // Buffs - Trick or Treaters -// ========================= +//============================================================ - script Trick or Treater::09Treats 706,2,2,{ OnTouch: hideoffnpc strnpcinfo(3); @@ -221,7 +221,7 @@ prontera,134,125,5 duplicate(09Treats) Trick or Treater#iRO7 706,2,2 prontera,220,72,5 duplicate(09Treats) Trick or Treater#iRO8 706,2,2 // Monster Summoning - Halloween Wizard -// ==================================== +//============================================================ - script Halloween Wizard#iRO09::09HallowWiz 737,{ mes "[Halloween Wizard]"; mes "..."; diff --git a/npc/events/idul_fitri.txt b/npc/events/idul_fitri.txt index 0c11775ca..aad875821 100644 --- a/npc/events/idul_fitri.txt +++ b/npc/events/idul_fitri.txt @@ -5,7 +5,7 @@ //===== Current Version: ===================================== //= 1.1 //===== Compatible With: ===================================== -//= rAthena Version +//= rAthena SVN //===== Description: ========================================= //= Info : Official idRO //= 2006/10/16: 1.0 Release and fully working. [$ephiroth] @@ -13,28 +13,26 @@ //============================================================ prontera,146,92,3 script Cellerb 58,{ - set @npcname$,"[Staff Idul Fitri]"; - mes @npcname$; + mes "[Staff Idul Fitri]"; if((gettime(6)==10 && (gettime(5)==24 || gettime(5)==25))==0) { mes "Congratulation! Celebrate Feast Day Of Ramadan Idul Fitri 1427 H."; specialeffect EF_SANDMAN; close; } mes "Haii......^FF8800"+strcharinfo(0)+"^000000!!"; - mes "First day of Idulfitri has arrived."; + mes "First day of Idul Fitri has arrived."; mes "Congratulation celebrate him."; mes "There is event special today."; next; - mes @npcname$; - mes "Event today .....^009500Idul Fitri Quest!^000000"; + mes "[Staff Idul Fitri]"; + mes "Event today.....^009500Idul Fitri Quest!^000000"; next; - mes @npcname$; + mes "[Staff Idul Fitri]"; mes "If you interest to follow this event, I will cook it to you."; next; - switch(select("Allright. I like that!!","Next time.... Thanks.")){ case 1: - mes @npcname$; + mes "[Staff Idul Fitri]"; mes "I have something that might interest you."; mes "I need all of the following items:"; mes "^D5A500Ketupat Sayur Ingredient :^000000"; @@ -42,7 +40,7 @@ prontera,146,92,3 script Cellerb 58,{ mes "^CC6633~5 Sweet Potato, 10 Meat~,^000000"; mes "^000088~2 Green Herb, 5 Stem~.^000000"; next; - mes @npcname$; + mes "[Staff Idul Fitri]"; if ( (countitem(552)<5 || countitem(515)<5 ||countitem(516)<5 || countitem(517)<10 || countitem(511)<2 || countitem(905)<5) ) { mes "You don't have enough items."; mes "Come back when you have them all."; @@ -62,12 +60,12 @@ prontera,146,92,3 script Cellerb 58,{ mes "^009500-Clang clang~^000000"; getitem 583,1; next; - mes @npcname$; + mes "[Staff Idul Fitri]"; mes "We appreciate your participation in this special event."; emotion e_thx; close; case 2: - mes @npcname$; + mes "[Staff Idul Fitri]"; mes "Oh well, maybe you will participate in tommorow's quest."; emotion e_hmm; close; diff --git a/npc/events/valentinesday.txt b/npc/events/valentinesday.txt index 519ccb350..c6941016d 100644 --- a/npc/events/valentinesday.txt +++ b/npc/events/valentinesday.txt @@ -15,7 +15,8 @@ //= 1.1 Cleaning. [Euphy] //============================================================ -// Stephen - Valentine Event Chocolate seller ------------------ +// Stephen - Valentine Event Chocolate seller +//============================================================ alberta,26,243,4 script Stephen 58,{ mes "[Stephen]"; mes "Guess what I've got?"; @@ -58,7 +59,8 @@ alberta,26,243,4 script Stephen 58,{ close; } -// Jainie -- Gives information about Valentine Event ------------------------ +// Jainie -- Gives information about Valentine Event +//============================================================ alberta,29,243,4 script Jainie 53,{ mes "[Jainie]"; mes "You know what? The chocolate that my boyfriend sells are from me!"; @@ -81,7 +83,8 @@ alberta,29,243,4 script Jainie 53,{ close; } -// Carl Orleans -- Valentine Event Chocolate maker ------------------ +// Carl Orleans -- Valentine Event Chocolate maker +//============================================================ prt_castle,54,34,4 script Carl Orleans 47,{ mes "[Carl Orleans]"; mes "Yes?"; -- cgit v1.2.3-60-g2f50