Author Topic: Clear Event Log  (Read 4422 times)

Exergist

  • Global Moderator
  • Sr. Member
  • *****
  • Posts: 405
  • Ride the lightning
Clear Event Log
« on: April 24, 2018, 12:34:05 PM »
The method ClearLog() for clearing VoiceAttack's event log was introduced in v1.7.0.2. You can use the functionality in a VoiceAttack command by simply adding an inline function to your command and inserting the following (this is for C#):

Code: [Select]
public class VAInline
{
public void main()
{
VA.ClearLog();
}
}

You don't need to have any reference assemblies.

Cheers! :)