ItsMods

Full Version: Being anonymous at aIW
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4
Hex editing that in original mw2 = VAC BAN. @OrangePL and @Nukem : this is even older than that guy post, some guy from aiw staff said how some months ago(maybe a year, Big Grin)
I once did this in original MW2 with name stealing, so everyone was blaming others for HAX.
(so it changed automagically)
(10-09-2011, 10:25)SuperNovaAO Wrote: [ -> ]I once did this in original MW2 with name stealing, so everyone was blaming others for HAX.
(so it changed automagically)

@SuperNovaAO Do it for aIW or at least post the code Big Grin
1. Find the pointer to your own name.
2. Find the struct of all other players.
3. Change your name once every 3+ frames (to not get kicked for command overflow if you would do it every frame).
4. ???
5. PROFIT?!
&feature=channel_video_title
itshax 8)
@SuperNovaAO something understandable for less experienced ppl ?
(10-09-2011, 22:23)OrangePL Wrote: [ -> ]@SuperNovaAO something understandable for less experienced ppl ?

Learn 2 :

Code:
#include <iostream>
#include "Windows.h"

using namespace std;

int main()
{
cout << "Hello World" ;
system("PAUSE");
return 0;
}
Dodgy
(10-10-2011, 08:42)aosma8 Wrote: [ -> ]
(10-09-2011, 22:23)OrangePL Wrote: [ -> ]@SuperNovaAO something understandable for less experienced ppl ?

Learn 2 :

Code:
#include <iostream>
#include "Windows.h"

using namespace std;

int main()
{
cout << "Hello World" ;
system("PAUSE");
return 0;
}

I can't understand why you put using namespace std; there
(10-10-2011, 10:51)4FunPlayin Wrote: [ -> ]
(10-10-2011, 08:42)aosma8 Wrote: [ -> ]
(10-09-2011, 22:23)OrangePL Wrote: [ -> ]@SuperNovaAO something understandable for less experienced ppl ?

Learn 2 :

Code:
#include <iostream>
#include "Windows.h"

using namespace std;

int main()
{
cout << "Hello World" ;
system("PAUSE");
return 0;
}

I can't understand why you put using namespace std; there

You need using namespace std to use cout,cin,edl etc.
Pages: 1 2 3 4