// 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 needs to have at least level 2 to use storage feature."); } else { if (getguildrole(.@gid, getcharid(3)) > GPOS_MEMBER) { dispbottom l("Your rank must be 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; }