Page 2 of 2 FirstFirst 12
Results 16 to 27 of 27
  1. #16
    jenhakhanh's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by 96neko View Post
    sorry but i don't think of selling anything yet
    Do you use it for individuals who think about sharing it? I want to learn very much.

  2. #17
    96neko's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Location
    00:25:B5:AA:01:1F
    Posts
    768
    Reputation
    10
    Thanks
    142
    My Mood
    Angelic
    Quote Originally Posted by jenhakhanh View Post
    Do you use it for individuals who think about sharing it? I want to learn very much.
    check your IM i accepted u



  3. #18
    jenhakhanh's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by 96neko View Post
    check your IM i accepted u
    How can I contact you! I have Sky.pe and Tele.gram
    Sky.pe : thmodz
    Tele.gram : +841234050174
    Last edited by jenhakhanh; 06-07-2020 at 03:29 AM.

  4. #19
    tuananh94pk's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    10
    Quote Originally Posted by jenhakhanh View Post
    How can I contact you! I have Sky.pe and Tele.gram
    Sky.pe : thmodz
    Tele.gram : +841234050174
    BAO GIO NO GUI CODE SHEARE T VOI

  5. #20
    Exile.D's Avatar
    Join Date
    Jun 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    1



  6. The Following User Says Thank You to Exile.D For This Useful Post:

    cttbot12 (06-16-2020)

  7. #21
    tuananh94pk's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    10
    Quote Originally Posted by Exile.D View Post


    can u share it with me?

  8. #22
    96neko's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Location
    00:25:B5:AA:01:1F
    Posts
    768
    Reputation
    10
    Thanks
    142
    My Mood
    Angelic
    Quote Originally Posted by Exile.D View Post


    as far as i knew today this will be patched and blocked in the next few updates



  9. #23
    cttbot12's Avatar
    Join Date
    Aug 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by 96neko View Post
    already uninstalled it @Janitor can you move this to the proper section ?

    EDIT :
    this is the ESP i did , it's crappy one which i did so fast...
    hi man, im cttbot, im from cheats league of legend, my platform is pvlol, can you add me
    ******* : CTTBOT#9055
    fb : https://www.facebook.com/chungnguyen.henry

    - - - Updated - - -

    Quote Originally Posted by Exile.D View Post


    bạn là người Việt Nam à, có thể giao lưu tí được ko ?

    fb tui : https://www.facebook.com/chungnguyen.henry
    dis..cord : CTTBOT#9055

  10. #24
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh
    (i'm techx everywhere else btw)

    The game is so easy to modify, its stupid. Zero protection on the code. Took less than 10 minutes to make an ESP hack that we've already open sourced, but due to advertising with credits to people, I can't release it here because the rules are nazified now in 2020 on mpgh. Already have a menu working too that's external injection

    Code:
    class ESP
        {
            static Material espMaterial;
    
            public static Material GetLineMaterial()
            {
                if (espMaterial == null)
                {
                    //For everyone wondering how I knew which ints I had to set. take a look at this https://docs.unity3d.com/ScriptReference/GL.html
                    espMaterial = new Material(Shader.Find("Hidden/Internal-Colored"));
                    espMaterial.hideFlags = HideFlags.HideAndDontSave;
                    espMaterial.SetInt("_SrcBlend", 5);
                    espMaterial.SetInt("_DstBlend", 10);
                    espMaterial.SetInt("_Cull", 0);
                    espMaterial.SetInt("_ZWrite", 0);
                }
                return espMaterial;
            }
    
            public static bool IsInScreen(Vector3 pos)
            {
                if (Camera.main != null)
                {
                    Vector3 vector = Camera.main.transform.InverseTransformPoint(pos);
                    Vector3 vector2 = Camera.main.WorldToScreenPoint(pos);
                    if (vector2.x > 0f && vector2.x < (float)Screen.width && vector2.y > 0f && vector2.y < (float)Screen.height && vector.z > 0f)
                    {
                        return true;
                    }
                }
                return false;
            }
    
            public static void RenderLines(Vector2 pointA, Vector2 pointB, Color color)
            {
                if (GetLineMaterial() != null)
                {
                    GetLineMaterial().SetPass(0);
                    GL.Begin(1);
                    GL.Color(color);
                    GL.Vertex3(pointA.x, pointA.y, 0f);
                    GL.Vertex3(pointB.x, pointB.y, 0f);
                    GL.End();
                }
            }
        }
    All credits for that go to my friend Octowolve

    The rest I can't post due to links and such in the credits

    commando: You're probably the best non-coder coder I know LOL


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

    Bodvar (06-18-2020),QuachGia (06-18-2020)

  12. #25
    96neko's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Location
    00:25:B5:AA:01:1F
    Posts
    768
    Reputation
    10
    Thanks
    142
    My Mood
    Angelic
    Quote Originally Posted by supercarz1991 View Post
    (i'm techx everywhere else btw)

    The game is so easy to modify, its stupid. Zero protection on the code. Took less than 10 minutes to make an ESP hack that we've already open sourced, but due to advertising with credits to people, I can't release it here because the rules are nazified now in 2020 on mpgh. Already have a menu working too that's external injection

    Code:
    class ESP
        {
            static Material espMaterial;
    
            public static Material GetLineMaterial()
            {
                if (espMaterial == null)
                {
                    //For everyone wondering how I knew which ints I had to set. take a look at this https://docs.unity3d.com/ScriptReference/GL.html
                    espMaterial = new Material(Shader.Find("Hidden/Internal-Colored"));
                    espMaterial.hideFlags = HideFlags.HideAndDontSave;
                    espMaterial.SetInt("_SrcBlend", 5);
                    espMaterial.SetInt("_DstBlend", 10);
                    espMaterial.SetInt("_Cull", 0);
                    espMaterial.SetInt("_ZWrite", 0);
                }
                return espMaterial;
            }
    
            public static bool IsInScreen(Vector3 pos)
            {
                if (Camera.main != null)
                {
                    Vector3 vector = Camera.main.transform.InverseTransformPoint(pos);
                    Vector3 vector2 = Camera.main.WorldToScreenPoint(pos);
                    if (vector2.x > 0f && vector2.x < (float)Screen.width && vector2.y > 0f && vector2.y < (float)Screen.height && vector.z > 0f)
                    {
                        return true;
                    }
                }
                return false;
            }
    
            public static void RenderLines(Vector2 pointA, Vector2 pointB, Color color)
            {
                if (GetLineMaterial() != null)
                {
                    GetLineMaterial().SetPass(0);
                    GL.Begin(1);
                    GL.Color(color);
                    GL.Vertex3(pointA.x, pointA.y, 0f);
                    GL.Vertex3(pointB.x, pointB.y, 0f);
                    GL.End();
                }
            }
        }
    All credits for that go to my friend Octowolve

    The rest I can't post due to links and such in the credits
    can you post all the decrypted files u did ? plus i already did post few stuff , you can check my thread in the programming sub forum of the CF section . the game is old btw and it's released in China and Iran before as web game called CFW , not sure why did SmileGate had to go with this ...



  13. The Following User Says Thank You to 96neko For This Useful Post:

    QuachGia (06-18-2020)

  14. #26
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh
    Quote Originally Posted by 96neko View Post
    can you post all the decrypted files u did ? plus i already did post few stuff , you can check my thread in the programming sub forum of the CF section . the game is old btw and it's released in China and Iran before as web game called CFW , not sure why did SmileGate had to go with this ...
    do you have download links for that versions game client? I collect stuff like this. That's how I have so much Lithtech stuff lol I have nearly a 650gb of lithtech collected things

    commando: You're probably the best non-coder coder I know LOL


  15. #27
    abishizohashirama's Avatar
    Join Date
    Jul 2020
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    CrossFire Zero? is that the latest CF now?

Page 2 of 2 FirstFirst 12

Similar Threads

  1. Closed beta (crossfire eu)
    By Coder[Vb10e] in forum CrossFire Discussions
    Replies: 8
    Last Post: 08-27-2011, 07:43 AM
  2. CROSSFIRE - Closed Beta account: Captain rank and rare IGN !!
    By Valid_ in forum Selling Accounts/Keys/Items
    Replies: 1
    Last Post: 05-22-2011, 03:52 PM
  3. CROSSFIRE - Closed Beta account: Captain rank and rare IGN 10€!!!!!!!!!
    By Valid_ in forum Selling Accounts/Keys/Items
    Replies: 0
    Last Post: 05-22-2011, 01:26 PM
  4. CROSSFIRE - Closed Beta account: Captain rank and rare IGN CHEAP
    By Valid_ in forum Selling Accounts/Keys/Items
    Replies: 1
    Last Post: 05-18-2011, 01:17 PM