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!

[Source Edit] [Small] [Rebirth system]

Junior Spellweaver
Joined
Dec 28, 2015
Messages
169
Reaction score
0
Oke its done :)

In Mover.cpp Search for m_nCampusPoint = m_nCampusPoint + 1;

And under it add following:

Code:
CItemElem itemelem;
        itemelem.m_nItemNum = 0;
        BYTE nID;
        if(m_nCampusPoint == 1)
        {
            itemelem.m_nItemNum = 50; //Amount
            itemelem.m_dwItemId = II_CHP_RED; //Item
            ( ( CUser*)this)->CreateItem( &itemelem, &nID ); //Create the Item with Amount
        }else if(m_nCampusPoint == 2)
        {
            itemelem.m_nItemNum = 100;
            itemelem.m_dwItemId = II_CHP_RED;
            ( ( CUser*)this)->CreateItem( &itemelem, &nID );
        }else if (m_nCampusPoint == 3)
        {
            itemelem.m_nItemNum = 150;
            itemelem.m_dwItemId = II_CHP_RED;
            ( ( CUser*)this)->CreateItem( &itemelem, &nID );
        }else if (m_nCampusPoint == 4)
        {
            itemelem.m_nItemNum = 200;
            itemelem.m_dwItemId = II_CHP_RED;
            ( ( CUser*)this)->CreateItem( &itemelem, &nID );
        }else if (m_nCampusPoint == 5)
        {
            itemelem.m_nItemNum = 250;
            itemelem.m_dwItemId = II_CHP_RED;
            ( ( CUser*)this)->CreateItem( &itemelem, &nID );
        }

Have fun :)

Another Question sir, how can i put emblem beside the heroes when rebirthing ? example the Letter H beside the character name ? how can i put something like that ? thanks
 
One word! Im Fawkin Pro!
Loyal Member
Joined
Jul 1, 2010
Messages
1,254
Reaction score
359
Another Question sir, how can i put emblem beside the heroes when rebirthing ? example the Letter H beside the character name ? how can i put something like that ? thanks

Look on the first post.. The part on what you put in WndField.cpp is your answer :)
But it does only load when you log out and in.. Gonna try to fix that so that it updates when you do a rebirth.
 
Junior Spellweaver
Joined
Dec 28, 2015
Messages
169
Reaction score
0
ow i see thanks =) sorry still new in here



Another problem the stats doesnt stay , when i reach lvl 121 Hero its restats :3 please help
 
Back
Top