Hello i'm trying to type out my own code and add overloads I think I done it correctly but whenever i click it it won't drink it O_o

My code is below.
(By the way i only added the strength boost bit atm to test it before i add the rest)
((also not added the damage+emotes yet working on this bit first))

Code:
package RuneExtream.scripts.items;

import RuneExtream.model.player.Player;
import RuneExtream.model.player.Skills;
import RuneExtream.scripts.itemScript;

public class i15332 extends itemScript {

	@Override
	public void option1(Player p, int itemId, int interfaceId, int slot) {
		if(p.getInventory().getContainer().get(slot) == null)
			return;
		if(p.getInventory().getContainer().get(slot).getId() != itemId)
			return;
		if(interfaceId != 149)
			return;
		if(System.currentTimeMillis()-p.getCombatDefinitions().getLastPot() < 0)
			return;
		p.getInventory().deleteItem(15332, 1);
		p.getInventory().addItem(15333, 1);
		p.getSkills().set(Skills.STRENGTH, p.getskills().getLevelForXp(Skills.STRENGTH+5+ Math.round(p.getSkills().getLevelForXp(Skills.STRENGTH)*15/100));
		p.animate(829);
		p.getCombatDefinitions().setLastPot(System.currentTimeMillis()+1800);
		p.getCombatDefinitions().setLastFood(System.currentTimeMillis()+1800);
		p.getCombat().delay += 3;
	}
}