Jump to content

Making an encrypter/own language


Recommended Posts

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?

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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