Simple protection of published game. Part Two.

4
  • 38 favourites

Index

Attached Files

The following files have been attached to this tutorial:

.capx

the-sitelock.capx

Download now 177.78 KB

Stats

8,095 visits, 18,399 views

Tools

Translations

This tutorial hasn't been translated.

License

This tutorial is licensed under CC BY 4.0. Please refer to the license text if you wish to reuse, share or remix the content contained within this tutorial.

Gentelman start your Encrypters

If you remember we selected three web pages to upload our game

- scirra.com

- dropboxusercontent.com

- kongregate.com

All you need to do is paste this names into MD5 Encryption and copy the encrypted string you get

You should get something like this

- scirra.com - a396d90e0a910166cd2f1c7cd2df1496

- dropboxusercontent.com - 7673f261ec1083c81337407ca84957a6

- kongregate.com - 4cfac6d83b21e64dcba243dc59271a0d

To make it nice and clean we are going to add 3 more Local text variables

tmpS = "a396d90e0a910166cd2f1c7cd2df1496"

tmpD = "7673f261ec1083c81337407ca84957a6"

tmpK = "4cfac6d83b21e64dcba243dc59271a0d"

and we need to change our Compare conditions to

That's it. If you don't like "OR" condition" you can use logical OR |

System: tmp = tmpS | tmp = tmpD | tmp = tmpK = 1

Let's have a look into a source code one more time, This time I won't highlight anything.

Looks good for me, just a bunch of a meaningless mess!

  • 2 Comments

  • Order by
Want to leave a comment? Login or Register an account!