Grapegaming Posted May 7, 2008 Posted May 7, 2008 Yo! First of all, exuce my english! im not that old Now its time for me to do some own easy encrypter (almost like an own language) Ive been searching all over google for no mach! Can someone please help me? Im thinking about creating a verry simple code that will make A to Í and thoes kind of stuff, nothing special. Any1 tried this before? Any1 know how the code would look like? Please?
torels Posted May 7, 2008 Posted May 7, 2008 it's a very stupid example... don't even know if it works byt try it $string = "tour text" $split = StringSplit($string,"") ;creates an array with each letter for $i = 0 to (ubound($split) - 1) switch $split[$i] case "a" $split[$i] = "ò" case "b" ...... EndSwitch Next Some Projects:[list][*]ZIP UDF using no external files[*]iPod Music Transfer [*]iTunes UDF - fully integrate iTunes with au3[*]iTunes info (taskbar player hover)[*]Instant Run - run scripts without saving them before :)[*]Get Tube - YouTube Downloader[*]Lyric Finder 2 - Find Lyrics to any of your song[*]DeskBox - A Desktop Extension Tool[/list]indifference will ruin the world, but in the end... WHO CARES :P---------------http://torels.altervista.org
UQOII Posted May 7, 2008 Posted May 7, 2008 i dont know what you want with the text, the easy way is_StringEncrypt (see help file) if you want the diffcult way then you can use what torels says [center]uqoii.nl[/center]
BrettF Posted May 7, 2008 Posted May 7, 2008 Split then do a string replace on everything. Then to reverse string replace it back... =] Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
torels Posted May 7, 2008 Posted May 7, 2008 (edited) or you could work on hte ascii code eg. $string = "tour text" $split = StringSplit($string,"") ;creates an array with an element per letter $number = 20 for $i = 0 to (UBound($split) - 1) $split[$i] = Chr(Asc($split[$i]) + $number) next Edited May 7, 2008 by torels Some Projects:[list][*]ZIP UDF using no external files[*]iPod Music Transfer [*]iTunes UDF - fully integrate iTunes with au3[*]iTunes info (taskbar player hover)[*]Instant Run - run scripts without saving them before :)[*]Get Tube - YouTube Downloader[*]Lyric Finder 2 - Find Lyrics to any of your song[*]DeskBox - A Desktop Extension Tool[/list]indifference will ruin the world, but in the end... WHO CARES :P---------------http://torels.altervista.org
Grapegaming Posted May 7, 2008 Author Posted May 7, 2008 (edited) Well guys! I did understand some!! But i want do be able to choose what kind of letters that its suppose to be any1? Edited May 7, 2008 by Grapegaming
someone Posted May 7, 2008 Posted May 7, 2008 (edited) Check out a script called Broken KeyboardI think thats what you are looking forEDIT: whoops, its not called Brokey keyboard Edited May 7, 2008 by someone While ProcessExists('Andrews bad day.exe') BlockInput(1) SoundPlay('Music.wav') SoundSetWaveVolume('Louder') WEnd
MikeP Posted May 7, 2008 Posted May 7, 2008 (edited) What he's trying to do is the first encryption method in history .. CAESAR code ^^ (created by Julius Caesar btw) Check for that in Google Edited May 7, 2008 by MikeP
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now