eh … maybe later, I need to fix the jukebox, teleport option creator, my new website etc.
Here is a temporary SQL you can run to do that:
[CODE]SET
@Menu_id := 50000 – The main menu’s menu_id. By default it is 50000 when you download the teleporter
;
SET – replace the 0 with the desired cost in copper.
@MAIN := 0, – main menu teleports
@Eastern := 0, – Eastern kingdoms teleports
@Kalimdor := 0, – Kalimdor teleports
@Outland := 0, – Kalimdor teleports
@Northrend := 0, – Kalimdor teleports
@Classic := 0, – Classic Dungeon teleports
@BC := 0, – BC Dungeon teleports
@Wrath := 0, – Wrath Dungeon teleports
@Raid := 0; – Raid Teleports
– Do not change anything below –
UPDATE gossip_menu_option SET box_money = @MAIN where menu_id = @Menu_id;
UPDATE gossip_menu_option SET box_money = @Classic where menu_id = @Menu_id+1;
UPDATE gossip_menu_option SET box_money = @BC where menu_id = @Menu_id+2;
UPDATE gossip_menu_option SET box_money = @Wrath where menu_id = @Menu_id+3;
UPDATE gossip_menu_option SET box_money = @Raid where menu_id = @Menu_id+4;
UPDATE gossip_menu_option SET box_money = @Eastern where menu_id = @Menu_id+5;
UPDATE gossip_menu_option SET box_money = @Kalimdor where menu_id = @Menu_id+6;
UPDATE gossip_menu_option SET box_money = @Outland where menu_id = @Menu_id+7;
UPDATE gossip_menu_option SET box_money = @Northrend where menu_id = @Menu_id+8;
UPDATE gossip_menu_option SET box_money = 0 where menu_id BETWEEN @Menu_id AND @Menu_id+8 AND option_icon IN (3, 7, 9) AND action_menu_id BETWEEN @Menu_id AND @Menu_id+8;[/CODE]