Try not tested
- script atcommand_main -1,{
OnAtStorage:
// Check GM level before proceeding
if (getgmlevel() < 90) {
dispbottom "You must be GM level 90 or above to use this command!";
end;
}
.@map$ = strcharinfo(3);
// Check if player is in PVP or GVG map
if (getmapflag(.@map$, mf_pvp) || getmapflag(.@map$, mf_gvg)) {
dispbottom "You cannot use @storage in PVP/GVG maps.";
}
else {
openstorage;
}
end;
OnAtLoad:
// Check GM level before proceeding
if (getgmlevel() < 90) {
dispbottom "You must be GM level 90 or above to use this command!";
end;
}
.@map$ = strcharinfo(3);
// Check if player is in PVP or GVG map
if (getmapflag(.@map$, mf_pvp) || getmapflag(.@map$, mf_gvg)) {
dispbottom "You cannot use @load in PVP/GVG maps.";
}
else {
warp "SavePoint", 0, 0;
}
end;
OnAtGo:
// Check GM level before proceeding
if (getgmlevel() < 90) {
dispbottom "You must be GM level 90 or above to use this command!";
end;
}
.@map$ = strcharinfo(3);
// Check if player is in PVP or GVG map
if (getmapflag(.@map$, mf_pvp) || getmapflag(.@map$, mf_gvg)) {
dispbottom "You cannot use @go in PVP/GVG maps.";
}
else {
// Implement go logic if needed
}
end;
// Bind the commands to their respective NPC scripts
OnInit:
bindatcmd "storage", strnpcinfo(3) + "::OnAtStorage";
bindatcmd "load", strnpcinfo(3) + "::OnAtLoad";
bindatcmd "go", strnpcinfo(3) + "::OnAtGo";
end;
}