osiris123 / Solocraft

My Solocraft extensions to TrinityCore 3.3.5a

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Description

These are my extensions to the TrinityCore WoW Server Emulator for WoW version 3.3.5a that are targetted toward soloing (or with a very small party) the group content in WoW like dungeons and raids at the level the content was meant for instead of having to come back and solo when you are 20 levels higher than the content.

The goal is to automatically apply stat buffs, HP regeneration, procs like dispelling target regeneration buffs, and other things to the player based on the instance the player has entered and the size of the party they are in to make up the non-deal party makeup.

Installation

While following the TrinityCore installation guide after you have used git to grab the TrinityCore source but before you run cmake you need to add this git submodule:

git submodule add https://github.com/DavidMacalaster/Solocraft.git src/server/scripts/Custom/Solocraft

then add Solocraft to src/server/scripts/Custom/custom_script_loader.cpp:

// This is where scripts' loading functions should be declared:
void AddSC_solocraft();

// The name of this function should match: void Add${NameOfDirectory}Scripts()
void AddCustomScripts()
{
	AddSC_solocraft();
}

About

My Solocraft extensions to TrinityCore 3.3.5a


Languages

Language:C++ 100.0%