Results 1 to 10 of 10
  1. #1
    napalm13's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    6

    Post 16.2 b8 How to Assembly Editing + Cheat Sheet

    b7* My bad


    Hey all,

    Here is a simple "how to" for people to do it themselves, this "method" has been around for as long as the game has been, so don't come here looking for "credit". Mainly doing this here so people can choose what options they have instead of being forced to use stuff they don't want and potentially getting caught by accident, plus mods are being terribly slow at approving anyone's submissions recently.

    Things to note:
    Using God Mode "Q" will put you into no clip mode, using this will trigger a "no clip" alarm on almost EVERY server, even if you're using it in the sky and not actually clipping through anything). So use sparingly, like 1-3 blocks and turn it off for a while or you WILL get auto banned.
    If you have extra damage on and someone comes and "tests" you by asking you to break a block, you're screwed. Just don't use it in MP.
    Dropping no items on death, especially backpack, will easily get you caught, especially in PvP.
    Being inside trader area after hours can get you busted by other players or admin if they see you.
    If you're going to "break" into someone else's base by bypassing their "locked" door, either close it behind you or set it to "unlocked" (not recommended, people can easily prove they left it locked). Most servers run an option any player can type to see who was in that location within X amount of hours.


    If you have any useful things you'd like to add t the list, simply reply with @napalm13 and I'll add it in.

    Things you will need (google them, easy to get)-
    • .NET Reflector
    • Reflexil AIO (make sure it works with your reflector version)


    1. Download and install reflector
    2. Download and install reflexil aio into the "addins" folder of reflector
    3. Open reflector and open your "assembly-csharp.dll" (after making a backup)
    4. Go up to tools, and click reflexil


    From here you just find the "hack" you wish to engage from the list below and then when you're finished, go back up to the top, right click on "Assembly-CSharp (0.0.0.0)" and navigate to reflexil, save as, save it over your original assembly in the managed data folder.

    How to "delete all" "create new",
    navigate to the location of the cheat listed below, in the reflexil window on the right, click anywhere and hit "delete all", then click again and type "create new". You will be generally creating 2 opcodes, one for the code, and one for the return (ret). Hard right...?

    To easily find the location simply copy and paste the location and it will take you straight to it:
    eg: Copy: MapObject.IsOnCompass()
    Paste in the search bar and it will find it, then simply click the bottom option in the tree.

    If multiple lines, change all of them with the copy listed at the bottom.
    eg:
    Skill.GetSkillPointCost()
    Skill.GetSkillPointCost(Int32)
    "Delete all" > "Create New" ldc.i4.1 > "Create New" ret
    Change both lines

    Cheat List:
    Code:
    Creative Menu
    GameManager.AF.MoveNext()
      "Edit" Line 151 from ldc.14.0 to ldc.14.1
    
    Debug Menu
    GameManager.AF.MoveNext()
      "Edit" Line 148 from ldc.14.0 to ldc.14.1
    
    Show all players on map
    EntityPlayer.IsDrawMapIcon()
      "Delete all" > "Create New" ldc.i4.1 > "Create New" ret
    
    Show more options on compass (same code for each)
    MapObject.IsOnCompass()            =Players
    MapObjectSleepingBag.IsOnCompass() =All "Homes"
    MapObjectVehicle.IsOnCompass()     =All Vehicles (Player owned of course)
     "Delete all" > "Create New" ldc.i4.1 > "Create New" ret    
    
    Achievements Enabled with Cheats
    AchievementUtils.IsCreativeModeActive()
     "Delete all" > "Create New" ldc.i4.1 > "Create New" ret   
    
    Build blocks and land claim blocks anywhere (including others land claims)
    World.CanPlaceBlockAt(Vector3i, PersistentPlayerData)
    World.CanPlaceLandProtectionBlockAt(Vector3i, PersistentPlayerData)
     "Delete all" > "Create New" ldc.i4.1 > "Create New" ret   
    
    All skill points cost 1 (Change both)
    Skill.GetSkillPointCost()
    Skill.GetSkillPointCost(Int32)
     "Delete all" > "Create New" ldc.i4.1 > "Create New" ret  
    
    Radiation Immunity
    EntityAlive.isRadiationSensitive
      "Edit" Line 00 from ldc.14.1 to ldc.14.0
    
    Instant Crafting
    XUiM_Recipes.GetRecipeCraftTime(XUi, Recipe)
     "Delete all" > "Create New" ldc.r4 AND must have "Single" as Operand Type with Operand "0"> "Create New" ret  
    
    Instant Open Container 
    TileEntityLootContainer.GetOpenTime()
     "Delete all" > "Create New" ldc.r4 AND must have "Single" as Operand Type with Operand "0"> "Create New" ret 
    
    No "underwater" -can't drown + no underwater visuals
    EntityPlayerLocal.isHeadUnderwater(Single)
     "Delete all" > "Create New" ldc.i4.0 > "Create New" ret 
    
    Can't be kicked out of Trader area
    TraderArea.IsWithinTeleportArea(Vector3i)
    TraderArea.IsWithin(Vector3i)
     "Delete all" > "Create New" ldc.i4.0 > "Create New" ret 
    	
    No death log in chat
    EntityAlive.isGameMessageOnDeath()
     "Edit" Line 01 from ldc.14.1 to ldc.14.0
    
    Death count doesn't increase in PvP
    EntityAlive.OnEntityDeath()
     "Edit" Line 01 from ldc.14.1 to ldc.14.0
    
    "Owner" of following
    EntityVehicle.IsOwner(String)
    TileEntityPoweredRangedTrap.IsOwner(String)
    TileEntityPoweredTrigger.IsOwner(String)
    TileEntityPowerSource.IsOwner(String)
    TileEntitySecure.IsOwner(String)
    TileEntitySecureLootContainer.IsOwner(String)
    TileEntitySign.IsOwner(String)
    TileEntityVendingMachine.IsOwner(String)
     "Delete all" > "Create New" ldc.i4.1 > "Create New" ret 
    
    Allow Access	
    EntityVehicle.IsUserAllowed(String)
    TileEntitySecure.IsUserAllowed(String)
    TileEntitySecureLootContainer.IsUserAllowed(String)
    TileEntitySign.IsUserAllowed(String)
    TileEntityVendingMachine.IsUserAllowed(String)
     "Delete all" > "Create New" ldc.i4.1 > "Create New" ret 
    	
    Change Password
    EntityVehicle.CheckPassword(String, String, Boolean&)
    TileEntitySecure.CheckPassword(String, String, Boolean&)
    TileEntitySecureLootContainer.CheckPassword(String, String, Boolean&)
    TileEntitySign.CheckPassword(String, String, Boolean&)
    TileEntityVendingMachine.CheckPassword(String, String, Boolean&)
     "Delete all" > "Create New" ldc.i4.1 > "Create New" ret 
    
    
    DO NOT recommend using these as anyone can easily see you're cheating	  
    Max Damage (only effects "swings")
    EntityPlayerLocal.GetStaminaMultiplier()
     "Delete all" > "Create New" ldc.r4 AND must have "Single" as Operand Type with Operand "99999"> "Create New" ret 
    
    Max Damage (effects all, including guns):
    ItemActionAttack.GetDamageBlock(ItemValue, EntityPlayer, ItemValue)      =Blocks
    ItemActionAttack.GetDamageEntity(ItemValue, EntityPlayer, ItemValue)     =Players/Zombies
     "Delete all" > "Create New" ldc.r4 AND must have "Single" as Operand Type with Operand "99999"> "Create New" ret 
    
    
    No drop on death
    EntityPlayerLocal.dropBackpack(Boolean)   =Backpack
     "Delete all" > "Create New" ldc.i4.0 > "Create New" ret 
    EntityPlayerLocal.dropItemOnDeath()       =Belt
     "Edit" Line 00 from ldc.14.1 to ldc.14.0
    Last edited by napalm13; 08-11-2017 at 06:12 PM.

  2. The Following 4 Users Say Thank You to napalm13 For This Useful Post:

    glops011 (02-24-2018),Maxpayne596344 (08-16-2017),sixxkilur (08-14-2017),vfxloco (08-11-2017)

  3. #2
    vfxloco's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    4
    =D TRY

  4. #3
    mrfuge's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    How do you find out where the hack location got moved to?

  5. #4
    unknownuser404's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    Can Do you Create Video Please I got to create cheats Pls bro

  6. #5
    zerocool878's Avatar
    Join Date
    Aug 2017
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    1
    I've made a video, but I'm not allowed to post links. The link is in my profile in the "About Me" tab.

  7. #6
    sixxkilur's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    2
    Achievements Enabled with Cheats

    killed 1100+ zombies with CM and DM on.
    Does this only work if DM is off but CM can still be on?

    While looking at stealth was wanting to had the stealth hud display "Detected Undetected" in game without having to crouch.
    Looks like it could be found in PlayerStealth but do not have a clue from there.

  8. #7
    napalm13's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    6
    Quote Originally Posted by unknownuser404 View Post
    Can Do you Create Video Please I got to create cheats Pls bro
    I gave instructions, if you can't follow them then you shouldn't be doing this. My 11 year old son can follow these instructions and get it working.

  9. #8
    Bartender's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Posts
    124
    Reputation
    10
    Thanks
    537
    Quote Originally Posted by napalm13 View Post
    I gave instructions, if you can't follow them then you shouldn't be doing this. My 11 year old son can follow these instructions and get it working.
    Oh, the things I was doing at 11 *.*
    AIM direct messaging file access.. botnets.. ddosing AOL.. parents' ISP, bellsouth, contacting us threatening to shut off service due to malicious network activity from 51,000 outside connections xD ahh good times

    OT: I'm really glad to see someone's found the fix for my info I gave out about traderarea teleportation.
    Great work and keep up the contributions


    "You don't bite the one who serves you"

  10. #9
    zerocool878's Avatar
    Join Date
    Aug 2017
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    1
    Guys, offtopic quick question. How do i share modified Assembly if i'm not allowed to post links? I managed to modify it and I want to share it, as many people don't know how to.

    - - - Updated - - -

    Can't be kicked out of Trader area
    TraderArea.IsWithinTeleportArea(Vector3i)
    TraderArea.IsWithin(Vector3i)
    "Delete all" > "Create New" ldc.i4.0 > "Create New" ret

    This isn't working for me. I'm still getting teleported out of the trader area. Any tips ?

  11. #10
    Bartender's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Posts
    124
    Reputation
    10
    Thanks
    537
    Quote Originally Posted by zerocool878 View Post
    Guys, offtopic quick question. How do i share modified Assembly if i'm not allowed to post links? I managed to modify it and I want to share it, as many people don't know how to.

    - - - Updated - - -

    Can't be kicked out of Trader area
    TraderArea.IsWithinTeleportArea(Vector3i)
    TraderArea.IsWithin(Vector3i)
    "Delete all" > "Create New" ldc.i4.0 > "Create New" ret

    This isn't working for me. I'm still getting teleported out of the trader area. Any tips ?
    You know.. I didn't bother to look before.. But having just now checked, it's the same as what I wrote in my cheat sheet.. Which I didn't fully test until after the next update. It wasn't working for me either. Not a feature I'm too keen on having though, so don't plan to hunt it down or verify it's not checked by the server also.


    "You don't bite the one who serves you"

Similar Threads

  1. [Solved] How to edit Cheat
    By Kalupro2 in forum Grand Theft Auto 5 (GTA V) Help
    Replies: 0
    Last Post: 06-11-2016, 10:04 AM
  2. how do i edit assembly?
    By catty32322 in forum Rust Discussions & Help
    Replies: 13
    Last Post: 01-16-2014, 05:32 AM
  3. can some 1 teach me how to use the cheat engine 5.4
    By klk101 in forum WarRock - International Hacks
    Replies: 16
    Last Post: 09-17-2008, 11:38 AM
  4. [Tutorial] How to use a cheat table(CT)
    By Combatant in forum Combat Arms Hacks & Cheats
    Replies: 28
    Last Post: 08-13-2008, 08:58 AM
  5. how can i edit a module?
    By mopo in forum WarRock - International Hacks
    Replies: 3
    Last Post: 09-24-2007, 06:14 AM