CARVIEW |
Select Language
HTTP/2 200
date: Sat, 11 Oct 2025 20:28:36 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=096872f08d086e5a0304f9f22ee7c596c130c900dfd75ad861980fc57097842ca%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22WvdJsQ1jwyoAEObw1KbZH9yIksA0Uj0H%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d11ad43b1295be-BLR
Eggdrop Unicode spam detector - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ## Script to detect & ban Unicode spam
- ##
- ## Based on the mIRC script by Moros
- ##
- ## Requires Eggdrop 1.8 or greater
- ##
- ## Catches channel spam such as
- ## /!\ ΤHIЅ CHAⲚΝЕᒪ ዘAᏚ MOᏙᎬD ТΟ ΙRϹ.ᏞIᗷЕᖇA.ⅭΗᎪT #ᎻAΜRAᗪIО /︕⧵
- ## ⁄ǃ\ THE ЈΕWS HᎪVE TАΚEN ΟVER FᎡEΕⲚODᎬ, CHATS HАᏙΕ ⅯΟVᎬᎠ TO ΙRⲤ.LIBΕRᎪ.CΗAΤ /!\
- ##
- if {($version < "1.8")} { die "Eggdrop version 1.8+ required for Unicode spam detector!" }
- putlog "Unicode spam detector loaded"
- bind pubm - * unicodespam
- proc unicodespam {nick uhost handle chan args} {
- global botnick
- if {(![isop $botnick $chan])} { putlog "Unicode spam detected but I'm not op'd: $chan $nick $uhost $args"
- return
- }
- if {(![isop $nick $chan]) && (![isvoice $nick $chan])} {
- set count 0
- set text [stripcodes bcru $args]
- while {$count < 9} {
- set x [string index $text $count]
- set a [achr $x]
- if {($a == 9834) || ($a == 9835)} { return }
- if {($a > 255)} {
- putlog "Unicode spam detected: $chan $nick $uhost $args"
- set host [string tolower [lindex [split [getchanhost $nick $chan] @] 1]]
- newchanban $chan "*!*@$host" "Unicode Spam" "Unicode Spam" 1
- putserv "KICK $chan $nick :\00304(\00312<><>«\[\003 Unicode spam detected \00312\]»<><>\00304)"
- set count 10
- }
- incr count
- }
- }
- }
- proc achr {c} {
- set c [string range $c 0 0]
- set v 0
- scan $c %c v
- # return [expr $v]
- return $v
- }
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐✅ Marketplace Glitch ✅ Working ✅ NEVER SEEN...
JavaScript | 1 sec ago | 0.25 KB
-
📝 EASY MONEY GUIDE ✅ Working
JavaScript | 6 sec ago | 0.24 KB
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ 7
JavaScript | 12 sec ago | 0.25 KB
-
📌 ChangeNOW Exploit
JavaScript | 16 sec ago | 0.24 KB
-
⭐⭐⭐Exchange Exploit⭐⭐
Java | 21 sec ago | 0.10 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ 1
JavaScript | 22 sec ago | 0.25 KB
-
📝 EASY MONEY GUIDE ✅ Working
JavaScript | 30 sec ago | 0.24 KB
-
⭐✅ Swapzone Glitch ✅ Working ⭐⭐ E
JavaScript | 32 sec ago | 0.25 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand