Cipher mod update:
Mod now supports caps (After spending a while working out a good way to do it managed to get it down to 10 lines :D with code at bottem)
Mod now uses a toggle key bind instead of one for On and Off, it is recommended to CLEAR THE PERVIOUSLY ASSOCIATED KEY BINDS to prevent any issue.
for who have no idea what ime on about
Hey guys, Gambsy (TomTom) has created a neat little script for the clan, and is now also a part of the scripting portion of Krypt. His script is a chat encryption mod. It can be used to have private conversation with anyone else on a server that has the mod (it's clientsided, so if a server doesn't have any such add-on, two or more people with this script can have a private conversation). The controls for the script are as follows:
!cipheron enables ciphering of text.
!cipheroff disables it.
!setkey ## sets your encryption key (if you want to talk to someone else, both of your encryption keys must be the same, or else you will not be able to understand each other); for instance, if I type !setkey 13, anyone who wants to privately converse with me has to do the same. Keys can be set for anywhere from 1 to 26.
You can download the script here. If you don't understand how it works, I can show you in-game sometime.
Also, I'm hosting my Minecraft server, join if you'd like: 24.8.80.12:25565
Link for download is the same
Code for fix
Is it bad i thought it was utter genius when i worked it out :Dfunction IsCap(%Letter)
{
if(strCmp(%letter, strUpr(%letter)))
{
return false;
}
else return true;
}