Go Back   GamerzPlanet - For All Your Online Gaming Needs!! > Online Gaming > Combat Arms

Combat Arms Discuss anything about Combat Arms. Combat Arms Glitches Combat Arms Hacks


Need a C++ Memory Hack Teacher (I'll Pay)

Combat Arms


Reply
 
Thread Tools Display Modes
Old 10-26-2009, 09:16 PM   #1
Nǝxus
Lurker
 
Last Online: 11-12-2009 07:05 PM
Join Date: Oct 2009
Posts: 3
Rep Power: 0
Rep Points: 10
Nǝxus is on a distinguished road
Feedback: (0)
Points: 638.27
Bank: 0.00
Total Points: 638.27
Arrow Need a C++ Memory Hack Teacher (I'll Pay)

Hey guys

Well, I am willing to pay anybody that is willing to give some time with me on learning how to memory edit in c++ and how to make trainers, similar to Gordons.

I know html, javascript, css, ajax, jquery, php, mysql, and more website making launguages. But this is my first programming launguage. So I do know about programming and a little about C++. So you wont have to begin from 0.

If you are willing to spend your time teaching me how to memory edit, and how to keep the address and pin point, so the address wont change every time. Than I am willing to pay you. You name the price as long as I learn.

E-Mail me at [Only registered and activated users can see links. ] if you're interested.

You don't have to be a pro, just know how to memory edit, how to make GUI trainers, similar to Gordons, and how to keep the address from changing.

Contact me.

xus
Nǝxus is offline   Reply With Quote
Old 10-27-2009, 06:45 PM   #2
theblues919
Registered User
 
Last Online: Yesterday 04:45 PM
Join Date: Aug 2008
Posts: 48
Rep Power: 0
Rep Points: 10
theblues919 is on a distinguished road
Feedback: (0)
Points: 13,644.26
Bank: 0.00
Total Points: 13,644.26
Re: Need a C++ Memory Hack Teacher (I'll Pay)

C++ is isn't something someone can teach you. You have to learn it on your own through trial and error.
theblues919 is offline   Reply With Quote
Old 10-28-2009, 10:10 AM   #3
Iamazn
Registered User
 
Last Online: Yesterday 11:20 PM
Join Date: Dec 2008
Posts: 23
Rep Power: 0
Rep Points: 12
Iamazn is on a distinguished road
Feedback: (0)
Points: 9,013.69
Bank: 0.00
Total Points: 9,013.69
Re: Need a C++ Memory Hack Teacher (I'll Pay)

Quote:
Originally Posted by theblues919 View Post
C++ is isn't something someone can teach you. You have to learn it on your own through trial and error.
You are wrong. Get your facts straight before you post.
Iamazn is offline   Reply With Quote
Old 10-27-2009, 08:47 PM   #4
Tricksz
Registered User
 
Last Online: 11-16-2009 04:56 PM
Join Date: Apr 2009
Posts: 21
Rep Power: 0
Rep Points: 10
Tricksz is on a distinguished road
Feedback: (0)
Points: 3,344.65
Bank: 0.00
Total Points: 3,344.65
Re: Need a C++ Memory Hack Teacher (I'll Pay)

I see your trying to learn and I fully respect that, and what the person above you said was incorrect. You can learn C++ by someone else but it is not very easy. You are behind a computer and its hard to communitcate because you can not fully express yourself.

I suggest you look up guides on youtube, start off with BASIC C++. Maybe even Visual Basics. There are a million online books and guides for FREE out there. It is very easy to just follow guides that are professionally devloped by people with expiriance. The way I learned how to code Java Applications was; I looked at other scripts and got every bits of information out of it. For example I coded MapleStory private server NPC's, and this is EXACTLY how I learned;

I saw a script which said something like this:

Code:
if (player.getMesos >= 1000) {
          cm.sendOk("Alright it looks like to me you have 1000 Mesos. Ill take you to (MAP)");
          cm.gainMesos(-1000);
          cm.warp(MAP ID);
} else {
          cm.sendOk("It seems to me that you do not have 1000 Mesos.");
          cm.dispose();
}
Now from the script above I could clearly tell what some of the parts did, and so I messed around and change the meso rate. Then changed the map ID, then some of the text and after along period of time I spend working on random scripts, one day finally I could code this(I can do much better, this is just a script I had saved & I also now code full repacks internally and externally):

Code:
/*
Server Quest NPC
Made by: Tricks
 */

function start() {
    status = -1;
    action(1, 0, 0);
}

function action(mode, type, selection) {
    if(mode == -1) {
        cm.dispose();
    } else {
        if(mode == 1) {
            status++;
        }
        if (status == 0) {
            cm.sendNext("Hey #h!#, got a minute?");
        } else if (status == 1) {
            if (cm.getPlayer().getLevel() == 0 ) {
                cm.sendOk("ErrorCode2, you are level 0 or 255.");// errorcode7
                cm.dispose();
            } else if (cm.getPlayer().getLevel() > 99) {
                cm.sendSimple("ErrorCode3");//selections are already done #L4 and #L5 errorcode3
        cm.dispose();
            } else if (cm.getPlayer().getLevel() > 29) {
                cm.sendSimple("Hey this is no joke, the city of #bOrbis#k is in danger because of the ancient monster called #bZakum#k. I want you to kill Zakum, can you do that? \r\n#L0# Zakum? Sounds easy. Ill do it. \r\n#L1#ZAKUM? ARE YOU CRAZY!?");
            } else {
                cm.dispose();
            }
        } else if (status == 2) {
            if (selection == 0) {
                cm.sendSimple("Okay so all you have to do is kill #bZakum#k and then return to me with any type of #bZakum Helm#k. Can you do that? \r\n#L2#Sure in fact, I have the items.\r\n#L3#Uhh.. Ill try my best to kill Zakum");
            } else if (selection == 1) {
                cm.sendOk("Yeah I understand what you mean.");
                cm.dispose();
            } else if (selection == 4) {
                cm.sendOk("");
            } else if (selection == 5) {
                cm.sendOk("Dude... seriously? You fail!");
                cm.dispose();
            } else {
                cm.dispose();
            }
        } else if (status == 3) {
            if (selection == 2) {
                if (cm.itemQuantity() == 1 || cm.itemQuantity() == 1 || cm.itemQuantity() == 1) {
                    cm.sendOk("Wow!! Thanks alot! You're the best!! Oh I almost forgot, as I promised: #b100,000 EXP#k and #b1,000,000 Mesos!#k");
                    cm.gainItem(4000000, -50);
                    cm.gainMeso(1000000);
                    cm.gainItem(4000016, -50)
                    cm.gainExp(100000);
                    cm.gainItem(4000019, -50);
                    cm.dispose();
                } else {
                    cm.sendOk("You dont have a #bZakum Helm#k.");
                    cm.dispose();
                }
            } else if (selection == 3) {
                cm.sendOk("Alright... and please try to hurry, #bOrbis#k is in danger.");
                cm.dispose();
            }
        }
    }
}
You can use the SCRIPT above but please give me credit.

Basiclly what Im trying to tell you is that, its very easy to learn how to code. It just gets annoying and takes time. I still suggest you learning from a book, its simply less annoying.

Once you've learned how to create something, you devlope farther and explore many more things. Make sure you mess around with things, its very important that you find diffrent ways of doing diffrent things.

So go to a bookstore tonight, buy yourself some C++ or visualbasics books, and learn how to code some basic things. Then search for online guides how to Memory Edit.

I am very sorry for my poor english, please dont mind I am new to the U.S.A.

- Tricks

Last edited by Tricksz; 10-27-2009 at 08:51 PM.
Tricksz is offline   Reply With Quote
Old 10-28-2009, 03:31 PM   #5
Nǝxus
Lurker
 
Last Online: 11-12-2009 07:05 PM
Join Date: Oct 2009
Posts: 3
Rep Power: 0
Rep Points: 10
Nǝxus is on a distinguished road
Feedback: (0)
Points: 638.27
Bank: 0.00
Total Points: 638.27
Re: Need a C++ Memory Hack Teacher (I'll Pay)

Thanks Tricks, but I was looking for more of like a Trainer or on a tutorial on how to pin down the address.. if anyone can teach me how to do that that 'll be great
Nǝxus is offline   Reply With Quote
Reply

Bookmarks

Tags
help c++ teacher pay

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Forum Jump

All times are GMT -7. The time now is 02:07 AM.

 

Copyright ©2009, GamerzPlanet.Net
Visits: