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!

Self Buff via NPC (5k pa more)

Junior Spellweaver
Joined
Apr 2, 2019
Messages
137
Reaction score
27
Thank you for this, btw how to activate full buffs with no BA?
1711342187704 - Self Buff via NPC (5k pa more) - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Jun 12, 2014
Messages
83
Reaction score
3
check if u have gold
Yes it has Gold but No buffs Recieved T_T
After Compile Success what next step do I need to edit? i was add the comment.ini , default.charclass and also the Ntk files function and condition All school.
there anything should I added too? sorry for my english not good ^_^
1713360876052 - Self Buff via NPC (5k pa more) - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Jan 17, 2024
Messages
24
Reaction score
3
someone can share your GlogicData.cpp
where i place this

C++:
/*self buff via NPC, DevArt22, 2023/03/18 */
    SNPC_SELFBUFF m_sSelfBuffBAOnly = SNPC_SELFBUFF();

    /*self buff via NPC, DevArt22, 2023/03/18 */
    SNPC_SELFBUFF m_sSelfBuffFull[MAX_NPC_SELFBUFF] =
    {
        SNPC_SELFBUFF(),
        SNPC_SELFBUFF(),
        SNPC_SELFBUFF(),
        SNPC_SELFBUFF(),
        SNPC_SELFBUFF(),
    };

    /*self buff via NPC, DevArt22, 2023/03/18 */
    SNPC_SELFBUFF m_sSelfBuffFullNoBA[MAX_NPC_SELFBUFF-1] =
    {
        SNPC_SELFBUFF(),
        SNPC_SELFBUFF(),
        SNPC_SELFBUFF(),
        SNPC_SELFBUFF(),
    };

    /*self buff via NPC, DevArt22, 2023/03/18 */
    WORD    wSelfBuffPayBA = 20;
    WORD    wSelfBuffPayFull = 100;
 
Back
Top