private void H9_Tick(object sender, EventArgs e) { WriteText("^1-- ^5N^7o ^5H^7ost ^5M^7od ^5M^7enu ^5B^7y ^5M^7rNiato ^1--\n\n^5Steady Aim\nUAV\nRed Boxes\nInvisible Gun\nLaser\nSilent Gun\n^2-->^5No Recoil"); if (Key_IsDown.DetectKey(Key_IsDown.Key.Cross)) { if (NoRecoil == false) { byte[] godmodebyte = new byte[] { 0x60, 0x00, 0x00, 0x00 }; PS3.SetMemory(0x2290B0, godmodebyte); NoRecoil = true; } else if (NoRecoil == true) { byte[] godmodebyte = new byte[] { 0x4B, 0xF6, 0x03, 0xD5 }; PS3.SetMemory(0x2290B0, godmodebyte); NoRecoil = false; } } if (Key_IsDown.DetectKey(Key_IsDown.Key.DPAD_DOWN)) { H9.Stop(); H1.Start(); } if (Key_IsDown.DetectKey(Key_IsDown.Key.DPAD_UP)) { H9.Stop(); H8.Start(); } if (Key_IsDown.DetectKey(Key_IsDown.Key.R3)) { H9.Stop(); HostMainMenu.Start(); } }
private void H2_Tick(object sender, EventArgs e) { WriteText("^1-- ^5N^7o ^5H^7ost ^5M^7od ^5M^7enu ^5B^7y ^5M^7rNiato ^1--\n\n^5Steady Aim\n^2-->^5UAV\nRed Boxes\nInvisible Gun\nLaser\nSilent Gun\nNo Recoil"); if (Key_IsDown.DetectKey(Key_IsDown.Key.Cross)) { if (UAV == false) { byte[] godmodebyte = new byte[] { 0x01 }; PS3.SetMemory(0x1A707A, godmodebyte); UAV = true; } else if (UAV == true) { byte[] godmodebyte = new byte[] { 0x00 }; PS3.SetMemory(0x1A707A, godmodebyte); UAV = false; } } if (Key_IsDown.DetectKey(Key_IsDown.Key.DPAD_DOWN)) { H2.Stop(); H3.Start(); } if (Key_IsDown.DetectKey(Key_IsDown.Key.DPAD_UP)) { H2.Stop(); H1.Start(); } if (Key_IsDown.DetectKey(Key_IsDown.Key.R3)) { H2.Stop(); HostMainMenu.Start(); } }
private void OtherMenu_Tick_1(object sender, EventArgs e) { PS3.Extension.WriteString(0x004eb39c, "^5S^7pec Ops ^5M^7od Menu ^5B^7y ^5M^7rNiato - ^5M^7ain ^5M^7enu\n\n^5Host Menu\nClient 1 Menu\nReset Menu\nAccount Menu\nTeleport Menu\nVision Menu\n^2-->^5Credit Menu\n\n\n^3Client 0 : ^2" + textBox1.Text + "\n^3Client 1 : ^2" + textBox2.Text + "^5"); if (Key_IsDown((uint)0) == "X") { H1.Start(); OtherMenu.Stop(); } if (Key_IsDown((uint)0) == "R1") { OtherMenu.Stop(); HostMenuMain.Start(); } if (Key_IsDown((uint)0) == "L1") { VisionMenu.Start(); OtherMenu.Stop(); } }
private void HostMainMenu_Tick(object sender, EventArgs e) { WriteText("^1-- ^5N^7o ^5H^7ost ^5M^7od ^5M^7enu ^5B^7y ^5M^7rNiato ^1--\n\n^2-->^5Simple Mods\nPrestige Menu\nStats Menu\nName Changer\n\n\n\n^2www.ihax.fr\n^3Facebook : ^2Guillaume ^1MrNiato"); if (Key_IsDown.DetectKey(Key_IsDown.Key.Cross)) { HostMainMenu.Stop(); H1.Start(); } if (Key_IsDown.DetectKey(Key_IsDown.Key.DPAD_DOWN)) { HostMainMenu.Stop(); PrestigeMenu.Start(); } if (Key_IsDown.DetectKey(Key_IsDown.Key.DPAD_UP)) { HostMainMenu.Stop(); NameChanger.Start(); } if (Key_IsDown.DetectKey(Key_IsDown.Key.R3)) { HostMainMenu.Stop(); Sleep.Start(); } }