Private Adept
Joined: 10 Jan 2002 Posts: 264 Location: USA
|
Posted: Wed Sep 07, 2005 11:30 pm
2 Scripts - 1337(Leet) Talk and Code Talk |
1st is Leet talk, useage "leet <channel> <text>"
Code: |
#CLASS {LeetTalk}
#ALIAS leet {leet_message = %replace(%subchar( "%-2", "aelostAELST%", "43105743157"),"W","\/\/");%1 @leet_message}
#VAR leet_message {} {}
#CLASS 0
|
Next is to talk in code, useage: schat <channel> <text>
Code: |
#CLASS {CodeTalk}
#ALIAS schat {secret_message = %subchar( "%-2", ":,.\/%!#$^&*9876543210ZYXWVUTSRQPONMLKJIHGFEDCBAzyxwvutsrqponmlkjihgfedcba","abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789:,.\/%!#$^&*");%1 DecodeAtOwnRisk: @secret_message}
#VAR secret_message {} {}
#CLASS 0
|
Give this trigger to anyone you want to be able to decode the message:
Code: |
#CLASS {CodeTalk|Decode}
#TRIGGER {DecodeAtOwnRisk: (*)} {decoded_message = %subchar( "%1", "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789:,.\/%!#$^&*",":,.\/%!#$^&*9876543210ZYXWVUTSRQPONMLKJIHGFEDCBAzyxwvutsrqponmlkjihgfedcba");#SHOW DecodedMessage: ~"@decoded_message~"}
#VAR decoded_message {} {}
#CLASS 0
|
Have fun annoying your friends :P |
|