Release Call of Duty: Modern Warfare 2 AC130 Red Box Open Source +Script

mplaut

Insane-Known Member
Messages
4
Reaction score
3
Points
353
Hey everyone been working on an open source menu from AssumingAgate. Trying to get red boxes to work can someone help?

Code:
void SpawnBoxes()
{
    *(char*)(0x004885A5) = 117;
}

OPEN SOURCE:
You do not have permission to view link Log in or register now.
 
Last edited by a moderator:

Joker

Veteran
Messages
52
Reaction score
24
Points
793
Which red boxes? Like the ones when you are in AC130? And which platform? (PC/xbox/ps3?)
/
 

mplaut

Insane-Known Member
Messages
4
Reaction score
3
Points
353
Which red boxes? Like the ones when you are in AC130? And which platform? (PC/xbox/ps3?)
/
Yea just the most basic nonhost redboxes. Im on PC making an injectable dll
 

mplaut

Insane-Known Member
Messages
4
Reaction score
3
Points
353
I got it to work by using WriteProcessMemory. not the best but works. if someone would like to show me a simpler way without writing memory lmk. really new to this and just have been watching youtube videos
 

Attachments

  • SpawnBoxes.txt
    852 bytes · Views: 414

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
4,998
Reaction score
2,918
Points
1,053
Hey everyone been working on an open source menu from AssumingAgate. Trying to get red boxes to work can someone help?

Code:
void SpawnBoxes()
{
    *(char*)(0x004885A5) = 117;
}

OPEN SOURCE:
You do not have permission to view link Log in or register now.
Nice found :smile: However it would be great if you could add a screenshot of how it looks in game :smile:
 

AssumingAgate

Reverse Engineer
Messages
109
Reaction score
88
Points
903
Hey everyone been working on an open source menu from AssumingAgate. Trying to get red boxes to work can someone help?

Code:
void SpawnBoxes()
{
    *(char*)(0x004885A5) = 117;
}

OPEN SOURCE:
You do not have permission to view link Log in or register now.
you can use VirtualProtect on the address you wanna do the *(datatype*)(offset) = value; on and basically write anything like that :smile:
 
Top