
private static string GetMapNameBO2()
{
byte[] buffer = new byte[20];
PS3TMAPI.ProcessGetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0L, 0x00f54ede, ref buffer);
string str = Encoding.ASCII.GetString(buffer);
if (str.Contains("patch"))
return "You are not in a Match";
if (str.Contains("nuke"))
return "Nuketown 2025";
if (str.Contains("drone"))
return "Drone";
if (str.Contains("la"))
return "Aftermath";
if (str.Contains("dockside"))
return "Cargo";
if (str.Contains("carrier"))
return "Carrier";
if (str.Contains("hijacked"))
return "Hijacked";
if (str.Contains("meltdown"))
return "Meltdown";
if (str.Contains("overflow"))
return "Overflow";
if (str.Contains("nightclub"))
return "Plaza";
if (str.Contains("raid"))
return "Raid";
if (str.Contains("slums"))
return "Slums";
if (str.Contains("village"))
return "Standoff";
if (str.Contains("turbine"))
return "Turbine";
if (str.Contains("socotra"))
return "Yemen";
else return "Unknown Map";
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.