Thread: Token Editor

Page 1 of 5 123 ... LastLast
Results 1 to 15 of 74
  1. #1
    Nathan's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    In a magical place
    Posts
    6,113
    Reputation
    394
    Thanks
    363

    Token Editor

    Here's a prestige token editor. It'll be in twitter's stat changer in his next release.

    Vac status:
    Quote Originally Posted by master131 View Post
    /file approved

    It's clean, just edits 1 address. Don't think VAC will ban you for this but still, USE AT YOUR OWN RISK!
    I'll repeat, use at own risk, I'm not giving you a new game if you're banned.

    How to use:
    -Open this and MW3 MP
    -Type the amount of tokens you want, and hit "Set tokens".
    -Idk if this is needed, but go online and play some matches, this will save the new token value.

    Screenshot:


    Update:
    Added a more detailed messages for the mentally challenged people in this community.

    New virusscans:
    Jotti
    Virustotal

    Source:
    Code:
    using System;using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.Diagnostics;
    
    
    namespace Token
    {
        public partial class mainForm : Form
        {
            public mainForm()
            {
                InitializeComponent();
                processTimer.Start();
            }
    
    
            private void cmdToken_Click(object sender, EventArgs e)
            {
                try
                {
                    CookieAPI.Memory mem = new CookieAPI.Memory("iw5mp");
                    try
                    {
                        if (tokenBox.Text.Length > 0)
                        {
                            mem.SetMemory(0x01CCE0BF, int.Parse(tokenBox.Text), 4);
                        }
                        else
                        {
                            MessageBox.Show("Please enter a value into the textbox.", "Error");
                        }
                    }
                    catch (Exception ex)
                    {
                        MessageBox.Show("Please enter a numeric value into the textbox.", "Error");
                    }
                }
                catch (Exception ex)
                {
                    MessageBox.Show("Please keep CookieAPI.dll in the same folder as the application.", "Error");   
                }
            }
    
    
            private void processTimer_Tick(object sender, EventArgs e)
            {
                cmdToken.Enabled = isRunning();
                tokenBox.Enabled = isRunning();
                if (isRunning())
                {
                    label1.Text = "MW3 is running";
                    label1.ForeColor = Color.Green;
                }
                else
                {
                    label1.Text = "MW3 is not running";
                    label1.ForeColor = Color.Red;
                }
            }
    
    
            private bool isRunning()
            {
                return Process.GetProcessesByName("iw5mp").Length > 0;
            }
        }
    }
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Nathan; 11-12-2011 at 08:40 AM. Reason: Cleaned up the thread

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

    ABSINTHE5537 (11-17-2011),bl0cker (09-14-2012),danner (11-12-2011),HellRaz0r (11-12-2011),jimmys96 (11-12-2011),kazei009 (11-12-2011),matt3570 (07-10-2012),mestate65 (11-12-2011),qazxswplmnko (11-13-2011),qwerty765890 (10-17-2012),rykrd0 (06-17-2012),Slipe (11-18-2011),vidmavidma (02-23-2012),xuzzy (06-10-2012)

  3. #2
    cihanbaba's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    istanbul
    Posts
    24
    Reputation
    10
    Thanks
    0
    What is token ?


    Respect List: (Thank you very much)

    mw00Studios
    MW2 HACK TEAM
    Bluthera
    Langeland






  4. #3
    davman05's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    87
    Reputation
    10
    Thanks
    185
    My Mood
    Amazed
    Prestige token is Prestige shop

  5. #4
    flaviuse's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    The download doesn't work

  6. #5
    MohNeuker's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    81
    Reputation
    10
    Thanks
    4
    there is no download

  7. #6
    Rytex's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    Seoul
    Posts
    6
    Reputation
    10
    Thanks
    1
    My Mood
    Yeehaw
    Calm down guys. The file needs to be approved first. Please read the caption... "Attachments Pending Approval".

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

    Gulianos (11-13-2011)

  9. #7
    Son Goku's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    1,184
    Reputation
    7
    Thanks
    215
    My Mood
    Yeehaw
    Only thing i was looking for, please state if its detected or not.


    ----------------------------------------

    Join The Starcraft 2 Section Here!

  10. #8
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,667
    My Mood
    Breezy
    /file approved

    It's clean, just edits 1 address. Don't think VAC will ban you for this but still, USE AT YOUR OWN RISK!
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  11. #9
    Threadstarter
    Still a Cookie at heart
    Donator
    Nathan's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    In a magical place
    Posts
    6,113
    Reputation
    394
    Thanks
    363
    Here's the source for anymore interested

    Code:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.Diagnostics;
    
    namespace Token
    {
        public partial class mainForm : Form
        {
            public mainForm()
            {
                InitializeComponent();
                processTimer.Start();
            }
    
            private void cmdToken_Click(object sender, EventArgs e)
            {
                try
                {
                    CookieAPI.Memory mem = new CookieAPI.Memory("iw5mp");
                    mem.SetMemory(0x01CCE0BF, int.Parse(tokenBox.Text), 4);
                }
                catch (Exception ex)
                {
                    MessageBox.Show("Please enter a numeric value into the textbox.");
                }
            }
    
            private void processTimer_Tick(object sender, EventArgs e)
            {
                if (isRunning())
                {
                    cmdToken.Enabled = true;
                    tokenBox.Enabled = true;
                    label1.Text = "MW3 is running";
                    label1.ForeColor = Color.Green;
    
                }
                else
                {
                    cmdToken.Enabled = false;
                    tokenBox.Enabled = false;
                    label1.Text = "MW3 is not running";
                    label1.ForeColor = Color.Red;
                }
            }
    
            private bool isRunning()
            {
                foreach (Process p in Process.GetProcesses())
                {
                    if (p.ProcessName.Contains("iw5mp"))
                    {
                        return true;
                    }
                }
                return false;
            }
        }
    }
    But you could have also refactored it to see the code, I didn't obfuscate the file.

  12. #10
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,667
    My Mood
    Breezy
    A simpler isRunning method would be this:
    Code:
    bool isRunning()
    {
        return Process.GetProcessesByName("iw5mp").Length > 0;
    }
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  13. #11
    cihanbaba's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    istanbul
    Posts
    24
    Reputation
    10
    Thanks
    0
    It works well. Double XP + Double Weapon XP !


    Respect List: (Thank you very much)

    mw00Studios
    MW2 HACK TEAM
    Bluthera
    Langeland






  14. #12
    Threadstarter
    Still a Cookie at heart
    Donator
    Nathan's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    In a magical place
    Posts
    6,113
    Reputation
    394
    Thanks
    363
    Quote Originally Posted by master131 View Post
    A simpler isRunning method would be this:
    Code:
    bool isRunning()
    {
        return Process.GetProcessesByName("iw5mp").Length > 0;
    }
    Oh yeah, I forgot about that one .

  15. #13
    redcow789's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    up an arse
    Posts
    4
    Reputation
    3
    Thanks
    0
    My Mood
    Angry
    1 thing... WILL i get banned? i dont want to use it then get banned and of wasted my money -____-

  16. #14
    Threadstarter
    Still a Cookie at heart
    Donator
    Nathan's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    In a magical place
    Posts
    6,113
    Reputation
    394
    Thanks
    363
    Quote Originally Posted by redcow789 View Post
    1 thing... WILL i get banned? i dont want to use it then get banned and of wasted my money -____-
    Read master131's post.

    Quote Originally Posted by master131 View Post
    /file approved

    It's clean, just edits 1 address. Don't think VAC will ban you for this but still, USE AT YOUR OWN RISK!

  17. #15
    redcow789's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    up an arse
    Posts
    4
    Reputation
    3
    Thanks
    0
    My Mood
    Angry
    Quote Originally Posted by Cookie. View Post


    Read master131's post.

    ahh, dunno if im gna take the risk =).

Page 1 of 5 123 ... LastLast

Similar Threads

  1. mrs editor
    By rikrik in forum Gunz General
    Replies: 7
    Last Post: 12-27-2009, 05:21 PM
  2. client editors
    By AN1MAL in forum Suggestions, Requests & General Help
    Replies: 3
    Last Post: 11-25-2006, 07:37 PM
  3. [Request] Client editors...
    By SATANICAT in forum Suggestions, Requests & General Help
    Replies: 0
    Last Post: 10-24-2006, 06:38 PM
  4. Lineage 2 Walker 10.6.1 + Token To Private Servers
    By Flawless in forum General Game Hacking
    Replies: 0
    Last Post: 01-24-2006, 05:04 AM