Arcade Prehacks

Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1

    Join Date
    Aug 2010
    Posts
    72

    Can Someone Make Or Reccomend A Program To Hack AS3??

    For an example;
    Say I wanted to delete a line of AS from an SWF file. You can't do that kinda thing with a Hex Editor...

    Any ideas??

  2. #2
    Senior Member
    Join Date
    May 2010
    Location
    Pen Island
    Posts
    3,838

    Re: Can Someone Make Or Reccomend A Program To Hack AS3??

    Learn how to hex edit.
    It's pretty much the only way to hack as3.
    There's another program that can hack as3,but it is kept for staff only.

    So hex edit,or say bye-bye to hacking as3.

  3. #3
    Senior Member
    Join Date
    Jun 2010
    Location
    Southern USA
    Posts
    1,221

    Re: Can Someone Make Or Reccomend A Program To Hack AS3??

    Just use nops

    Which in Hex Editing is 02

    Example of a pushshort being changed into pushint

    Code:
    //25 e8 07
    <-- Pushshort

    Code:
    //2d 49
    <-- Pushint

    To make a pushshort a pushint it would be

    Code:
    //2d 49 02
    "We're playing in the same sandbox. Why can't we be nice to each other?"

  4. #4
    Senior Member
    Join Date
    May 2010
    Location
    Pen Island
    Posts
    3,838

    Re: Can Someone Make Or Reccomend A Program To Hack AS3??

    Off-Topic
    And who&#39;s the person who&#39;s the person that taught you how to do that? :L
    Me. :P

    Or pushnullls which are 20
    Nope,nops are the way to go.
    Don't use nulls.

  5. #5

    Join Date
    Aug 2010
    Posts
    72

    Re: Can Someone Make Or Reccomend A Program To Hack AS3??

    So..... To delete a line of code on an SWF file using Hex, I need to change the the Hex Code for them into 02's.
    Say, 98 98 98 98 98 98 98 would be changed to 02 02 02 02 02 02 02

  6. #6
    Senior Member
    Join Date
    May 2010
    Location
    Pen Island
    Posts
    3,838

    Re: Can Someone Make Or Reccomend A Program To Hack AS3??

    Yeah,something like that.

    Nop is No Operation,so it doesn't nothing.

  7. #7

    Join Date
    Aug 2010
    Posts
    72

    Re: Can Someone Make Or Reccomend A Program To Hack AS3??

    Ok, so to summarise ever nop or 02's will cancel out a line of code.
    But, what if I wanted to delete an Actionscript file as part of the SWF file?

  8. #8
    Super Moderator ZuckeR's Avatar
    Join Date
    Feb 2010
    Location
    Germany
    Posts
    1,775

    Re: Can Someone Make Or Reccomend A Program To Hack AS3??

    Quote Originally Posted by UndergroundKnowledge
    Ok, so to summarise ever nop or 02's will cancel out a line of code.
    No it cancels out one byte of code.

    Quote Originally Posted by UndergroundKnowledge
    But, what if I wanted to delete an Actionscript file as part of the SWF file?
    Then the file would probably not work anymore as other parts of the program reference to it so it has to be there.

  9. #9

    Join Date
    Aug 2010
    Posts
    72

    Re: Can Someone Make Or Reccomend A Program To Hack AS3??

    Ok, thanks for all the help guys.
    But if I wanted to, how could I delete an Actionscript File? Because I wanna get rid of that annoying Mochi Ad at the beggining (Is it just me, or are they getting longer?)

  10. #10
    Administrator selectLOL's Avatar
    Join Date
    May 2010
    Posts
    3,290

    Re: Can Someone Make Or Reccomend A Program To Hack AS3??

    You know its illegal to remove ads. I think we dont tell you how to remove them.
    My website: http://selectlol.com/
    My second game: Play it now

    Its easier to find intelligent life in the universum than in the internet.

Page 1 of 2 12 LastLast

Posting Permissions

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