Home API Manuals About Forum
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

AddJournalIgnore

Ignore incoming messages, which equals or Contains “Str” param.

NB: Not actual for connected clients.

Params:

Str :


DWS\Pascal Script:

procedure AddJournalIgnore(Str : String);

DWS\Pascal Script Example:

begin
	//Init here

	// Ignore some messages for journal flood prevention
	AddJournalIgnore( 'for mercenary points' );
	AddJournalIgnore( 'pour the completed potion into a bottle' ); 
	AddJournalIgnore( 'toss the failed mixture from the mortar' ); 
	AddJournalIgnore( ' в ярмарочной лотерее!' );
end;

Python:

def AddJournalIgnore(Str)