Skip to content

Chat Event Fix for .Equal/FV support

Dr. Whom requested to merge quote-chat-fix into master

.Equal should work as expected on FV when using common tongue now as the text provided to the initial parameter should match what is expected. As a side effect when speaking in a language the 'i' in 'in' will be cutoff. This cutoff is reliable and can be handled by the macro author. This missing data provides no actual information either.

Tested via modified EventTest.mac:

	#turbo
	#chat say
	#chat group
	#chat tell
	#chat raid

	Sub Main
	/declare ConCheck int outer 0
	/echo Starting EventTest...
:Loop
	/doevents
	/delay 2
	/goto :Loop
	/return

	Sub Event_Chat(string ChatType,string ChatSender,string ChatText)
	/echo You got a ${ChatType} from ${ChatSender}: ${ChatText}
	/return
Edited by Dr. Whom

Merge request reports