- script atcmd_example -1,{
OnInit:
bindatcmd("rentitem", strnpcinfo(3)+"::OnAtcommand");
end;
OnAtcommand:
.@itemid = atoi(.@atcmd_parameters$[0]);
if (getitemname(.@itemid) != "null") {
if (getiteminfo(.@itemid, 2) != IT_CARD) {
rentitem .@itemid, (24 * 60 * 60); // 1 day
}
else {
dispbottom .@atcmd_command$+" - You cant rent "+getitemname(.@itemid);
}
}
else {
dispbottom .@atcmd_command$+" - invalid item #"+.@itemid;
}
end;
}
Hi there, how can i add only GM with level 99 are allowed to use this @rentitem commands?