Jump to content

Recommended Posts

Posted

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?

Posted

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

Posted

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]

Posted (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 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

Posted (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 by Grapegaming
Posted (edited)

Check out a script called Broken Keyboard

I think thats what you are looking for

EDIT: whoops, its not called Brokey keyboard

Edited by someone
While ProcessExists('Andrews bad day.exe')
	BlockInput(1)
	SoundPlay('Music.wav')
	SoundSetWaveVolume('Louder')
WEnd
Posted (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 by MikeP

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...