📄 profanity.pl
字号:
# Profanity filter# Words to replace@Profanity = qw/shit fuck/;sub check_profanity { my $p; # Replace with a string of * of equal length foreach $p (@Profanity) { s/$p/'*' x length($p)/gei; }}&output_add(\&check_profanity);# Optionally, filter your OWN output before sending it to the MUD!&userinput_add(\&check_profanity);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -