[Help] Mute Chat

02/11/2018 11:13 aoyamananami#1
anyone know how to edit the chat mute, i want to change it to 15seconds, i dont have idea where it is in the source.
02/11/2018 12:35 かぎつめ#2
Quick answer:

Source\_Interface\WndManager.h:
Code:
Line 256:
	enum { WARNING_MILLISECOND = 700, WARNING_2_MILLISECOND = 1000, SHORTCUT_WARNING_MILLISECOND = 3000, BANNING_MILLISECOND = 180000 };
To:
BANNING_MILLISECOND = 15000 /*ms*/

Code:
	enum { WARNING_MILLISECOND = 700, WARNING_2_MILLISECOND = 1000, SHORTCUT_WARNING_MILLISECOND = 3000, BANNING_MILLISECOND = 15000};
If you change it to less than a minute or for ex. to 100 seconds you may update the stirng in the textclient.txt.txt from minutes to seconds and change the source format (remove the "/ 60").

How you could've done it yourself:
Go ingame, Spamm, Follow the text

[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
02/11/2018 14:05 aoyamananami#3
Quote:
Originally Posted by かぎつめ View Post
Quick answer:

Source\_Interface\WndManager.h:
Code:
Line 256:
	enum { WARNING_MILLISECOND = 700, WARNING_2_MILLISECOND = 1000, SHORTCUT_WARNING_MILLISECOND = 3000, BANNING_MILLISECOND = 180000 };
To:
BANNING_MILLISECOND = 15000 /*ms*/

Code:
	enum { WARNING_MILLISECOND = 700, WARNING_2_MILLISECOND = 1000, SHORTCUT_WARNING_MILLISECOND = 3000, BANNING_MILLISECOND = 15000};
How you could've done it yourself:
Go ingame, Spamm, Follow the text

[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
thanks a lot, it helped me. already 15secs now thank you again