PDA

View Full Version : [TrinityCore] Custom Speed for Malls



Wise
16-07-20, 10:10 AM
Hello guys if you needed to change any area speed Like Malls, you can use this script


/* <--------------------------------------------------------------------------->
- Developer(s): Prince
- Complete: %100
- ScriptName: 'mall_speed'
<--------------------------------------------------------------------------->
*/

#include "ScriptPCH.h"

enum AreaSpeed
{

AREA_MALL = 5303, // add here your area id

};

class area_speed : public PlayerScript
{
public:
area_speed() : PlayerScript("area_speed") {}

void OnUpdateZone(Player* player, uint32 newZone, uint32 newArea)
{
switch (newArea)
{

case AREA_MALL:
player->SetSpeed(MOVE_RUN, 2.0f);

break;


}
}
};

void AddSC_area_speed()
{
new area_speed(); }

Special Thanks to Prince for writing this code :)