6.0.3 Custom Portals

I’m looking to create some custom portals in Stormwind to teleport to different major cities. I have looked at some tutorials online but all of them I found are for 3.3.5a which no longer apply because the database structure has changed. Does anyone know how I could accomplish this? Your help is much appreciated! Thank you! /emoticons/default_smile.png

Do it in the core. You can use OnGossipHello to teleport the player who is speaking to an npc or gameobject. Here an example for a creature script

[CODE]
class npc_portal : public CreatureScript
{
public:
npc_portal() : CreatureScript(“npc_portal”) { }

bool OnGossipHello(Player* pPlayer, Creature* pCreature)
{
    pPlayer->TeleportTo(530, -357.44f, 3064.28f, -15.15f, 0, 0);
    return true;
}

};[/CODE]