hey guys, i wanted to add a item on item in my server,
but it didn't had one there yet, so i copyed it from my old server.
but can anyone tell me wich ints/boolean things i have to add to get this working:

Code:
 		if (itemUsed == 11690 && usedWith == 11708 || itemUsed == 11708 && usedWith == 11690) {
			pi.deleteItem(player, itemUsed, pi.getItemSlot(player, itemUsed), 1);
			pi.deleteItem(player, usedWith, pi.getItemSlot(player, usedWith), 1);
			pi.addItem(player, 11700, 1);
			player.frames.sendMessage(player, "You weild the two halves together to make a Zamorak Godsword.");
		}
thanks