if (!members.isInsideRadius(npc, 2000, false, false)) <------If player is near raid //check
{
members.sendMessage("You Was On Wrong Place"); <----------If players wasnt near send msg about "fail"
continue;
}
if (!members.isInsideRadius(npc, 2000, true, true)) <--- if member is in radius correct check
{
members.getInventory().addItem("Noblesse Tiara",7694,1,members,null); <--- change the ids and give to all party the item which you like to
members.sendMessage("You Are Noblesse now."); <--- chance the msg or delete it
}
Fail.