Jump to content
  • 0

Request Script That Can Block Rude Words


Question

Posted

Olaaaa...
Did anyone here have some script or anything that can block our player nor staff from being rude in talking and saying bad word?..? /ok  /ok

12 answers to this question

Recommended Posts

  • 1
Posted

+1 to this tread anyone? for addtional info can mute players 5mins but it will msg you warnings and if you still doing it 3times will mute you 5mins.

 

prontera,150,180,5	script	restricted_manner	-1,{
OnInit:
	setarray .@bad_word$, "noob", "coward"; // add as your content lol
	.@size_b = getarraysize( .@bad_word$ );
	for( ; .@i < .@size_b; .@i++ )
		defpattern 1, "([^:]+):.*\\s"+ .@bad_word$[.@i] +".$", "warning";
	activatepset 1;
	end;
warning:
	@warning++;
	if ( @warning == 3 ) {
		@warning = 0;
		deltimer strnpcinfo(0) +"::OnDelay";
		atcommand "@mute 5 "+ strcharinfo(0);
	}
	else {
		deltimer strnpcinfo(0) +"::OnDelay";
		addtimer 300000, strnpcinfo(0) +"::OnDelay";
		message strcharinfo(0), "Be careful with your language... Warning "+ @warning +"/3";
	}
	end;
OnDelay:
	@warning = 0;
	end;
}

But it works only in the range of the hidden npc.

  • Upvote 2
Posted

+1 to this tread anyone? for addtional info can mute players 5mins but it will msg you warnings and if you still doing it 3times will mute you 5mins.

Posted

SlashGeeGee

I already put a new word in manner.txt and i do compile it...

But when in game im trying to say F**K and nothing happen... Why?..?

Did i need to enable something or do something more?..?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...