if you want only available at prontera try this
- script OneCommand -1,{
OnQuestCommand:
if (strcharinfo(3) == "prontera") {
warp "your quest map",x,x;
end;
}
dispbottom .@atcmd_command$+" This Command only available at prontera town!";
end;
OnMallCommand:
if (strcharinfo(3) == "prontera") {
warp "your quest map",x,x;
end;
}
dispbottom .@atcmd_command$+" This Command only available at prontera town!";
end;
OnDonateCommand:
if (strcharinfo(3) == "prontera") {
warp "your quest map",x,x;
end;
}
dispbottom .@atcmd_command$+" This Command only available at prontera town!";
end;
OnInit:
bindatcmd "quest", strnpcinfo(0)+"::OnQuestCommand";
bindatcmd "mall", strnpcinfo(0)+"::OnMallCommand";
bindatcmd "donate", strnpcinfo(0)+"::OnDonateCommand";
end;
}