Okay here you go some simple C++ script..
When you enter in world you get in middle message like Raid Message..
Code:
#include "StdAfx.h"
#include "Setup.h"
#ifdef WIN32
#pragma warning(disable:4305) // warning C4305: 'argument' : truncation from 'double' to 'float'
#endif
void OnEnterWorld(Player * pPlayer)
{
bool start = true;
while (start == true)
{
pPlayer->SendAreaTriggerMessage("Welcome! NAME, Visit us at www."); //Change this what is quoted in " ".
break;
}
}
void SetupEnterWorld(ScriptMgr * mgr)
{
mgr->register_hook(SERVER_HOOK_EVENT_ON_ENTER_WORLD, OnEnterWorld);
}