summaryrefslogtreecommitdiff
path: root/npc/jobs/2-2/rogue.txt
diff options
context:
space:
mode:
authorMasterOfMuppets <MasterOfMuppets@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-21 12:52:20 +0000
committerMasterOfMuppets <MasterOfMuppets@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-21 12:52:20 +0000
commit64180703d926dce3d8b30012793c773403132285 (patch)
tree9bb8f6d362231cbf90b1b7d5b028d7fd0475155e /npc/jobs/2-2/rogue.txt
parent2d523d32e89dcdfca6ffe85455eeebf69431f4ea (diff)
downloadhercules-64180703d926dce3d8b30012793c773403132285.tar.gz
hercules-64180703d926dce3d8b30012793c773403132285.tar.bz2
hercules-64180703d926dce3d8b30012793c773403132285.tar.xz
hercules-64180703d926dce3d8b30012793c773403132285.zip
A file I forgot >__>
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8396 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/jobs/2-2/rogue.txt')
-rw-r--r--npc/jobs/2-2/rogue.txt30
1 files changed, 28 insertions, 2 deletions
diff --git a/npc/jobs/2-2/rogue.txt b/npc/jobs/2-2/rogue.txt
index 91c52d48d..acf13585c 100644
--- a/npc/jobs/2-2/rogue.txt
+++ b/npc/jobs/2-2/rogue.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= kobra_k88
//===== Current Version: =====================================
-//= 2.2
+//= 2.3
//===== Compatible With: =====================================
//= eAthena 1.0 +
//===== Description: =========================================
@@ -20,6 +20,8 @@
//= 2.0 Changed numbers to constants. [Vicious]
//= 2.1 Removed Duplicates [Silent]
//= 2.2 Merged JFunc [Lupus]
+//= 2.3 Added a possibility for players doing Meginjyard quest
+//= to enter Rogue guild as there's a NPC inside [SinSloth]
//============================================================
@@ -663,8 +665,9 @@ function script F_RogueTest3 {
mes "[???]";
mes "Who's there?!!!";
mes "Who dares to trespass on my territory?";
+ if(god_megin_2 > 0 && getarg(1) == "Aragham") goto L_Pass;
if(BaseJob != Job_Thief || ROGUE_Q<3 || ROGUE_Q2==0) close;
-
+L_Pass:
deletearray @choice$[1], 4;
next;
menu "My father",M_1a, "Aragham",M_1b, "Antonio",M_1c, "Legolas",M_1d;
@@ -734,7 +737,9 @@ function script F_RogueTest3 {
L_Check:
callsub sF_Password;
+ if(god_megin_2 > 0) goto L_Enter;
if(ROGUE_Q2 != getarg(0)) goto L_Wrong;
+L_Enter:
if((@choice$[1] != getarg(1)) || (@choice$[2] != getarg(2)) || (@choice$[3] != getarg(3)) || (@choice$[4] != getarg(4))) goto L_Wrong;
mes "~ creeek ~";
mes "You hear the door begining to open........";
@@ -784,6 +789,7 @@ in_rogue.gat,183,105,4 script Antonio Junior#02 88,{
// Function for Guildsman =============================
function script F_RogueTest4 {
+ if(Class != Job_Thief || ROGUE_Q2 != 1) goto L_NoThief;
if(ROGUE_Q == 4) goto L_Restart;
mes "[" + getarg(0) + "]";
mes "Hello there... You must be from the Rogue guild. My name is " + getarg(0) + "...... I am the Rogue of the Desert..............";
@@ -836,6 +842,26 @@ L_Restart:
mes "If you're up for it, I'll send you back in. Failure has a way of teaching success.... yada yada yada....";
percentheal 100,100;
goto M_Menu;
+
+L_NoThief:
+ mes "[" + getarg(0) +"]";
+ mes "I don't know how you got the";
+ if(ROGUE_Q2)
+ {
+ mes "pass, but I am not the one";
+ mes "in charge of your test.";
+ }
+ else
+ {
+ mes "pass, but looking at your face,";
+ mes "I guess you're not here for the";
+ mes "Rogue test.";
+ }
+ next;
+ mes "[" + getarg(0) +"]";
+ mes "Please hurry up and leave";
+ mes "this place as soon as you can!";
+ close;
}
//================================================