in the equip method set limitations on it..
itempackethandler.java in the packethandlers and in the model folder something like equipment.java
Edit;
goto
com >> rs2hd >> packethandler >> ItemPacketHandler.java
find
and then go find like this GIANT list of shit..Code:private void equip(Player player, IoSession session, Packet packet) {
under there put an if statment stopping it... like for example.. you have to be an administrator to wear the armadyl godsword..Code:int cLHunt = Equipment.getCLHunt(item.getDefinition()); int cLPray = Equipment.getCLPray(item.getDefinition()); int cLHp = Equipment.getCLHp(item.getDefinition()); int cLAttack = Equipment.getCLAttack(item.getDefinition()); int cLDefence = Equipment.getCLDefence(item.getDefinition()); int cLStrength = Equipment.getCLStrength(item.getDefinition()); int cLMagic = Equipment.getCLMagic(item.getDefinition()); int cLRanged = Equipment.getCLRanged(item.getDefinition()); int cLTheft = Equipment.getCLTheft(item.getDefinition()); int cLCraft = Equipment.getCLCrafting(item.getDefinition()); int cLFletch = Equipment.getCLFletching(item.getDefinition()); int cLSlay = Equipment.getCLSlayer(item.getDefinition()); int cLfm = Equipment.getCLFiremaking(item.getDefinition()); int cLfarm = Equipment.getCLFarming(item.getDefinition()); int cLsmth = Equipment.getCLSmithing(item.getDefinition()); int cLmine = Equipment.getCLMining(item.getDefinition()); int cLsum = Equipment.getCLSumm(item.getDefinition()); int cLcook = Equipment.getCLCooking(item.getDefinition()); int cLherb = Equipment.getCLHerblore(item.getDefinition()); int cLfish = Equipment.getCLFishing(item.getDefinition()); int cLwc = Equipment.getCLWoodcutting(item.getDefinition()); int cLag = Equipment.getCLAgility(item.getDefinition()); int cLrc = Equipment.getCLRunecraft(item.getDefinition());
put this under all those intcL's
the return; part restricts the method from going through and ACTUALLY wielding it..Code:if(player.getRights() < 2 && item.getDefinition() == 11694) { player.getActionSender().sendMessage("You must be an Administrator to wield the Armadyl GodSword"); return; }


