Now it just tells me "I'm sorry, you cannot use the storage" This is what I have:
function script F_KafStor {
if(getgroupid() < 1) {
mes "[Kafra Employee]";
mes "I'm sorry, you cannot use the storage";
close2;
cutin "", 255;
end;
}
// Unable to access Guild Storage (Busy)
if(getarg(0) == 1){
if(guildopenstorage()){
mes "[Kafra Employee]";
mes "I'm sorry but another guild member is using the guild storage";
mes "right now. Please wait until that person is finished.";
close2;
cutin "", 255;
end;
}
cutin "", 255;
close;
}
// Unable to access Normal Storage (Insufficient Basic Skills)
if(basicskillcheck() && getskilllv("NV_BASIC") < 6){
mes "[Kafra Employee]";
// Niflheim Specific Message
if (getarg(2) == 1) {
mes "^666666S-s-ssoooorry,";
mes "y-you're a-a-aaaa";
mes "Nooviiice... N-neeeds";
mes "B-basic sssskill l-level 6...^000000";
return;
}
mes "I'm sorry, but you";
mes "need the Novice's";
mes "Basic Skill Level 6 to";
mes "use the Storage Service.";
return;
}
// Accessing Normal Storage (Skipped if accessing Storage from Guild castle)
if(getarg(0) != 2){
// Consume "Free Ticket for Kafra Storage" if available.
if(countitem(7059)) delitem 7059,1;
else {
if(Zeny<getarg(1)){
mes "[Kafra Employee]";
// Niflheim Specific Message
if (getarg(2) == 1) {
percentheal -50,-50;
mes "^666666Zeeeeeny...";
mes "M-more z-zeny...!";
mes "N-neeed 150... zeny...";
mes "Ergh! T-taking bl-blood~!^000000";
return;
}
// Standard Message
mes "I'm sorry, but you don't";
mes "have enough zeny to use";
mes "the Storage Service. Our";
mes "Storage access fee is "+getarg(1)+" zeny.";
return;
}
set Zeny, Zeny-getarg(1);
set RESRVPTS, RESRVPTS + (getarg(1)/5);
}
}