_gourd = (L2GourdInstance) spawn.spawnOne();
L2World.getInstance().storeObject(_gourd);
_gourd.setOwner(activeChar.getName());
activeChar.destroyItem("Consume", item.getObjectId(), 1, null, false);
SystemMessage sm = new SystemMessage(SystemMessageId.S1_S2);
sm.addString("Created " + template1.name + " at x: " + spawn.getLocx() + " y: " + spawn.getLocy() + " z: " + spawn.getLocz());
activeChar.sendPacket(sm);
sm = null;
}
catch(Exception e)
{