• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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