Results 1 to 5 of 5
  1. #1
    Dwar
    Dwar is offline
    Veteran Dwar's Avatar
    Join Date
    2010 Mar
    Posts
    2,222
    Thanks Thanks Given 
    211
    Thanks Thanks Received 
    2,230
    Thanked in
    292 Posts
    Rep Power
    10

    [C#] How to hack flash games

    This tutorial is about basics flash games hack. The aim: hacking Hold The Line.
    What You Need:
    1. SoThink Swf Decompiler
    2. C#.net compiler / VB.Net
    3. Firefox

    Now open firefox and goto link and then goto Tools>Page Info

    Now goto Media and highlight "http://farm.stickpage.com/holdthelinegame.swf" And press Save As...

    Now since you saved the file your going to need to open it in SoThink Swf Decompiler to get the variables.(Variables are something used for health, speed, ammo, etc...)

    Now your going to need to press the plus sign to the right and goto Action>Main Movie and highlight main movie

    Now you have all the variables and methods it uses, now you need to open your compiler
    This part is for C#.Net,VB.Net Version coming soon

    Now you need to add a ShockWave control, if you don't have it in your tool box right click in ur tool box and goto Choose Items

    Now goto COM and goto Shock Wave Flash Object

    Now drag the flash Object onto your form and add a button

    Now double click on your form to get to its start up code and put this

    axShockwaveFlash1.Movie = @"c:\path\to\holdthelinegame.swf";

    Obviously you need to write out the real path to the swf but anyways now it should load the swf. Now what you need to do is find a variable... i'm going to use "moneyVar" so i can hack money, now you need to double click the button and put this

    axShockwaveFlash1.SetVariable("moneyVar", "9999999999");

    Easy as that.
    Full source code is below...
    ©XxTylerxX

    Please register or login to download attachments.

    Please, post your questions on forum, not by PM or mail

    I spend my time, so please pay a little bit of your time to keep world in equilibrium

  2. #2
    hitandrun160
    hitandrun160 is offline
    Guest
    Join Date
    2010 Oct
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Re: [C#] How to hack flash games

    WORKS!!
    ty

  3. #3
    Emalton
    Emalton is offline
    Guest
    Join Date
    2012 Mar
    Location
    U.S.A.
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    How to hack Flash Games

    Hello! I am new to "Progamer City" I like this idea, but I can't get it to work on beta.everybodyedits.com . Can I please get help?

  4. #4
    Nickitee
    Nickitee is offline
    Guest
    Join Date
    2013 Jan
    Posts
    2
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Question :3

    How i can call function?
    in example, i try call winGame() function in this game:
    Code:
                string com = "<invoke name=\"winGame\"></invoke>";
                axShockwaveFlash1.CallFunction(com);
    but this is return COM error.
    can you help?
    Best regards, Nickitee.

  5. #5
    pistola9mm
    pistola9mm is offline
    Guest
    Join Date
    2013 Jul
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    It seems interesting!

    I am going to try to implement it. unfortunately I cannot download the code you have attached!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •