Register for your free account! | Forgot your password?

Go Back   elitepvpers > General Gaming > General Gaming Discussion
You last visited: Today at 13:32

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Robokill - Full Version for FREE, using WPE Pro

Discussion on Robokill - Full Version for FREE, using WPE Pro within the General Gaming Discussion forum part of the General Gaming category.

Closed Thread
 
Old 11/08/2009, 15:40   #226
 
elite*gold: 0
Join Date: Nov 2007
Posts: 1
Received Thanks: 0
anyone got this to work on windows 7? i got it to work in xp just fine, but not in the windows 7 machine.
mrgodai is offline  
Old 11/11/2009, 10:15   #227
 
elite*gold: 0
Join Date: Oct 2009
Posts: 1
Received Thanks: 0
The activation mechanism seems to have changed since they have now implemented episode 4.

(At least the loader.swf from some release earlier in the thread is not working with the new 8MB swf-file. It worked fine before with the 3 Episode version, though.)

EDIT: Had a look at the Actionscript of the Game and compared it to the unextended version. They added another randomized verification string to the two parameters the game gets from .

Here is the new function calling SafeRequest:

Quote:
public static function doVerify(param1:String, param2:Function) : SafeRequest
{
verifyKey = "";
var _loc_3:int = 0;
while (_loc_3 < 8)
{

verifyKey = verifyKey + ["a", "b", "c", "d", "e"][Random.randInt(0, 4)];
_loc_3++;
}
trace(verifyKey);
return new SafeRequest("http://www.rocksolidarcade.com/verify/Robokill/" + param1 + "/" + verifyKey + "/", param2);
}// end function
I hope it helps.
czevak is offline  
Old 11/12/2009, 02:11   #228
 
elite*gold: 0
Join Date: Nov 2009
Posts: 2
Received Thanks: 0
It doesn't work for me, saying that I should purchase before I active the game.
paodan888 is offline  
Old 11/12/2009, 21:57   #229
 
elite*gold: 0
Join Date: Nov 2009
Posts: 1
Received Thanks: 0
And now new checking function
Quote:
public function verifycheck()
{
trace("data: " + verify.data);
if (verify.data == "Valid " + verifyKey)
{
PremiumContentNotifier.registered = true;
PremiumContentNotifier.registeredEmail = verifyEmail;
PremiumContentNotifier.save();
if (active)
{
active = false;
PremiumContentSuccess.success = true;
reglayer.push(PremiumContentSuccess.create, true);
}
}
else
{
PremiumContentSuccess.success = false;
reglayer.push(PremiumContentSuccess.create);
PremiumContentNotifier.registered = false;
}
applyToNotifiers();
return;
}// end function


public function checkValid() : void
{
checking = 0;
if (loadRequest)
{
var _loc_1:* = "Valid " + PremiumContentPanel.verifyKey;
loadRequest.data = "Valid " + PremiumContentPanel.verifyKey;
if (_loc_1)
{
registered = true;
}
else
{
StoreObject.storeValue("regemail", "");
registered = false;
}
}
return;
}// end function
Duplex_ is offline  
Old 11/13/2009, 02:50   #230
 
elite*gold: 0
Join Date: Nov 2009
Posts: 2
Received Thanks: 0
Quote:
Originally Posted by Duplex_ View Post
And now new checking function
it means the old way doesn't work? if so what should i do?
paodan888 is offline  
Old 11/15/2009, 06:16   #231
 
elite*gold: 0
Join Date: Nov 2009
Posts: 1
Received Thanks: 0
i need help on what pages you should be at when you do certain steps.
dupps is offline  
Old 11/30/2009, 11:56   #232
 
elite*gold: 0
Join Date: Nov 2008
Posts: 1
Received Thanks: 5
For new version, fresh from Rocksolid, use following method (I'm too lazy to write it for different emails, so use "TEST" (as is, uppercased) as a email):

Everything same as in title post, but:

Search string:
54 45 53 54 20 68 61 73 20 6E 6F 74 20 70 75 72 63 68 61 73 65 64 20 74 68 65 20 67 61 6D 65 21 20

Replace string (starting with offset 0):
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 56 61 6C 69 64 20

Worked for me.
Koshiku is offline  
Thanks
5 Users
Old 12/23/2009, 07:45   #233
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1
Received Thanks: 1
Smile A small tip to crack robokill & robokill 2

First of all, You need these stuff
1. cws2fws.exe
(This stuff make a compressed CWS to a uncompressed FWS, so you can edit P-code. You can not edit P-code of the compressed CWS.)
2. Sothink SWF Decompiler
(And your knowledge to handle this)
3. Hex Editor
( Ez to hex )

Now you must make the robokill & robokill2 runnable in you local browser(not in the rocksolidarcade webpage)

preload::CustomPreloader:nEnterFrame(event:Event )
Code:
if (_loc_3.split(".")[_loc_3.split(".").length - 2] == "rocksolidarcade")
{
    demo = false;
}
else
{
    demo = true;
}
This is the browser's site checking code. if 'demo' is true, START button invokes the rocksolidarcade web page.
(this part is same with the 'robokill 2' )

change the code as like the following one
Code:
if (_loc_3.split(".")[_loc_3.split(".").length - 2] == "rocksolidarcade")
{
    demo = false;
}
else
{
    demo = false;
}
Very simple

Now There is the PremiumContent checking code
PremiumContent::PremiumContentPanel::verifycheck()
Code:
if (verify.data == "Valid " + verifyKey)
{
    PremiumContentNotifier.registered = true;
    PremiumContentNotifier.registeredEmail = verifyEmail;
    PremiumContentNotifier.save();
    if (active)
    {
        active = false;
        PremiumContentSuccess.success = true;
        reglayer.push(PremiumContentSuccess.create, true);
    }
}
else
{
    PremiumContentSuccess.success = false;
    reglayer.push(PremiumContentSuccess.create);
    PremiumContentNotifier.registered = false;
}
The important P-Code of the 'if (verify.data == "Valid " + verifyKey)' is the following one. (this part is same with the 'robokill 2' )
Code:
//2c 96 46 
_as3_pushstring "Valid "
//60 ce 2b 
_as3_getlex verifyKey
//a0 
_as3_add 
//14 3e 00 00 
_as3_ifne offset: 62
That's it!
make the jump offset of the _as3_ifne to zero!
Code:
14 3e 00 00
to
Code:
14 00 00 00
Even if the registeration failed, it always make it registered.

That's all. Now execute the modified SWF file then register.
Input any e-mail address and wait a few seconds, then play the full contents.
nopbakiller is offline  
Thanks
1 User
Old 12/26/2009, 20:03   #234
 
elite*gold: 0
Join Date: Nov 2008
Posts: 9
Received Thanks: 3
Remember there are too much lazy people who will ask questions with problems etc.
So if you can make something like offline full version will be good to everyone.
aviserin is offline  
Old 12/29/2009, 02:26   #235
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1
Received Thanks: 0
I found it!

After a few hours of search I found a full version you can just download.

try out this place

or you can go on and found it by your self.
xXOlinoXx is offline  
Old 12/29/2009, 06:16   #236
 
elite*gold: 0
Join Date: Nov 2008
Posts: 9
Received Thanks: 3
Robokill 2 !

Ok guys, i made the new Robokill 2 full working version (for free), just open it in your browser and type anything in email area.

Here is link:
or

Pass: niresiva

Have Fun.

PS. Anyway thanks to @nopbakiller for guide.
aviserin is offline  
Old 12/29/2009, 20:38   #237
 
elite*gold: 0
Join Date: Nov 2008
Posts: 2
Received Thanks: 0
Doesn't work. Nothing happens when i click 'Submit'.
hrrrrr is offline  
Old 12/30/2009, 01:58   #238
 
elite*gold: 0
Join Date: Nov 2008
Posts: 9
Received Thanks: 3
Quote:
Originally Posted by hrrrrr View Post
Doesn't work. Nothing happens when i click 'Submit'.
Try in Firefox. (IE8 doesn't work)
aviserin is offline  
Thanks
1 User
Old 12/30/2009, 14:04   #239
 
elite*gold: 0
Join Date: Nov 2008
Posts: 2
Received Thanks: 0
Didn't work in Firefox either so I downloaded Sothink SWF Decompiler and it works with that.
hrrrrr is offline  
Old 12/31/2009, 14:16   #240
 
elite*gold: 0
Join Date: Nov 2008
Posts: 9
Received Thanks: 3
New solution install SWF Opener and open robokill2.swf file should work now...
aviserin is offline  
Closed Thread


Similar Threads Similar Threads
Robokill - Unlock full version free, an easier way.
11/25/2010 - General Gaming Discussion - 13 Replies
Before you begin this tutorial, visit this tutorial, go over a basic runthrough of the steps involved in unlocking Robokill This response below is a response to ^that^ thread, so if the wording seems a little off, then thats why. ================================================= ======== I have a WPE filter file that will allow anyone who uses it (and uses my email address) to be able to bypass most of the hassle of the entire unlock process. If you instant message me on AIM (my s/n...



All times are GMT +2. The time now is 13:32.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.