Wednesday, December 25, 2013

[C++] Lot´s of Books for you guys to learn!

Today I will be sharing a C++ book pack...


Link : http://www.mediafire.com/download/pv4nd6o7y8zfno7/LearnC%2B%2BBookPack--MW2TopTenWORLD.torrent

NGU : http://www.nextgenupdate.com/forums/computer-programming/705157-c-c-vbulletin-e-book-pack.html

Seed!!!

Video : http://www.youtube.com/watch?v=t0RELM7bpWk

Embed :


Image of the package :

[RELEASE] Android Manager (ADB)

Hey everyone...
Today I am releasing my Android Manager (ADB)..

OS : Windows x86 / x64
Type : Release
Language : C#


Functions : 

- Install .apk´s very fastly (paid apps for free!)
- Backup photos
- Reboot to recovery
- Backup musics
- Send musics
- Send photos


Here is page 1 picture : http://gyazo.com/38347f55f679d4b8dfb4ca86635a3d15
Page 2 : http://gyazo.com/b40a5f0d74ecbc9c4ef3ded4f4d05270 <- not it haves more stuff


Video  :  http://youtu.be/ROAOe59c5Vc

Embed :

Download :

MediaFire : https://www.mediafire.com/?mxgsagymn29sm32
or for a faster download : http://www.mediafire.com/download/dcaty1qeytwpki9/Android(ADB)Manager.rar.torrent



Enjoy!!!

Monday, December 23, 2013

[PREVIEW] MW2 1.2.208 Steam Tool - ALL CLIENTS

Hey everyone!
Today I am here to preview you guys my MW2 Steam Mod Tool...
Unlike my Steam hack tool this was written in C# instead of C++
This allows you to :

- Use non.host mods
- Host modded private matches {HOST}
- Host moddded online lobbies {HOST}
- Acess Client´s (players) stuff and change them {HOST}

This can also be called a "All Client hack tool"

So the full name is : "MW2 All-Clients Steam 1.2.208 Mod Tool"

The release should be very soon , it is currently 10% made :).

Twitter post : https://twitter.com/MW2Top/status/415243462733090816
Facebook post : https://www.facebook.com/DEVStudios/posts/468949576548742
Google+ Post : https://plus.google.com/u/0/b/108802061011048476604/108802061011048476604/posts/VTLmadAQi56

YouTube Video :  http://youtu.be/MEYa4nxr4h4

Embed :

Sunday, December 15, 2013

[C# Tut] Read & Write from and to a file!!

Hey everyone!!
Today I will be teaching you on how to read and write from a file in C#....

First you will need a DLL called "PackageIO.dll" you can do it without it but it´s alot easier this way!

PackageIO Download : https://www.mediafire.com/?9ycfytxit437rbz

Also you might need an hex converter.... : http://www.mathsisfun.com/binary-decimal-hexadecimal-converter.html

Now on Visual Studio press Project -> Add Reference -> Browse -> Browse... and select it (the dll) then press Ok

Ok, now add :

using PackageIO; to the usings section :)

Now add a string called path under your partial class..

string path;

Alright...

Now let´s make a OpenFileDialog for our Open Button

OpenFileDialog open = new OpenFileDialog();
open.Title = "Choose your DF3 Text File..."; //it says DF3 because in the video tutorial I pretended this was for a game called DF3
open.Filter = "Text Files (.txt) | *.txt";
if (open.ShowDialog == DialogResult.OK)
{
path = open.FileName;
...
}
else
{
MessageBox.Show("Could not open file!!");
}

Now if you are just opening a regular file you can just put a sucess MessageBox in DialogResult.OK...

However as I am making for this "DF3" Game I will add prior verification.. I added the word DF3GAMEFILE on Offset 0x0..

So do this

 if (open.ShowDialog() == DialogResult.OK)
            {
                path = open.FileName;
                Reader readfile = new Reader(path);
                readfile.Position = 0x0;
                if (readfile.PeekString(0xB) == "DF3GAMEFILE") //0x0B is the lenght
                {
                    MessageBox.Show("The file has been opened!");
                    groupBox1.Enabled = true;
                    ....
                 
                }
                else
                {
                    MessageBox.Show("The file has been found however it was not a DF3 File!!!");
                }

            }
            else
            {
                 MessageBox.Show("Could not open file!!");
            }


Alright now get something to read from... I will be reading the suposed MOTD.. which I putted on offset 0x225 (if it was an actual game you wouldnt put it there you would find it ;))

So to read it add this to the sucess open file dialog

   readfile.Position = 0x225;
                    textBox1.Text = Convert.ToString(readfile.PeekString(0x3F));

Alright .. also "readfile.PeekString(0x3F)); 3F is the length... you can find the lenght on HxD..


Now let´s write to the file the contents of textBox1.Text..

first set textBox1.Text Max length to the length allowed by default on the file (till it reaches the next null byte (00)

by doing :

textBox1.MaxLength = 63;

Why 63?? ... Because thats how much 3F is converted to normal numbers :) ...

Ok now just add this to your button

 Writer write = new Writer(path, Endian.Little, 0L);
            write.Position = 0x225;
            write.WriteString(textBox1.Text);

And your done!!!

ALSO : Don´t forget of the 0x before the offset ;)!!

Note if I forgot something let  me know :)

Final Source : http://pastebin.com/zsSp8hE3

Video Version : http://youtu.be/4NmYWArhH1s



Saturday, December 14, 2013

2000 SUBSCRIBERS!!!!!!!!

Just to tell you all THANK YOU for 2000 subcribers :)


Steam key giveaway soon ;)

2000 SUBSCRIBERS!!!!!!!!

Just to tell you all THANK YOU for 2000 subcribers :)


Steam key giveaway soon ;)

Friday, December 13, 2013

[C++ TUT] PC Memory Editor (Trainer , RTM Tool)

Hello everyone!
Today I will be teaching you on how to make a game hack in C++!!
We will be making one for Steam MW2...

First add some includes...

#include <iostream>
#include <windows.h>

Now just add the usual namespace :P

using namespace std;

Now add your main function

int main()
{

}

Alright now let´s make a cout...

cout << "Make sure Modern Warfare 2 is Opened before opening the tool! << endl;
system("Pause");

Now let´s create a FindWindow function (WINDOW NAME NOT PROCESS NAME!!)!

LPCWSTR Fuck = L"Modern Warfare 2";
HWND hwnd = FindWindow(0, Fuck);

Now we need to create some basic if code to determinate if the Window is opened or not...

if (hwnd == 0)
{
cout << "The game has not been found... please open it before opening the tool next time..." << endl;
system("Pause");
}
else
{
             cout << "Modern Warfare 2 has been found... Enjoy the tool!" << endl;
        }

Great!


Now you need to add a DWORD , a Function that gets the process ID and writes it to the DWORD and a
Handle function...

DWORD process_ID;
GetWindowThreadProcessId(hwnd, &process_ID);
HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, process_ID);

Now populate it with options!

I will just be doing XP here...

cout << "Type 1 for XP" << endl;
cout << "Type : ";
int Option;
cin >> Option;

Now let´s make the options if code and the actual write memory code :)

if (Option > 1)
{
cout << "There is no option higher than 1..." << endl;
system("Pause");
}
if (Option == 1)
{
...
                }

Ok :)
Now let´s make a cout that ask us how much XP do we want to write..

cout << "What do you want to set your XP as?" << endl;
cout << "Type : ";
int XP;
cin >> XP;

Alright now you need to convert the XP to a byte....

by doing this :
DWORD newdatasize = sizeof(XP);

Now finally we are going to write process memory!!

if (WriteProcessMemory(hProcess, (LPVOID)0x01B2C89C, &XP, newdatasize, NULL))
{
cout << "The XP has been written sucessfully!!" << endl;
system("Pause");
}
else
{
cout << "There was an error writing the XP..." << endl;
system("Pause");
}

Basicly we are doing if code so we dont get a nasty error when something goes wrong..
Also il explain the WriteProcessMemory syntax... :
WriteProcessMemory(ToThisProcessID, (LPVOID)ToThisOffset, &XP , WithTheseBytes, NULL))...

Now just add the "looping" main(); and a return 0; code :) ...

You have just made a memory editor!!!

Final source : http://pastebin.com/EU6yrXpe


Video version : http://www.youtube.com/watch?v=Rq89e07N74g

Thursday, December 12, 2013

First C++ Tutorial - Basic User Interaction

Hey everyone!
Have you guys checked my newest tutorial?..

Well.... check it here!! : http://mw2toptenworld.blogspot.pt/p/c-tut-basic-user-interaction.html


I hope that it helps alot of people :)

Monday, December 9, 2013

New program release.. MW2 Steam Editor

Hey everyone!!
Today I am releasing my MW2 Steam tool :)...

Let´s start shall we??.......

Well.. everything you need is here : http://mw2toptenworld.blogspot.pt/p/program-releases.html

So enjoy :)

Sunday, December 8, 2013

LEARNING C++!!!

Hey!!!!
Just letting you guys know that I am now learning C++!!
I am still very newbie with it , so the only thing I made so far was a Simple Modern Warfare 2 Steam tool...

I Will keep you updated with tutorials and releases as I keep learning :) ..

Note : Not all releases will be made in C++... Only some ;)

Friday, December 6, 2013

Anyone wondering about Zone Editor???

Hey I made a video to talk about it :) https://www.youtube.com/watch?feature=player_embedded&v=J-50FusoQ8A

Hey just a MW2 Gameplay talking about the future release of my zone editor and talking about FOV... Basicly Zone Editor will be released soon and FOV please try to listen... I Generally dont do a summary of the video but the game sound was louder than the voice ;(

Twitter post : https://twitter.com/MW2Top/status/408994148583096322
Facebook post : https://www.facebook.com/DEVStudios/posts/461903167253383
Google+ Post : https://plus.google.com/u/0/b/108802061011048476604/108802061011048476604/posts/P4pqEkiacXX

Please like this video , +1 it , share it .. !!
Please click this link :) : http://allgamesfor.me/?id=526456

Monday, December 2, 2013

Me being a noob on MW2 Steam xD!!

Hey everyone!!!!
I recorded a simple Intervention gameplay on RunDown on MW2 Steam..
and oh well it didnt went very well....

See it for yourself xD

MW2T™ - MW2 PC Ep.1 : "I Suck on PC!! ;("

 I suck on PC (Started 3 days ago)
Don´t jugde lol :D

Hope you "enjoyed" this video!!!

Twitter post : https://twitter.com/MW2Top/status/407562467733012480
Facebook post : https://www.facebook.com/DEVStudios/posts/460281404082226
Google+ Post : https://plus.google.com/u/0/b/108802061011048476604/108802061011048476604/posts/bCuZX196Upe




Note : if you have MW2 on Steam add me!! My steam is : MW2TopTenWORLD

Sunday, December 1, 2013

How to make a RTM Tool - Part 3

Hey everyone , today I will be basicly showing you another video in the series of 'How to make a PS3 RTM Tool'.......

Video

please leave ideas for part 4 below because part 3 is very short ;( ...

Download folder (with samples)  : https://www.mediafire.com/?koqz8a652nqat6k
Virus scan : https://www.virustotal.com/en/file/29ab7ea3293787c1942fa65039c8ebb680e13d4a56d135166fcfea4b4af83b9c/analysis/1385919467/

Twitter post : https://twitter.com/MW2Top/status/407202116806012928
Facebook post : https://www.facebook.com/DEVStudios/posts/459937824116584
NGU Post : Soon
Google+ Post : https://plus.google.com/u/0/b/108802061011048476604/108802061011048476604/posts/KYPv1pxUu3y

Please like this post , +1 it , share it .. !!

Please click these links!! : http://freesteamgifts.com/index.php?id=632226 
  http://allgamesfor.me/?id=243172

Monday, November 25, 2013

TeknoMW3 Tool , Making-Of....

Hey everyone!
Here´s a new post for my blog today!! , lol...
Well I just released a making-of video of my TeknoMW3 Tool....

It shows , me making the WHOLE tool .. yes the video is quite long (30 minutes) but please watch it , like it , share it , +1 it , favorite it , comment on it... etc....

Well here is the link : MW2T™ - [Speed Programming / Making of] TeknoMW3 Tool

Oh welll, thats basicly it, I hope you liked this post and like the video too!!

Keep tuned for How to make a RTM Tool Part 3 and for the tool release..

Thanks for all my subs and 'followers' who keep up with me everyday! 

Sunday, November 24, 2013

TeknoMW3 Tool Sneak Peak!

Hey!!!

Are any of you guys interested in downloading my TeknoMW3 tool in the future??...

Well heres a sneak peak for you guys :P!!!

Video


Stay tuned and enjoy!!!

Saturday, November 23, 2013

Call of Duty : Ghosts 1.04 Tool Release!!

Hey Call of Duty Modders!
Well RTM´ing via the Debugger is a bit boring and stuff..

So for all of you who downloaded the 1.04 Update heres a tool for you!

Tool

That´s all for today , hope you enjoyed!

Thursday, November 21, 2013

MW2TopTenWORLD´s newest Channel AD! and more..

Hey everyone!!!
Just sharing here my newest channel Trailer / Ad that I made for my youtube channel..

If you aren´t using an AdBlocker (I hope your not (google should remove it of WebStore -.- )) then you will see it soon if you like modding and stuff!!....

Well with that being said I am also here to announce DEV Studios newest channel!


So here are the links


Channel Ad / Trailer : Video
DEV Studios new channel! : DEV Studios channel

Monday, November 18, 2013

New YouTube Video.. IDA Pro #1

Hello you 'crackers' , 'modders' , 'hackers' and 'researchers' that use or want to use IDA Pro...

Did you know that from now On I´l start to make tutorials on IDA Pro?....

I Just released tutorial number 1!!!


"How to Create a Strings list"

Why is this usefull?..

- Finding crutial program elements
- Researching games
- Researching SaveGames
- Researching .ZONE or any other Game Element (files).
- YOU NAME IT!!!


Here is the video : http://youtu.be/Q4rzNWc1hPA

You may also find it in the "Youtube Videos and News" Tab!!!

What are you waiting for? Go smash the like , favorite and subscribe button! Don´t forget to G+ it and to share it EVERYWHERE!!!

Saturday, November 16, 2013

How to : Download a Torrent..

Hey!
Do You guys ever wondered on how to download a torrent? ...

Even tough its very simple there are a lot of persons who don´t  know how to!

Video : http://youtu.be/2mMJE7Nm9l8

Steps :

1st - Download uTorrent
2nd - Get a Torrent file or go to a torrent sharing site.
3rd - Download it!

Simple right?!

NOTE : I DO NOT ENCOURAGE THE DOWNLOAD OF COPYRIGHTED CONTENT!
DOWNLOADING COPYRIGHTED CONTENT (Such as Movies , Games , Software...) IS ILLEGAL!

IT´S YOUR OWN RISK IF YOU USE uTorrent FOR ILLEGAL ACTS OR IF YOU USE SITES LIKE THEPIRATEBAY!!

Friday, November 15, 2013

New YouTube Video , stay tuned to me!

Hey!
Do you wanna keep tuned with me? ..

Check my newest video : http://youtu.be/S1jvQP8-es8

If your wondering here is how you can connect to me!! :

Blog : http://mw2toptenworld.blogspot.pt
NGU : http://www.nextgenupdate.com/forums/members/963282-mw2toptenworld.html
Twitter : http://www.twitter.com/MW2Top
Facebook : http://www.facebook.com/DEVStudios
G+ : https://plus.google.com/u/0/b/108802061011048476604/108802061011048476604/
Skype : diogo.verissimo4
Email : mw2toptenworldmodz@gmail.com
Phone : +351925767859 (+351 = Portugal)

Tuesday, November 12, 2013

About Me!

Hello everyone!!
About me..
I Live in Portugal , Aveiro
I am a Modder
I am a Programmer
I am a Gamer
I am a YouTuber
I am a Student
...
I love all my friends , my pets and I like computer stuff!
My dream is to learn C++ , (finish) C# , JAVA and JS...
Currently I know :

C#
VB
GSC
CFG
Hex (quite not a language but....)


My Pages are :

Enjoy!!

Friday, November 8, 2013

New videeo!!!

New video uploaded!!!
You can also check it in the YouTube Videos and News page!!

Tool ideas?

Does anyone haves a tool idea?i waa thinking of fourdeltaone rtm tool for blackops2?

YouTube Video

Rendering a "How to make a PS3 RTM Tool" Video, dont forget to watch it when it´s uploaded!!

Welcome

Welcome to my Blog!