diff options
Diffstat (limited to 'npc/guilds')
-rw-r--r-- | npc/guilds/logs.txt | 2 | ||||
-rw-r--r-- | npc/guilds/management.txt | 4 | ||||
-rw-r--r-- | npc/guilds/storage.txt | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/npc/guilds/logs.txt b/npc/guilds/logs.txt index 0a1b06058..2c80d2833 100644 --- a/npc/guilds/logs.txt +++ b/npc/guilds/logs.txt @@ -93,7 +93,7 @@ guilds,47,39,0 script Guild Logs NPC_NO_SPRITE,{ select l("Do nothing"), rif(strcharinfo(0) == getguildmaster(.@gid), l("Raise max members")), - rif(.@role == GPOS_TREASURER || .@role <= GPOS_VICELEADER, l("Learn individual guild skills")), + rif(.@role <= GPOS_MEMBER, l("Learn individual guild skills")), l("Learn Alchemy Recipes"); mes ""; diff --git a/npc/guilds/management.txt b/npc/guilds/management.txt index af7c16061..d8a54151e 100644 --- a/npc/guilds/management.txt +++ b/npc/guilds/management.txt @@ -60,7 +60,7 @@ guilds,35,30,0 script Guild Management NPC_NO_SPRITE,{ l("Vice Leader"), GPOS_VICELEADER, l("Recruiter"), GPOS_RECRUITER, l("Treasurer"), GPOS_TREASURER, - l("Normal Member"), GPOS_5, + l("Normal Member"), GPOS_MEMBER, l("Newbie"), GPOS_NEWBIE; mes ""; .@idx=0+@menuret; @@ -89,7 +89,7 @@ guilds,35,30,0 script Guild Management NPC_NO_SPRITE,{ .@name$="Treasurer"; .@perm=0; break; - case GPOS_5: + case GPOS_MEMBER: .@name$="Member"; .@perm=0; break; diff --git a/npc/guilds/storage.txt b/npc/guilds/storage.txt index 316071d9f..d608d1e90 100644 --- a/npc/guilds/storage.txt +++ b/npc/guilds/storage.txt @@ -12,7 +12,7 @@ guilds,33,28,0 script Guild Storage NPC_NO_SPRITE,{ } else { - if (getguildrole(.@gid, getcharid(3)) > GPOS_5) + if (getguildrole(.@gid, getcharid(3)) > GPOS_MEMBER) { dispbottom l("Your position must be the one of a regular member or above."); end; |