Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Tutorial] Small boss and big boss

Newbie Spellweaver
Joined
Nov 6, 2023
Messages
19
Reaction score
12
Go to Warz.sln:

search:

C++:
BOOL obj_Zombie::OnCreate()

look for:

C++:
BOOL obj_Zombie::OnCreate()
{
    r3d_assert(CreateParams.HeroItemID);
    
    bool HalloweenZombie = false;
    if(CreateParams.HeroItemID > 1000000)
    {
        // special Halloween zombie
        CreateParams.HeroItemID -= 1000000;
        HalloweenZombie = true;
    }

Add below:

C++:
if (CreateParams.HeroItemID == 20207) //Boss Big
    {
        SetScale(r3dPoint3D(3.5f, 3.5f, 3.5f));
    }
 
Back
Top