well, that was an easiest way to do it coz it was already ready in Wedding.java:) good job and good luck with your java contribs:)
EDIT:
what about adding the teleport item and the cost into altsettings.properties?
in Config.java under line 1316 put:
public static int ALT_TELEPORT_ITEM;
public static int ALT_TELEPORT_ITEM_COST;
then under line 1512 put:
ALT_TELEPORT_ITEM = Integer.parseInt(altSettings.getProperty("AltGotoplayeritem", "57"));
ALT_TELEPORT_ITEM_COST = Integer.parseInt(altSettings.getProperty("AltGotoplayeritemcost", "10000"));
and in altsettings.properties put
### Item ID needed to use .gotoplayer command ###
AltGotoplayeritem=57
### Item Amount ###
AltGotoplayeritemcost=10000
then do some changes in the GoToPlayer.java like changing
if (!activeChar.destroyItemByItemId("", teleportItem, teleportCost, activeChar, true))
to
if (!activeChar.destroyItemByItemId("", config.ALT_TELEPORT_ITEM, config.ALT_TELEPORT_ITEM_COST, activeChar, true))