| Blockland Forums > Modification Help |
| sha1 |
| << < (4/5) > >> |
| cheese6:
--- Quote from: Headcrab Zombie on November 30, 2011, 08:20:55 PM ---Open console Type 'dump' Press tab repeatedly --- End quote --- hot avatar |
| Destiny/Zack0Wack0:
--- Quote from: Ipquarx on November 30, 2011, 04:26:10 PM ---I wonder if there are any other "cryptographic" functions built into blockland. --- End quote --- There's a CRC hash generator, that's about it. (you can recreate hashes in TorqueScript anyway) |
| cheese6:
--- Quote from: Destiny/Zack0Wack0 on December 01, 2011, 07:35:43 PM ---There's a CRC hash generator, that's about it. (you can recreate hashes in TorqueScript anyway) --- End quote --- Or people can just make them lol One second let me make something. --- Code: ---$ExampleCharSet::In = "a b c d e f g h i j k l m n o p q r s t u v w x y z 0 1 2 3 4 5 6 7 8 9 10 { } ;"; $ExampleCharSet::Ot = "f e d m r z q l a b 0 { g 2 8 9 c s u z y x h j 1 3 4 } ; 1 9 3 4 5 7 10 6 p d g"; function decryptcode(%code,%charin,%charout) { for(%i=0;%i<getWordCount(%charin);%i++) %code = strReplace(%code,getWord(%charin,%i),getWord(%charout,%i)); return %code; } function encryptcode(%code,%charout,%charin) { for(%i=0;%i<getWordCount(%charout);%i++) %code = strReplace(%code,getWord(%charout,%i),getWord(%charin,%i)); return %code; } --- End code --- |
| Ipquarx:
--- Quote from: Destiny/Zack0Wack0 on December 01, 2011, 07:35:43 PM ---There's a CRC hash generator, that's about it. (you can recreate hashes in TorqueScript anyway) --- End quote --- Pastebinz? Sounds like it could be of some use. |
| Nexus:
--- Quote from: cheese6 on December 01, 2011, 09:11:51 PM ---Or people can just make them lol One second let me make something. --- Code: ---$ExampleCharSet::In = "10"; --- End code --- --- End quote --- Correct me if I am wrong, but I think that could cause problems. |
| Navigation |
| Message Index |
| Next page |
| Previous page |