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!

HELP ] SWORD TRIAL COLOR And Chat Sound Beeps

Initiate Mage
Joined
Feb 18, 2015
Messages
4
Reaction score
0
Hello guys, I would like to know if anyone has the SWORD TRIAL COLOR source code availableTaking advantage of this same topic, I would like a help, as I do to activate those beeps when we are typing in the game chat.an example of this is FGUNZ, if you notice when we type in the game chat, several beeps sounds, I would like to know where I activate this, if it is in the source, or if I need to add it in the xml / sounds files
 
Initiate Mage
Joined
Feb 18, 2015
Messages
4
Reaction score
0
I searched the entire font and found nothing related to SWORD TRIAL COLOR in the FGUNZ font.I believe there are the chat beeps, but I don't know where it is.
 
Last edited:
Upvote 0
I'm retired, I'm already
Banned
Joined
Oct 3, 2011
Messages
832
Reaction score
155
Sound Chat.

Code:
bool ZChat::Input(char* szMsg)
{
	if( 0 == strlen(szMsg) ) {
		return false;
	}

	GunzState state = ZApplication::GetGameInterface()->GetState();
	if ((timeGetTime() - m_nLastInputTime) < ZCHAT_CHAT_DELAY)
	{
		ZGetSoundEngine()->PlaySound("if_error");
		return false;
	}....
 
Upvote 0
Newbie Spellweaver
Joined
Oct 8, 2020
Messages
68
Reaction score
2
Sound Chat.

Code:
bool ZChat::Input(char* szMsg)
{
    if( 0 == strlen(szMsg) ) {
        return false;
    }

    GunzState state = ZApplication::GetGameInterface()->GetState();
    if ((timeGetTime() - m_nLastInputTime) < ZCHAT_CHAT_DELAY)
    {
        ZGetSoundEngine()->PlaySound("if_error");
        return false;
    }....
I already have the code added, and the message cigarette does not sound
 
Upvote 0
Newbie Spellweaver
Joined
Oct 8, 2020
Messages
68
Reaction score
2
You need to add the in the game sounds folder.

I already checked everything and it's fine but still it doesn't sound friend, could you pass me the code to see if it is well implemented?



resolved, sorry for the annoyance xd
 
Upvote 0
Back
Top