Results 1 to 9 of 9
  1. #1
    jumboperson187's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    124
    Reputation
    10
    Thanks
    883

    Some simple codes for simple hacks

    So I decided to organize a list of a bunch of easy to implement codes for hacks.

    This list is intended for a few lines long hacks that are simple to use and implement, longer code such as ESPs and other things are not for this thread.

    Code:
     Life[] LifeArray = UnityEngine.Object.FindObjectsOfType(typeof(Life)) as Life[];
                foreach (Life life in LifeArray)
                {
                    life.tellFood(100);
                    life.tellWater(100);
                    life.tellHealth(100);
                    life.tellSickness(100);
                    life.tellBleeding(false);
                    life.tellBones(false);
                   
                    life.energyBuffer();
                }
    Godmode
    Code:
    if (antiAgro)
            {
                Sneaky.sneak(0);
                Sneaky.sneak(0.1f);
                Sneaky.expose(0);
                Sneaky.expose(0.1f);
            }
    No zombie agro
    Code:
    if (GUI.Button(new Rect(10, 0, 180, 30), "Agro all Zombies on me"))
                {
                    Zombie[] zs = FindObjectsOfType(typeof(Zombie)) as Zombie[];
                    foreach (Zombie player in zs)
                    {
                        player.attract(Camera.main.transform.position);
                    }
                }
    Agro all zombies on given point
    Code:
    if (GUI.Button(new Rect(10, 410, 100, 30), "Swap UI"))
                {
                    SleekRender.swapPaid();
                    Images.swapPaid();
                    
                }
    Change UI to gold
    Code:
    SpawnItems.spawnItem(Convert.ToInt32(itemspawn), Convert.ToInt32(amount), Camera.main.transform.position);
    Item spawning
    Code:
    Time.timeScale = (whatever speed, 1.0f is the default);
    Easy speedhack
    Code:
    Color color = new Color(UnityEngine.Random.Range((float)0f, (float)1f), UnityEngine.Random.Range((float)0f, (float)1f), UnityEngine.Random.Range((float)0f, (float)1f));
                SpawnVehicles.create("(CAR NAME)" + UnityEngine.Random.Range(0, 2), 100, 100, Camera.main.transform.position + Vector3.up, transform****tation * Quaternion.Euler(-90f, 0f, 0f), color);
    Spawn cars of a certain name
    Code:
    Network.Disconnect();
    Quick DC
    Code:
    if (GUI.Button(new Rect(10, 380, 100, 30), "Reset Loot")){
                    
                    SpawnItems.reset();
                }
    Reset map loot (Single Player only)

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

    AlexGeoZz1 (08-01-2014),fighter94 (05-08-2015)

  3. #2
    blackstab1337's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    159
    Reputation
    10
    Thanks
    149
    My Mood
    Amused
    no aimbot? aw

  4. #3
    trevorrr259's Avatar
    Join Date
    Jul 2014
    Gender
    female
    Posts
    47
    Reputation
    75
    Thanks
    1,919
    My Mood
    Busy
    Quote Originally Posted by blackstab1337 View Post
    no aimbot? aw

    Sike lol your fucking funny.

  5. #4
    TheMaskedOne's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Home
    Posts
    803
    Reputation
    10
    Thanks
    719
    My Mood
    Yeehaw
    Quote Originally Posted by jumboperson187 View Post
    So I decided to organize a list of a bunch of easy to implement codes for hacks.

    This list is intended for a few lines long hacks that are simple to use and implement, longer code such as ESPs and other things are not for this thread.

    Code:
     Life[] LifeArray = UnityEngine.Object.FindObjectsOfType(typeof(Life)) as Life[];
                foreach (Life life in LifeArray)
                {
                    life.tellFood(100);
                    life.tellWater(100);
                    life.tellHealth(100);
                    life.tellSickness(100);
                    life.tellBleeding(false);
                    life.tellBones(false);
                   
                    life.energyBuffer();
                }
    Godmode
    Code:
    if (antiAgro)
            {
                Sneaky.sneak(0);
                Sneaky.sneak(0.1f);
                Sneaky.expose(0);
                Sneaky.expose(0.1f);
            }
    No zombie agro
    Code:
    if (GUI.Button(new Rect(10, 0, 180, 30), "Agro all Zombies on me"))
                {
                    Zombie[] zs = FindObjectsOfType(typeof(Zombie)) as Zombie[];
                    foreach (Zombie player in zs)
                    {
                        player.attract(Camera.main.transform.position);
                    }
                }
    Agro all zombies on given point
    Code:
    if (GUI.Button(new Rect(10, 410, 100, 30), "Swap UI"))
                {
                    SleekRender.swapPaid();
                    Images.swapPaid();
                    
                }
    Change UI to gold
    Code:
    SpawnItems.spawnItem(Convert.ToInt32(itemspawn), Convert.ToInt32(amount), Camera.main.transform.position);
    Item spawning
    Code:
    Time.timeScale = (whatever speed, 1.0f is the default);
    Easy speedhack
    Code:
    Color color = new Color(UnityEngine.Random.Range((float)0f, (float)1f), UnityEngine.Random.Range((float)0f, (float)1f), UnityEngine.Random.Range((float)0f, (float)1f));
                SpawnVehicles.create("(CAR NAME)" + UnityEngine.Random.Range(0, 2), 100, 100, Camera.main.transform.position + Vector3.up, transform****tation * Quaternion.Euler(-90f, 0f, 0f), color);
    Spawn cars of a certain name
    Code:
    Network.Disconnect();
    Quick DC
    Code:
    if (GUI.Button(new Rect(10, 380, 100, 30), "Reset Loot")){
                    
                    SpawnItems.reset();
                }
    Reset map loot (Single Player only)
    What is your point of making this we already have one only a minion is to lazy to orginize it / sticky it




    Achievements:

     
    Posts Count: ( Done Not done )

    - 666
    - 750
    - 900
    - 1000

     
    Thanks Recieved: ( Done Not done )

    - 400
    - 550
    - 700
    - 850
    - 1000

     
    Cgallagher21

  6. #5
    MinecraftGamer101010's Avatar
    Join Date
    Mar 2013
    Gender
    female
    Posts
    78
    Reputation
    10
    Thanks
    3
    My Mood
    Blah
    Quote Originally Posted by TheMaskedOne View Post
    What is your point of making this we already have one only a minion is to lazy to orginize it / sticky it
    What's it called? Link?

  7. #6
    Blueblood1's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    711
    Reputation
    132
    Thanks
    7,126
    My Mood
    Mellow
    Quote Originally Posted by jumboperson187 View Post
    if (antiAgro)
    {
    Sneaky.sneak(0);
    Sneaky.sneak(0.1f);
    Sneaky.expose(0);
    Sneaky.expose(0.1f);
    }

    No zombie agro
    Doesn't work?

  8. The Following User Says Thank You to Blueblood1 For This Useful Post:

    AlexGeoZz1 (08-01-2014)

  9. #7
    MinecraftGamer101010's Avatar
    Join Date
    Mar 2013
    Gender
    female
    Posts
    78
    Reputation
    10
    Thanks
    3
    My Mood
    Blah
    Quote Originally Posted by Blueblood1 View Post
    Doesn't work?
    I think it has to be constant like godmode... (I used void Update() for godmode but it is well... bad (My PC might lag and when it does I die xD))

  10. #8
    Gojin's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    270
    My Mood
    Relaxed
    Thanks for this codes. =)

  11. #9
    Yolo Leon's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    0
    thanks for all the code <3

Similar Threads

  1. [Source Code] I found some source codes for CA hacks (Ithink-Aimbot)
    By trane25 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 14
    Last Post: 01-02-2014, 08:35 AM
  2. [Help] Error Codes For Simple Memory Hacks
    By TheGTAHeroes in forum CrossFire PH Discussions
    Replies: 13
    Last Post: 10-02-2012, 05:22 AM
  3. a simple question for mw3 hack makers
    By cracker415 in forum Call of Duty Modern Warfare 3 Discussions
    Replies: 6
    Last Post: 12-29-2011, 03:59 PM
  4. [Source Code] Need some Source Codes for Menu Hack
    By taylan in forum WarRock Hack Source Code
    Replies: 8
    Last Post: 12-09-2010, 10:18 AM
  5. give me .net(code) for warrock hacks
    By srinuv in forum WarRock - International Hacks
    Replies: 7
    Last Post: 05-02-2009, 10:23 AM

Tags for this Thread