Metin2 Announce in the chat when a guild refuses a war.

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Vanilla

Elite
Elite
Joined
Jan 28, 2019
Messages
839
Credits
1,190
Search for:
Code:
Expand Collapse Copy
void CGuildManager::RefuseWar(DWORD guild_id1, DWORD guild_id2)
In the:
Code:
Expand Collapse Copy
if (g2->GetMasterCharacter())
Add at the end:
Code:
Expand Collapse Copy
        char buf[256];
        snprintf(buf, sizeof(buf), LC_TEXT("A guild %s recusou war contra a guild %s."), g1->GetName(), g2->GetName());
        SendNotice(buf);
It should look like this
qat98Gi.png

In locale_string.txt add this:

I hope this will help you .
 
Back
Top