summaryrefslogblamecommitdiff
path: root/npc/guilds/storage.txt
blob: e1f30e32a40ce3bdb8443bb0fd296192cfd54f51 (plain) (tree)
1
2
3
4
5
6
7
8
9
10






                                                       


                   
                       

                  





                                                                                          
                                                            



                                                                                        











                                                                                             
// Moubootaur Legends Script
// Author:
//    Jesusalva
// Description:
//  Guild Facility - Guild Storage

guilds,33,28,0	script	Guild Storage	NPC_NO_SPRITE,{
    goto OnStorage;

OnStorage:
    .@gid=getcharid(2);
    if (.@gid < 1)
        end;
    if (getguildlvl(.@gid) < 2)
    {
        npctalkonce l("Your guild need to have at least level 2 to use storage feature.");
    }
    else
    {
        if (getguildrole(.@gid, getcharid(3)) > GPOS_MEMBER)
        {
            dispbottom l("Your position must be the one of a regular member or above.");
            end;
        }
        if (guildopenstorage())
        {
            npctalkonce l("Someone else is using the guild storage right now. Please wait.");
        }
    }
    end;

OnInit:
    .distance=2;
    end;
}