Site locks request
-migrated-
Site locks request Posted on: 04/22/2012 7:24am
Quote Post
Hi all, it is possible to request some games to be playble offline?
Most i can do it myself, but since i'm just at the start of hacking and reading code i wasn't able with some games.
So i wonder if it is possible to requeste something like that.
Re: Site locks request Posted on: 04/22/2012 10:34am
Quote Post
( ͡° ͜ʖ ͡°)
Link?



Flash .sol locations
Chrome: \AppData\Local\Google\Chrome\User Data\Default\Pepper Data\Shockwave Flash\WritableRoot\#SharedObjects\
Normal: \AppData\Roaming\Macromedia\Flash Player\#SharedObjects

Re: Site locks request Posted on: 04/22/2012 4:16pm
Quote Post
I was just wondering if were possible requests like these, since on other flash-hack sites, sitelocked games can't be touched.
I'm asking just for the unlocked flash game version playable offline, no need other hacks.

Waterfall 3 :
http://armorgames.com/play/12537/waterfalls-3

Top Defense (would be great if also the preloading add-ons would be deleted) :
http://armorgames.com/play/11959/top-defense

Monster Bark
(actuallly this one is weird! I can run it under the decompiler, but it will not load nor display the play button with browser) :
http://armorgames.com/play/12541/monster-bark

Ge.ne.sis
(unreadeable code, the game is downloadable after loading from the bottom right download-button, same issue of Monster Bark) :
http://www.kongregate.com/games/fairypoet/ge-ne-sis

Well, with these four i tried hard to unlock and find the right Hex code, but i failed bad.
If someone can do it, i kindly ask to post the hex code changed so i'll be able to read the normal code and learn.
Thanks.
Re: Site locks request Posted on: 04/22/2012 6:07pm
Quote Post
Here's a zip file containing all games with sitelock removed from them.
http://www.2shared.com/file/I5BAbala/Mago-Merlino.html

Waterfall 3 site lock = domain name check. Here is the AOB I used to remove it.
Code: [Select]
60 81 01 46 99 08 00 96 12 11 00 00
60 81 01 46 99 08 00 96 10 11 00 00

Monster Bark and Top Defense contained no site lock code once dumped from memory.

ge.ne.sis site lock = domain name check. Here is the AOB I used to remove it.
Code: [Select]
49 12 9d 02 00 0f 00 96 06 00 04 01 08 0b 05 00
49 12 9d 02 00 0f 00 96 06 00 04 01 08 0b 05 01

in total i had to change 2 bytes..   (broken image removed)
Re: Site locks request Posted on: 04/22/2012 7:19pm
Quote Post
Wow, you are awesome... so fast! Thank you so much!
Now i know why i wasn't able. I searched for some if-else function, normally i change the hexe code 11/12(true/false) or 13/14(equal/not equal).
I don't know what is the meaning for the OP code of 01 and 10 that you changed. I'll search and learn.

P.S.
Do you know what could cause Monster Bark and Top Defense to don't run under my Flash Player? I knew they could not be sitelocked because they run under Sothink, i posted just in case. But why i cannot play them out of the decompiler? This is strange, ever happened to someone? Have a clue?

Edit :
This is the message Top Defense shows (after the add-ons) when i try to load it :
http://img210.imageshack.us/img210/5033/topdefenselock.jpg
Re: Site locks request Posted on: 04/22/2012 8:24pm
Quote Post
hmmm... i didn't see that at all, but i am loading the game using adobe's standalone flash player
Re: Site locks request Posted on: 04/22/2012 8:57pm
Quote Post
Well, in the Flash Player it does work, but it stay on black screen for long time before start it.
I really wish i know why this is happening.
Anyway Monster Bark won't play in the Standalone Flash player but still load in the decompiler.
There is some kind of code wich the decompiler or sometimes the standalone FP could overcome?
Something like contacting an url? Indeed Top Defense seems to load something from internet in the preloader. Infact the message says something about "clickable links from this url" (my host i guess).
Any solution is welcome.
Edit : same message using Internet Explorer.
Re: Site locks request Posted on: 04/22/2012 9:14pm
Quote Post
i'll check it out
Re: Site locks request Posted on: 04/22/2012 9:42pm
Quote Post
Well, thanks for your time, don't check anymore. Your version of Top Defense (without ads) starts directly and works perfect.
Where did you get it? There are no ads. Did you change it?

Edit : Waterfall 3 won't load, you click on the Play button and the screen remain empty. It's the same issue i had. I managed to remove the splash screen of "locked site" putting on false the if part of the following code, but still won't start. Reading the code (i'm bad i could be wrong), seems there are annidate functions.
Function Start in the action script Main :
Code: [Select]
  if (Config.LOCKED && !Locker.checkURLLock())
            {
                gotoAndStop(2);
                Locker.showLockScreen();
                return;
            }
            Ad.remove();
            gotoAndStop(3);
            game.start();
            return;
        }
Now if you force to go in the else branch it will run the Ad.remove function, wich has another check inside of it about Armorgames (if i read well) and in its else branch has another check Ad.isallowed. So all of this made me an headhache and i asked here (broken image removed)
Re: Site locks request Posted on: 06/01/2012 3:54am
Quote Post
hmm, just nop out everything except for game.start() and the return and that would probably work