Ejemplo n.º 1
0
 // A function that adds a color around the players, being visible through the wall
 public void SetGlow(Player jogador, GerenciaMemoria gMem, Color color)
 {
     gMem.Write(glowObj + (jogador.glowIndex * 0x38 + 0x24), 1);
     gMem.Write(glowObj + (jogador.glowIndex * 0x38 + 0x25), 0);
     gMem.Write(glowObj + (jogador.glowIndex * 0x38 + 0x26), 0);
     gMem.Write(glowObj + (jogador.glowIndex * 0x38 + 0x4), color);
 }
Ejemplo n.º 2
0
 // Radar hack, function displays the enemy player on the radar of the game itself
 public void SetSpotted(Player player, GerenciaMemoria Mem)
 {
     Mem.Write(player.baseAddr + Offsets.CSPlayer.bSpotted, true);
 }