PDA

View Full Version : [C++] ArcEmu Basic on World Enter Script



MikExV™
22-05-10, 02:46 AM
When you enter it sets your Pvp To on Says Welcome to You server name! and says please enjoy your stay here :D.

#include "StdAfx.h"
#include "Setup.h"

#ifdef WIN32
#pragma warning(disable:4305)
#endif

void OnEnterWorld(Player * pPlayer)
{

pPlayer->SendAreaTriggerMessage("Welcome to Your Server Name!");
pPlayer->SetPvPFlag();;
pPlayer->BroadcastMessage("Please Enjoy your stay here :D");

};

void SetupEnterWorld(ScriptMgr * mgr)
{
mgr->register_hook(SERVER_HOOK_EVENT_ON_ENTER_WORLD, OnEnterWorld);
}

Cocain
22-05-10, 03:06 AM
For those who arn't that good with C++, or to lazy to edit you might aswell define #Yourservername so that just have to change that at the top of the script. (:

Pedregon
22-05-10, 03:59 AM
Thanks, should be useful for other servers.
+ rep

MikExV™
22-05-10, 11:18 AM
No problem :D, I use to have it on mine. But on mine it cast a divine shield so you would not be spawn camped. But I removed it because I didn't think people would want it.