Page 1 of 7 123 ... LastLast
Results 1 to 15 of 97
  1. #1
    Cyeclops's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Australia
    Posts
    595
    Reputation
    49
    Thanks
    440
    My Mood
    Devilish

    17.2 Hack Source -Started-

    17.2 - AssembleeGameClient1381438077

    Just a quick starter for people, add what you need to the thread (Please No SS Debuffs).

    Try not to release a client too quickly... let the lazy and the leeches feel some pain first, and also suck eggs hexers lol

    *PRODUCTION*
    ~/rabcasm/client-1/_-Rr/_-0D3.class.asasm

    Line: 393
    on new line: below "pushtrue"

    Code:
          ;-------------- PRODUCTION ---------
          returnvalue
          ;-----------------------------------
    Works the same as placing "pop / pushtrue" and the end of this trait.

    *NUMERICAL HP / MP*
    ~/rabcasm/client-1/com/company/assembleegameclient/ui/StatusBar.class.asasm

    Line: 1529
    On new line:

    Code:
          pop
          pushbyte            1

    *DEBUFFS*
    ~/rabcasm/client-1/com/company/assembleegameclient/objects/GameObject.class.asasm

    After each "pushfalse"

    Code:
          returnvalue
    Search the following:

    Blind = isBlind
    Drunk = isDrunk
    Hallucinating = "_-1hW"
    Confused = "_-1EJ"

    *NO ALLY PROJECTILES*
    ~/rabcasm/client-1/com/company/assembleegameclient/objects/Projectile.class.asasm

    After the first 'pushscope' of the 'draw' method and also the 'drawShadow' method
    Find unkownVar in trait slots below "bulletType"


    Code:
          ;--------- No Ally Projectiles ----------
          #set unknowVar "_-1Rp"   
          getlex              QName(PackageNamespace(""), "map_")
          getproperty         QName(PackageNamespace(""), "player_")  
          getproperty         QName(PackageNamespace(""), "objectId_")  
          getlocal0
          getproperty         QName(PackageNamespace(""), "ownerId_")  
          ifeq                L500
          getlocal0       getproperty   
          QName(PackageNamespace(""), $"unknowVar" )  
          iffalse             L500  
          returnvoid  
    
    L500:
    *AUTONEXUS*
    ~/rabcasm/client-1/com/company/assembleegameclient/objects/Player.class.asasm

    End of the "update" trait
    Line: 4836
    On new line:

    Code:
      ;-------------------
      ; AUTO NEXUS    
      ;-------------------
         #set nexusfunction "escape"
         #set maxhealth   "_-0Hr"
         #set currenthealth    "_-1SZ"
    
                pop
                getlocal0
                getlex              QName(PackageNamespace(""), "map_")
                getproperty         QName(PackageNamespace(""), "player_")
                ifne                END
                getlex              QName(PackageNamespace(""), "map_")
                getproperty         QName(PackageNamespace(""), "name_")
                pushstring            "Nexus"
                ifeq                END
                getlex                QName(PackageNamespace(""), $"maxhealth")
                getlex                QName(PackageNamespace(""), $"currenthealth")
                convert_d
                divide
                pushdouble          .30
                ifgt                END
                getlex              QName(PackageNamespace(""), "map_")
                getproperty         QName(PackageNamespace(""), "gs_")
                getproperty         QName(PackageNamespace(""), "gsc_")
                callpropvoid        QName(PackageNamespace(""), $"nexusfunction"), 0
            END:
                pushtrue      
      ;-------------------------------------------------------------

    *FRAMERATE 60FPS*
    ~/rabcasm/client-1/WebMain.class.asasm

    Line: 232
    On new line:

    Code:
    ;-------------------------
    ; FPSSETTING
    ;-------------------------
          getlex              QName(PackageNamespace(""), "stage")
          pushdouble          60
          setproperty         QName(PackageNamespace(""), "frameRate")
    ;-------------------------
    Not sure if this is needed now with the new HW Accel.


    *SPAM FILTER*
    ~/rabcasm/client-1/_-NI/_-uY.class.asasm

    Line: 162
    Change "localcount" to 6

    Line: 179
    On new line:

    Code:
          ;--------------------- SPAM FILTER -------------------
          getlocal1
          getproperty QName(PackageNamespace("", "_-NI:_-uY/instance/execute"), "text_")
          callproperty QName(Namespace("https://adobe.com/AS3/2006/builtin"), "toLowerCase"), 0
          coerce_s
          setlocal 5
    
          getlocal 5
          pushstring "ADD TEXT TO FILTER HERE" 
          callproperty	 QName(Namespace("https://adobe.com/AS3/2006/builtin"), "search"), 1
          pushint 0
          ifge SPAM
    
          ;--------- EXAMPLE --------
          getlocal 5
          pushstring "pots.co" 
          callproperty	 QName(Namespace("https://adobe.com/AS3/2006/builtin"), "search"), 1
          pushint 0
          ifge SPAM
          ;---------------------------
    
          jump CONTINUE
    
          SPAM:
          returnvoid
    
          CONTINUE:
          ;--------------------------------------------------

    *FULL SCREEN V2*

    No Scale
    ~/rabcasm/client-1/WebMain.class.asasm

    Line: 215

    Replace "EXACT_FIT" with "NO_SCALE"

    --Fix--
    ~/rabcasm/client-1/com/company/assembleegameclient/engine3d/Face3D.class.asasm

    Line: 904
    on new line:

    Code:
          ;-------------- FIX ------------
          pop
          pushfalse
          ;-------------------------------
    Changing the pushtrue to pushfalse seems to work fine also.

    Increase View
    ~/rabcasm/client-1/com/company/assembleegameclient/map/_-17X.class.asasm

    Line: 1129
    On new line:

    Code:
          ;------------------------- INCREASE VIEW ---------------------------
          ;------------------ Change this value to 8 or more -----------------
          pushbyte            8
          ;-------------------------------------------------------------------
    Zoom Out - HW accel. ON
    ~/Desktop/rabcasm/client-1/_-01/_-V3.class.asasm

    Line: 523
    Change 600 to 1100 or greater

    Line: 571
    Change 600 to 1100 or greater

    Remove Black
    ~/rabcasm/client-1/com/company/util/_-Bq.class.asasm

    Line: 262
    On new line:

    Code:
         ;----------- REMOVE BLACK -----------
         pushnull
         returnvalue
         ;------------------------------------
    Side Bar + Text Box
    ~/rabcasm/client-1/com/company/assembleegameclient/game/GameSprite.class.asasm

    Search for trait "onEnterFrame"
    ~Line: 3338
    After first "pushscope"

    Code:
          ;--------------------- SIDE BAR -----------------------------
          getlocal0
          getproperty         QName(PackageNamespace(""), "hudView")
          pushshort           200
          getlex              QName(PackageNamespace(""), "stage")
          getproperty         QName(PackageNamespace(""), "stageWidth")
          convert_d
          pushbyte            2
          convert_d
          divide
          add
          setproperty         QName(PackageNamespace(""), "x")
          ;------------------------------------------------------------
    
          ;--------------------- TEXT BOX -----------------------------
          getlocal0
          getproperty         QName(PackageNamespace(""), "_-xT")
          dup
          pushshort			  400
          getlex              QName(PackageNamespace(""), "stage")
          getproperty         QName(PackageNamespace(""), "stageWidth")
          convert_d
          pushbyte			  2
          convert_d
          divide
          subtract
          setproperty         QName(PackageNamespace(""), "x")
          getlex              QName(PackageNamespace(""), "stage")
          getproperty         QName(PackageNamespace(""), "stageHeight")
          convert_d
          pushbyte			  2
          convert_d
          divide
          pushshort			  0
          subtract
          setproperty         QName(PackageNamespace(""), "y")
          ;---------------------------------------------------------
    Gold

    Search: "credits_"
    Only copy red code: Make to look like:

    Code:
          getlocal0
          getproperty         QName(PackageNamespace("", "#0"), "_-0G")
          ;---------------------- GOLD -----------------------------
          dup
          dup
          pushshort			  200
          getlex              QName(PackageNamespace(""), "stage")
          getproperty         QName(PackageNamespace(""), "stageWidth")
          convert_d
          pushbyte			  2
          convert_d
          divide
          add
          setproperty         QName(PackageNamespace(""), "x")
          pushshort			  306
          getlex              QName(PackageNamespace(""), "stage")
          getproperty         QName(PackageNamespace(""), "stageHeight")
          convert_d
          pushbyte			  2
          convert_d
          divide
          subtract
          setproperty         QName(PackageNamespace(""), "y")
          ;----------------------------------------------------------
          getlocal            5
          getproperty         QName(PackageNamespace("", "#0"), "credits_")
          getlocal            5
          getproperty         QName(PackageNamespace("", "#0"), "_-1cB")
          callpropvoid        QName(PackageNamespace("", "#0"), "draw"), 2
    Rank

    Search: "numStars_"
    Only copy red code: Make to look like:

    Code:
          getlocal0
          getproperty         QName(PackageNamespace("", "#0"), "_-0cR")
          ;--------------------------- RANK --------------------------
          dup
          dup
          pushshort			  408
          getlex              QName(PackageNamespace(""), "stage")
          getproperty         QName(PackageNamespace(""), "stageWidth")
          convert_d
          pushbyte			  2
          convert_d
          divide
          subtract
          setproperty         QName(PackageNamespace(""), "x")
          pushshort			  304
          getlex              QName(PackageNamespace(""), "stage")
          getproperty         QName(PackageNamespace(""), "stageHeight")
          convert_d
          pushbyte			  2
          convert_d
          divide
          subtract
          setproperty         QName(PackageNamespace(""), "y")
          ;------------------------------------------------------------
          getlocal            5
          getproperty         QName(PackageNamespace("", "#0"), "numStars_")
          callpropvoid        QName(PackageNamespace("", "#0"), "draw"), 1
    Guild

    Search: "guildName_"
    Only copy red code: Make to look like:

    Code:
    L206:
          getlocal0
          getproperty         QName(PackageNamespace("", "#0"), "_-1jh")
          ;--------------------------- GUILD ---------------------------
          dup
          dup
          pushshort			  468
          getlex              QName(PackageNamespace(""), "stage")
          getproperty         QName(PackageNamespace(""), "stageWidth")
          convert_d
          pushbyte			  2
          convert_d
          divide
          subtract
          setproperty         QName(PackageNamespace(""), "x")
          pushshort			  305
          getlex              QName(PackageNamespace(""), "stage")
          getproperty         QName(PackageNamespace(""), "stageHeight")
          convert_d
          pushbyte			  2
          convert_d
          divide
          subtract
          setproperty         QName(PackageNamespace(""), "y")
          ;-------------------------------------------------------------
          getlocal            5
          getproperty         QName(PackageNamespace("", "#0"), "guildName_")
          getlocal            5
          getproperty         QName(PackageNamespace("", "#0"), "guildRank_")
          callpropvoid        QName(PackageNamespace("", "#0"), "draw"), 2
    Remove Arena Leaderboard Button

    Search "ArenaLeaderboardButton"
    Line: 1461
    On new line: below "pushfalse"

    Code:
          ;----------- REMOVE ARENA BUTTON ---------------
          returnvoid
          ;-----------------------------------------------
    Remove Red Bag in Nexus

    Search "PackageButton"
    ~ approx Line: 1906
    On new line: below "pushfalse"

    Code:
          ;------------- REMOVE RED BAG ----------------
          returnvoid
          ;---------------------------------------------
    *SPRITE WORLD*

    Tiles
    ~/rabcasm/client-1/com/company/assembleegameclient/objects/Player.class.asasm

    Line: 4619

    Code:
          ;----------------------
          ;Sprite world Tile hack 
          ;---------------------- 
          getlex              QName(PackageNamespace("com.company.assembleegameclient.parameters"), "Parameters")
          getproperty         QName(PackageNamespace("", "#0"), "data_")
          iffalse             END12
    
          pop       
          pushfalse
          END12:
          ;----------------------
    Speed Hack

    Line: 5064
    New line:

    Code:
          ;-----------------------------  
          ; Sprite World Speed Hack
          ;-----------------------------
          getlex QName(PackageNamespace(""), "map_")
          getproperty QName(PackageNamespace(""), "name_")
          pushstring "Sprite World"
          ifne NORMAL
                
          getlocal0
          pushdouble 1.6
          setproperty           QName(ProtectedNamespace("_-Ui"), "_-1Wy")
    
          NORMAL:
          ;-----------------------------
    No Slow
    ~/rabcasm/client-1/com/company/assembleegameclient/objects/GameObject.class.asasm

    Search: "_-0yN"

    Line: 1659

    Place code after the "pushscope"

    Code:
          ;----------------------------  
          ; Sprite World NoSlow
          ;----------------------------
          getlocal0
          getproperty     QName(PackageNamespace("", "#0"), "map_")
          getproperty     QName(PackageNamespace("", "#0"), "name_")
          pushstring      "Sprite World"
          ifne            SKIP_swNs
    
          pushfalse
          returnvalue
    
          SKIP_swNs:
          ;----------------------------
    Please note: Some lines may very depending on what codes have been added previous, an example would be Sprite world hack here and its lines assume you have already done the Autonexus codes (both Sprite and Autonexus codes reside in Player.class)... if not, the line numbers I provided wont match, and you will need to find the new line(s).
    Last edited by Cyeclops; 10-11-2013 at 07:29 AM.

  2. The Following 5 Users Say Thank You to Cyeclops For This Useful Post:

    c2k8s (10-17-2013),iAmSquidly (11-06-2013),Lawlmcwag (11-06-2013),Zasx (10-15-2013),Zong14 (11-07-2013)

  3. #2
    Zasx's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    Northern Italy
    Posts
    1,379
    Reputation
    10
    Thanks
    442
    My Mood
    Yeehaw
    I was expecting this thread as soon as I saw the 17.2 released. But Jesus Cyeclops, do you even sleep sometimes .-. ?
    "First get me some porn accounts"
    . . . . . . . . . . . . . . .-Trapped

  4. #3
    Cyeclops's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Australia
    Posts
    595
    Reputation
    49
    Thanks
    440
    My Mood
    Devilish
    Quote Originally Posted by Zasx View Post
    I was expecting this thread as soon as I saw the 17.2 released. But Jesus Cyeclops, do you even sleep sometimes .-. ?
    <{whaaa ya mean sleep!? iz only benn twoooo daayyzz mainn!!!

    But no seriously, I love my sleep...

  5. #4
    Beex's Avatar
    Join Date
    May 2008
    Gender
    male
    Location
    Posh Gang HQ
    Posts
    633
    Reputation
    55
    Thanks
    402
    My Mood
    Angelic
    Awesome dude. Wish i wouldn't have stupidly lost my knight in a trench tonight. Ill start working on my client tomorrow, well maybe not its my birthday this weekend :P but hopefully ill release something on monday atleast.

  6. #5
    icedemonzn's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    1
    My Mood
    Angelic
    good job mate but how do we inject this code into the client id like to learn how can i pm u?

  7. #6
    Cyeclops's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Australia
    Posts
    595
    Reputation
    49
    Thanks
    440
    My Mood
    Devilish
    Quote Originally Posted by icedemonzn View Post
    good job mate but how do we inject this code into the client id like to learn how can i pm u?
    My pm is broken please look around before asking this question, there is already a tutorial at the top of this Tutorials & Source Code section.

  8. #7
    cehrenr's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    453
    Reputation
    19
    Thanks
    1,234
    Quote Originally Posted by Cyeclops View Post
    My pm is broken .
    He's a dirty liar. PM him as much as you can, @icedemonzn - eventually he'll just send you his own personal updated hacked client. He's a nice fella like that.



    Edit: Since I'm being mischievious, here are the updated auto-aim functions for your troubles:

    Code:
    	#set fullfunctionname "com.company.assembleegameclient.objects:Player/aim_"
    	#set functionname "aim_"                                     
    	
    	#set mouseClass "com.company.assembleegameclient.game:_-1dh#0" 
    																   
    	#set mouseClicked "_-0-v"                                      
    	
    	#set playerNamespace "_-Ui"                               
    	#set characterNamespace "_-0uD"                             
    	#set gameobjectNamespace "_-KQ"                              
    	#set basicobjectNamespace "_-6c"                            
    	#set projectileNamespace "_-1R8"                             
    	
    	#set Aimbot_charMaxHealth "_-1SZ"                             
     	
        #set ObjLibDictionary "_-0tZ"                                  
    																	
        #set ObjPropertiesDictionary "_-f5"                            
    	
    	#set gameobjVector "_-0rR"                                    
    	
    	
        #set FunctionIsInvincible "_-01c"                          
        #set FunctionsIsStasis "_-Vt"
        #set FunctionsIsInvulnerable "_-1Iu"
    Last edited by cehrenr; 10-11-2013 at 04:22 AM.

  9. The Following User Says Thank You to cehrenr For This Useful Post:

    Cyeclops (10-17-2013)

  10. #8
    c2k8s's Avatar
    Join Date
    Feb 2008
    Gender
    female
    Posts
    620
    Reputation
    26
    Thanks
    265
    Very nice cyeclops thanks man, I would contribute and post updated SS Debuffs just to fit in, but people will cry again so i'll pass lol.

    I NOW have my old skype account back after it was hacked - chris2k7sears
    My Vouches!
    Quote Originally Posted by pattyswerve View Post
    +1 VOUCH. Fast and friendly service. Looking forward to future deals
    Quote Originally Posted by Aceofspades12345 View Post
    c2k8s was fast and quick. Definite Vouch! 10/10 would trade again!
    Quote Originally Posted by Novus7 View Post
    c2k8s isn't fake. We did a good deal together. I vouch for him.
    Quote Originally Posted by SuperSean
    +1 vouch ! went first and got items right after . Thanks !
    Quote Originally Posted by kian1991
    Vouche! This guy is rly nice he went first all right Thanks man
    Quote Originally Posted by pattyswerve
    +1 Vouch Friendly guy! I went first and he kept his bargain. Looking forward to future deal!

    More on my profile page and more trades with people that don't vouch .

  11. #9
    Cyeclops's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Australia
    Posts
    595
    Reputation
    49
    Thanks
    440
    My Mood
    Devilish
    Quote Originally Posted by Zasx View Post
    Jesus Cyeclops
    Pinhead: "Thou shall not bow down before any graven image."

  12. #10
    cehrenr's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    453
    Reputation
    19
    Thanks
    1,234
    Quote Originally Posted by c2k8s View Post
    Very nice cyeclops thanks man, I would contribute and post updated SS Debuffs just to fit in, but people will cry again so i'll pass lol.
    Wait SS debuffs aren't public any more again? I'm confused, how does that even happen lol.

  13. #11
    Cyeclops's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Australia
    Posts
    595
    Reputation
    49
    Thanks
    440
    My Mood
    Devilish
    Quote Originally Posted by cehrenr View Post
    He's a dirty liar. PM him as much as you can
    What! Don't know what you're talking about ....

    Thanks for the add.

  14. #12
    c2k8s's Avatar
    Join Date
    Feb 2008
    Gender
    female
    Posts
    620
    Reputation
    26
    Thanks
    265
    Quote Originally Posted by cehrenr View Post
    Wait SS debuffs aren't public any more again? I'm confused, how does that even happen lol.
    Not since 16.2 or so.

    I NOW have my old skype account back after it was hacked - chris2k7sears
    My Vouches!
    Quote Originally Posted by pattyswerve View Post
    +1 VOUCH. Fast and friendly service. Looking forward to future deals
    Quote Originally Posted by Aceofspades12345 View Post
    c2k8s was fast and quick. Definite Vouch! 10/10 would trade again!
    Quote Originally Posted by Novus7 View Post
    c2k8s isn't fake. We did a good deal together. I vouch for him.
    Quote Originally Posted by SuperSean
    +1 vouch ! went first and got items right after . Thanks !
    Quote Originally Posted by kian1991
    Vouche! This guy is rly nice he went first all right Thanks man
    Quote Originally Posted by pattyswerve
    +1 Vouch Friendly guy! I went first and he kept his bargain. Looking forward to future deal!

    More on my profile page and more trades with people that don't vouch .

  15. #13
    the0fox's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    0
    thanks for the help i found out how to do it, everything works fine but the Increase View code dosnt work when i put it and recompile and try to run the client
    it works for a second then it crashes. no error or anything just crashes

  16. #14
    cehrenr's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    453
    Reputation
    19
    Thanks
    1,234
    Quote Originally Posted by c2k8s View Post
    Not since 16.2 or so.
    Is there a specific reason for that? Or just lost to the sands of time for the general public?

  17. #15
    c2k8s's Avatar
    Join Date
    Feb 2008
    Gender
    female
    Posts
    620
    Reputation
    26
    Thanks
    265
    Quote Originally Posted by cehrenr View Post
    He's a dirty liar. PM him as much as you can, @icedemonzn - eventually he'll just send you his own personal updated hacked client. He's a nice fella like that.



    Edit: Since I'm being mischievious, here are the updated auto-aim functions for your troubles:

    Code:
    	#set fullfunctionname "com.company.assembleegameclient.objects:Player/aim_"
    	#set functionname "aim_"                                     
    	
    	#set mouseClass "com.company.assembleegameclient.game:_-1dh#0" 
    																   
    	#set mouseClicked "_-0-v"                                      
    	
    	#set playerNamespace "_-Ui"                               
    	#set characterNamespace "_-0uD"                             
    	#set gameobjectNamespace "_-KQ"                              
    	#set basicobjectNamespace "_-6c"                            
    	#set projectileNamespace "_-1R8"                             
    	
    	#set Aimbot_charMaxHealth "_-1SZ"                             
     	
        #set ObjLibDictionary "_-0tZ"                                  
    																	
        #set ObjPropertiesDictionary "_-f5"                            
    	
    	#set gameobjVector "_-0rR"                                    
    	
    	
        #set FunctionIsInvincible "_-01c"                          
        #set FunctionsIsStasis "_-Vt"
        #set FunctionsIsInvulnerable "_-1Iu"

    what class and line does this go in? Its the only one I don't know and ive tried searching for a previous release to find the class but coming up trumps.

    I NOW have my old skype account back after it was hacked - chris2k7sears
    My Vouches!
    Quote Originally Posted by pattyswerve View Post
    +1 VOUCH. Fast and friendly service. Looking forward to future deals
    Quote Originally Posted by Aceofspades12345 View Post
    c2k8s was fast and quick. Definite Vouch! 10/10 would trade again!
    Quote Originally Posted by Novus7 View Post
    c2k8s isn't fake. We did a good deal together. I vouch for him.
    Quote Originally Posted by SuperSean
    +1 vouch ! went first and got items right after . Thanks !
    Quote Originally Posted by kian1991
    Vouche! This guy is rly nice he went first all right Thanks man
    Quote Originally Posted by pattyswerve
    +1 Vouch Friendly guy! I went first and he kept his bargain. Looking forward to future deal!

    More on my profile page and more trades with people that don't vouch .

Page 1 of 7 123 ... LastLast

Similar Threads

  1. 16.0 Hacks source -Started-
    By Cyeclops in forum Realm of the Mad God Tutorials & Source Code
    Replies: 48
    Last Post: 08-31-2013, 09:30 PM
  2. Need a patched (any) hack source.
    By Richo in forum Combat Arms Help
    Replies: 7
    Last Post: 09-27-2009, 04:19 AM
  3. Counter-Strike: Source - Hack Source?
    By Skrip in forum C++/C Programming
    Replies: 1
    Last Post: 09-07-2009, 02:06 AM
  4. Simple BF2 hack source with some interesting stuff.
    By Tyrano in forum C++/C Programming
    Replies: 2
    Last Post: 04-29-2009, 07:33 AM
  5. [VB.NET 08] Diamondo25's WarRock Hack source
    By diamondo25 in forum Visual Basic Programming
    Replies: 8
    Last Post: 04-24-2008, 09:21 AM