GameMakerHelpBlog

Sunday, January 6, 2008

Encryption

Hi

The purpose of this script is to encrypt or dencrypt a string. It is very simple and useable by novice GameMaker Users. I am still finishing on the dencryption which may come in a little while



[code]

{
str = argument0
key = argument1
str2 = str
str2=ord(str2)
str2*=key*2
show_message(string(str2))
}

[/code]

Labels:

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home