summaryrefslogtreecommitdiff
path: root/npc/guild
diff options
context:
space:
mode:
authorLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-11-13 13:50:05 +0000
committerLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-11-13 13:50:05 +0000
commit61ac274ddcc1307b86d31d152260bf6dcd1360c3 (patch)
tree7428cf0c56da5f4d22a29688bbd511d3122e5872 /npc/guild
parent09ef04605a8c8ef4fb36f23154f12db65da976e1 (diff)
downloadhercules-61ac274ddcc1307b86d31d152260bf6dcd1360c3.tar.gz
hercules-61ac274ddcc1307b86d31d152260bf6dcd1360c3.tar.bz2
hercules-61ac274ddcc1307b86d31d152260bf6dcd1360c3.tar.xz
hercules-61ac274ddcc1307b86d31d152260bf6dcd1360c3.zip
Fix for guild manager recognizing
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9205 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guild')
-rw-r--r--npc/guild/gldfunc_manager.txt11
1 files changed, 6 insertions, 5 deletions
diff --git a/npc/guild/gldfunc_manager.txt b/npc/guild/gldfunc_manager.txt
index bc1b3143d..bd45344b6 100644
--- a/npc/guild/gldfunc_manager.txt
+++ b/npc/guild/gldfunc_manager.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= jAthena - kalen (1.0) & eAthena Team
//===== Current Version: =====================================
-//= 1.6
+//= 1.6a
//===== Compatible With: =====================================
//= eAthena 0.1+; RO Episode 4+
//===== Description: =========================================
@@ -28,6 +28,7 @@
//= 1.41 Fixed possible Economy investment overflow with Emsolute Develop learnt [Lupus]
//= 1.5 Official Novice Castles Menu (u can't invest / hire guardians) [Lupus]
//= 1.6 According to recent info u can re-install Guardians during WoE [Lupus]
+//= 1.6a Fix for guild manager recognizing [KarLaeda]
//============================================================
@@ -41,13 +42,13 @@ function script F_GldManager {
mes "I am waiting for my master. Brave adventurer, follow your destiny!";
return 0;
}
- if (getcharid(2) == @GID){
- mes "You're not ^5533FF" + getguildmaster(@GID) + "^000000! I am here to follow ^5533FF" + getguildmaster(@GID) + "^000000's command only";
+ if (getcharid(2) != @GID){
+ mes "I am here to follow ^5533FF" + getguildmaster(@GID) + "^000000's command! Hey! Your not even a part of the guild!!";
+ mes "Where are the guardians? Destroy these intruders!";
return 0;
}
if (strcharinfo(0) != getguildmaster(@GID)){
- mes "I am here to follow ^5533FF" + getguildmaster(@GID) + "^000000's command! Hey! Your not even a part of the guild!!";
- mes "Where are the guardians? Destroy these intruders!";
+ mes "You're not ^5533FF" + getguildmaster(@GID) + "^000000! I am here to follow ^5533FF" + getguildmaster(@GID) + "^000000's command only";
return 0;
}