diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-17 06:52:11 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-17 06:52:11 +0000 |
commit | ed294f9894d041e10de8f66888ebc5f19c6d57f7 (patch) | |
tree | 8eb4c876dcd6dcedc7a83d55dda98ecbae581ee5 | |
parent | 36b0b52d1327b61b7184d67a08effdba5fb4bd61 (diff) | |
download | hercules-ed294f9894d041e10de8f66888ebc5f19c6d57f7.tar.gz hercules-ed294f9894d041e10de8f66888ebc5f19c6d57f7.tar.bz2 hercules-ed294f9894d041e10de8f66888ebc5f19c6d57f7.tar.xz hercules-ed294f9894d041e10de8f66888ebc5f19c6d57f7.zip |
Added official kRO Skill Reset Event
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9236 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/events/event_skill_reset.txt | 103 | ||||
-rw-r--r-- | npc/jobs/1-1e/ninja.txt | 4 | ||||
-rw-r--r-- | npc/quest_variables.txt | 5 | ||||
-rw-r--r-- | npc/scripts_athena.conf | 2 |
5 files changed, 114 insertions, 2 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 5724c5b0d..5084c4e48 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -33,6 +33,8 @@ KarLaeda Date Added
======
+11/17
+ * Added official kRo&idRO Skill Reset Event, thanks to $ephiroth [Lupus]
11/16
* Fixed wrong label name in adoption NPC [KarLaeda]
* Added official Ninja Job quest! Thanks to Legionaire for translation [Lupus]
diff --git a/npc/events/event_skill_reset.txt b/npc/events/event_skill_reset.txt new file mode 100644 index 000000000..6c5f4b4c6 --- /dev/null +++ b/npc/events/event_skill_reset.txt @@ -0,0 +1,103 @@ +//===== eAthena Script =======================================
+//= Official Skill Resetter Event in Yuno (kRO & idRO)
+//===== By: ==================================================
+//= $ephiroth
+//===== Current Version: =====================================
+//= 1.01
+//===== Compatible With: =====================================
+//= eAthena 1.0
+//===== Description: =========================================
+//= 2006 - Edition Skill Reset NPC
+//= 2006/11/16: 1.0 Release and fully working. [$ephiroth]
+//= 1.01 Checked, fixed typos, now uses MISC_QUEST var [Lupus]
+//============================================================
+yuno.gat,138,187,4 script Hypnotist Teacher 124,{
+ set @npcname$,"[Hypnotist]";
+ mes @npcname$;
+
+ if(MISC_QUEST & 1024){
+ mes "I already told you that you may only complete this event once.";
+ close;
+ }
+ if(BaseLevel < 60) {
+ mes "Please return when you reach BaseLv 60 or higher.";
+ close;
+ }
+ if(SkillPoint != 0) {
+ mes "You will need to use up all of your skill points if you want me to continue.";
+ mes "Please come again soon!";
+ close;
+ }
+ if(Weight || checkfalcon(0) || checkcart(0) || checkriding(0)) {
+ mes "Would you like to reset skills?";
+ mes "I'm sorry, but...";
+ next;
+ mes @npcname$;
+ if(Weight) {
+ mes "You cannot reset skills";
+ mes "when you keep";
+ mes "any items.";
+ } else if(checkcart(0))
+ mes "Please, drop your cart and we'll continue.";
+ else if(checkfalcon(0))
+ mes "Please, free your Falcon and we'll continue.";
+ else if(checkriding(0))
+ mes "Please, free your PecoPeco and we'll continue.";
+ next;
+ mes @npcname$;
+ mes "Come back soon!";
+ close;
+ }
+ mes "Hello, I am the Skill Resetter.";
+ mes "Your name is ^0080FF"+strcharinfo(0)+"^000000.";
+ mes "How can I help you?";
+ next;
+ menu "^009500Information about Reset skills.^000000",L_Info,"^00B6FFReset skills.^000000",L_Reset,"^000088Nevermind^000000",-;
+
+ mes @npcname$;
+ mes "You know where to find me,";
+ mes "if you ever want a reset!!";
+ close;
+
+L_Info:
+ mes @npcname$;
+ mes "This skill reset is not FREE OF CHARGE!!";
+ mes "Expense for the reset of skill is ^D5A50020000 Zeny x BaseLv^000000.";
+ next;
+ mes @npcname$;
+ mes "Oh yeah, one more thing!";
+ mes "Any carts, falcon or peco's you have equiped,";
+ mes "will be removed if you will reset your skills.";
+ next;
+ mes @npcname$;
+ mes "Just one time does again to shake the skill point";
+ mes "Careful with your skills from here on.";
+ close;
+
+L_Reset:
+ mes @npcname$;
+ mes "Before skill reset in starting.";
+ mes "You shall have to first tell me your Base Level.";
+ next;
+ mes "^D5A500[" + strcharinfo(0) + "]^000000";
+ mes "My Base level is ^AA00AALevel " + BaseLevel + "BaseLv.^000000";
+ next;
+ set @zeny,BaseLevel*20000;
+ mes @npcname$;
+ mes "Total zeny to the reset of skill amount ^529DFF" + @zeny + "Zeny^000000 for the skill reset service.";
+ next;
+ if(Zeny < @zeny) {
+ mes @npcname$;
+ mes "It seems that you don't have enough money.";
+ mes "In addition we wait for the opportunity.";
+ emotion e_hmm;
+ close;
+ }
+ set Zeny, Zeny-@zeny;
+ set MISC_QUEST,MISC_QUEST | 1024;
+ resetskill;
+ mes @npcname$;
+ mes "Thank you.";
+ emotion e_thx;
+ close;
+}
\ No newline at end of file diff --git a/npc/jobs/1-1e/ninja.txt b/npc/jobs/1-1e/ninja.txt index d246bf399..f2e9f2be3 100644 --- a/npc/jobs/1-1e/ninja.txt +++ b/npc/jobs/1-1e/ninja.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= Legionaire //===== Current Version: ===================================== -//= 1.1 +//= 1.1a //===== Compatible With: ===================================== //= eAthena SVN that supports Ninjas //===== Description: ========================================= @@ -17,7 +17,7 @@ //============================================================ -que_ng.gat,30,65,3 script Cool Kid 730,{ +que_ng.gat,30,65,3 script Cool Kid#nq 730,{ set @npcname$,"[Cool Kid]"; if(Class == Job_Novice && JobLevel > 9){ switch(NINJ_Q){ diff --git a/npc/quest_variables.txt b/npc/quest_variables.txt index 2d53d35a5..6c65d3843 100644 --- a/npc/quest_variables.txt +++ b/npc/quest_variables.txt @@ -74,6 +74,11 @@ Info: Lighthalzen. Cube Room Quest (Pass to Bio-Lab) How to set: set MISC_QUEST,MISC_QUEST | 512;
How to check: if(MISC_QUEST & 512){}
+Quest: Reset Skills Event
+Info: Yuno, Hypnotist Teacher
+How to set: set MISC_QUEST,MISC_QUEST | 1024;
+How to check: if(MISC_QUEST & 1024){}
+
--------------------------------------------------------------
Variable: MISC_QUEST2
diff --git a/npc/scripts_athena.conf b/npc/scripts_athena.conf index 1a9075b8c..d0be1249a 100644 --- a/npc/scripts_athena.conf +++ b/npc/scripts_athena.conf @@ -164,6 +164,8 @@ npc: npc/kafras/kafras_new.txt //Official idRO Idul Fitri Event
//npc: npc/events/idul_fitri.txt
//npc: npc/events/dumplingfestival.txt
+//Official kRO, idRO Skill Reset Event
+//npc: npc/events/skill_reset.txt
//A custom event for 3 holidays: X-Mas, Karachun and New Year
//Should be activated between 8 December and 8 January
|