Page 3 of 11 FirstFirst 12345 ... LastLast
Results 31 to 45 of 153
  1. #31
    phillipo6's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    1
    I cant find all the classes with an "_" in the name... just white boxes in the names, so i cant do godmode, no thirst,....

  2. #32
    Uddaz's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    3
    My Mood
    Amused
    All the sickness water etc is in LIFE then open the "int32" folders (or what youd like to call it)

  3. #33
    TsLord's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    108
    Reputation
    10
    Thanks
    8
    yo how u change the operand type D;

  4. #34
    RavenUnitedFTW's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    In the Jungle
    Posts
    25
    Reputation
    10
    Thanks
    14
    It wont let me change it to brtrue for the group esp bcuz it Says you don't have coherance check the opcode and operand
    Or something like that

  5. #35
    LordSqualo's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    0
    Please give a video tutorial because it would make this so much easier. Thanks

  6. #36
    luka061's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Barbacue Landia
    Posts
    59
    Reputation
    10
    Thanks
    190
    How to put infinite server slots

  7. #37
    luka061's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Barbacue Landia
    Posts
    59
    Reputation
    10
    Thanks
    190
    Kunii and the Server limit players thingy how to edit that?

  8. #38
    bicumanu's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed

    Question I NEED HELP

    Quote Originally Posted by Kunii View Post
    Unturned Assembly Instructions List
    Last updated for Unturned v215
    Note: All of the instructions listed should work for futher updates.


    Misc. Info

    MSIL means "Microsoft Intermediate Language". Its also known as one of the lowest-level human-readable programming language.
    An instruction is.. well.. an instruction. It tells the computer what to do.
    An OpCode is what the instruction refers to. It means "Operation Code", and is quite self-explanatory. It can also return a value, but doesn't need to. The opcode "ldc.i4" return an integer, therefor it needs a value. The opcode "ret" simply returns something specified in other instructions above, the opcode itself doesn't have a value.


    Requirements

    A MSIL editor (.NET Reflector + ReflexIL or DotNet Resolver)
    A brain (Very important)



    How to use

    1. Fire up your MSIL editor
    2. Go to said class
    3. Go to said instruction
    4. Modify said instruction
    5. Save & Close



    Instruction list

    Bag capacity - BagSize.getCapacity
    Delete all.
    Add - OpCode ldc.i4, Operand type int32, value 20000
    Add - OpCode ret
    Change 20000 to whatever capacity you want.

    Bag size - BagSize.getHeight
    Delete all.
    Add - OpCode ldc.i4, Operand type int32, value 5
    Add - OpCode ret
    Change 5 to whatever capacity you want.

    Bag size - BagSize.getWidth
    Delete all.
    Add - OpCode ldc.i4, Operand type int32, value 5
    Add - OpCode ret
    Change 5 to whatever capacity you want.

    Bag size (Multiplayer) - Inventory.syncSize
    Change instruction 1 to - OpCode ldc.i4, Operand type int32, value 5 - This is the width, change 5 to whatever you want
    Change instruction 2 to - OpCode ldc.i4, Operand type int32, value 5 - This is the height, change 5 to whatever you want
    Change instruction 3 to - OpCode ldc.i4, Operand type int32, value 20000 - This is the weight, change 20000 to whatever you want

    Inf water - Life.get_water
    Delete all.
    Add - OpCode ldc.i4, Operand type int32, value 100
    Add - OpCode ret

    Inf rads - Life.get_sickness
    Delete all.
    Add - OpCode ldc.i4, Operand type int32, value 100
    Add - OpCode ret

    Inf stamina - Life.get_stamina
    Delete all.
    Add - OpCode ldc.i4, Operand type int32, value 100
    Add - OpCode ret

    Inf food - Life.get_food
    Delete all.
    Add - OpCode ldc.i4, Operand type int32, value 100
    Add - OpCode ret

    Inf hp - Life.get_health
    Delete all.
    Add - OpCode ldc.i4, Operand type int32, value 100
    Add - OpCode ret

    Inf hp - Life.set_health
    Change instruction 1 to - OpCode ldc.i4, Operand type int32, value 100

    No bleed - Life.tellBleeding
    Change instruction 1 to - OpCode ldc.i4.0

    No broken bones - Life.tellBones
    Change instruction 1 to - OpCode ldc.i4.0

    Inf exp - Skills.get_experience
    Delete all.
    Add - OpCode ldc.i4, Operand type int32, value 9001 - This is the exp value, change 9001 to whatever you want
    Add - OpCode ret

    Inf exp - Skills.set_experience
    Change instruction 1 to - OpCode ldc.i4, Operand type int32, value 9001 - This is the exp value, change 9001 to whatever you want

    No recoil - GunStats.getRecoil_Y
    Delete all.
    Add - OpCode ldc.r4, Operand type single, value 0
    Add - OpCode ret

    No recoil - GunStats.getRecoil_X
    Delete all.
    Add - OpCode ldc.r4, Operand type single, value 0
    Add - OpCode ret

    No spread - GunStats.getSpread
    Delete all.
    Add - OpCode ldc.r4, Operand type single, value 0
    Add - OpCode ret

    Fast ROF - GunStats.getROF
    Delete all.
    Add - OpCode ldc.r4, Operand type single, value 0,1 - This is the rate of fire, change 0,1 to whatever you want.
    Add - OpCode ret

    Infinite electricity - Electricity.checkPower
    Delete all.
    Add - OpCode ldc.i4.1
    Add - OpCode ret

    Speedhack when crouched - Movement.cctor (Static constructor)
    Change instruction 4 to - OpCode ldc.r4, Operand type single, value 5 - This is the crouchspeed, change 5 to whatever you want.

    Group ESP - HUDGame.? (The void called in HUDGame.OnGUI)
    Change instruction 58 to - OpCode brtrue, DO NOT EDIT THE TYPE OR VALUE
    Change instruction 69 to - OpCode ldc.r4, Operand type single, value 1000 - This is the esp range, change 1000 to whatever you want.

    Gold hack - Database.? (The only void)
    Change instruction 37 to - OpCode ldc.i4, Operand type int32, value 304930

    If you use this, and release a hack, please reference this thread in the credits



    I Need help on DotNet Resolver Where do i find classes and Instructions ? I'm not so good with These type of things, so i'd appreciate help

  9. #39
    Kunii's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    Norway
    Posts
    153
    Reputation
    68
    Thanks
    3,816
    Quote Originally Posted by bicumanu View Post
    I Need help on DotNet Resolver Where do i find classes and Instructions ? I'm not so good with These type of things, so i'd appreciate help
    This was never intented as a tutorial. Go check out xCyberxx's thread if you want a proper tutorial.

  10. The Following User Says Thank You to Kunii For This Useful Post:

    adi_a12 (07-20-2014)

  11. #40
    galax166's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    some download this please

  12. #41
    mm#%^%Yhaerghaer's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    3
    My Mood
    Bored
    How does one edit the Operand Type?

    Edit: Use .NET reflector.

    Much better.
    Last edited by mm#%^%Yhaerghaer; 07-20-2014 at 10:15 PM.

  13. #42
    jamesbbbbb's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    28
    on esp i cant find it Screenshot by Lightshot

  14. #43
    mm#%^%Yhaerghaer's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    3
    My Mood
    Bored
    Quote Originally Posted by jamesbbbbb View Post
    on esp i cant find it Screenshot by Lightshot
    Here's where it's actually located.

    Does anyone know how to edit the text "Welcome back to Unturned"?

    Greatly appreciate any responses.

  15. #44
    end360's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    61
    Reputation
    10
    Thanks
    7
    My Mood
    Lurking
    Can you find out how to make it so when you are low health your screen doesnt shake while holding a gun, it makes it hard to snipe.

  16. #45
    Kunii's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    Norway
    Posts
    153
    Reputation
    68
    Thanks
    3,816
    Quote Originally Posted by purerock100 View Post
    Here's where it's actually located.

    Does anyone know how to edit the text "Welcome back to Unturned"?

    Greatly appreciate any responses.
    Go to the same void as gold & search for "Welcome" there

Page 3 of 11 FirstFirst 12345 ... LastLast

Similar Threads

  1. Big List of Free Web Services
    By sp5710 in forum Spammers Corner
    Replies: 20
    Last Post: 12-22-2018, 07:54 PM
  2. [Assembly Tutorial] Object-oriented assembly <FASM>
    By TrollerCoaster in forum Programming Tutorials
    Replies: 3
    Last Post: 01-02-2013, 09:53 AM
  3. [Solved] Changing Assembly Instructions in cpp
    By bitcode in forum C++/C Programming
    Replies: 10
    Last Post: 10-05-2012, 02:00 PM
  4. [Books]Learn Assembly[List][Downloads]
    By NextGen1 in forum Assembly
    Replies: 8
    Last Post: 12-07-2011, 11:52 PM
  5. How to assemble instruction in IDA?
    By josue18 in forum Reverse Engineering
    Replies: 0
    Last Post: 10-02-2010, 08:29 PM