Quote:
Originally Posted by .Light
This is taking my files and editing the disclosure I specifically said in it not to edit the files and re-post without permission. Again your post will be deleted.
|
Hello!? I didn't modify the source code...
Just make something like:
Code:
string ALLTEXT = @".Light's Control Panel Disclosure Statement\n1. You will not release this anywhere else without my permission.\n2. You will not take credit for this project.\n3. You will give thanks if you have downloaded it.\n4. You will report bugs to me through MSN or through Epvp Private Messaging System.\n5. You will not edit this source without permission.\nThank you very much,\n\n.Light\nP.S. Thanks a ton to Justin and walmartboi.";
string Text = "";
for(int c = 0; c < ALLTEXT.Length; c++)
Text += (char)((byte)ALLTEXT[c] ^ 215);
System.IO.AppendAllText("output.txt", Text);
Then you go to that output.txt, copy everything and put it in a variable like:
Code:
string myEncryptedText = @"-the text here";
string Text = "";
for(int c = 0; c < myEncryptedText.Length; c++)
Text += (char)((byte)myEncryptedText[c] ^ 215);
textBox1.Text = Text;
This way people won't be able to edit your thing without having the source.