Advertisement
ExIIL

PS3 BO2 Auto Spoof Name Join

Jun 8th, 2019
506
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.36 KB | None | 0 0
  1.     // You can do this with IP / ClanTag / Prestige or whatever you like.  
  2.         string OrgName;
  3.         private void ActivateButton_Click(object sender, EventArgs e)
  4.         {
  5.             OrgName = PS3.Extension.ReadString(0x26C0658);
  6.             jointimer.Start();
  7.             joinlabel.Text = "On";
  8.         }
  9.  
  10.         private void DeactivateButton_Click(object sender, EventArgs e)
  11.         {
  12.             jointimer.Stop();
  13.             PS3.Extension.WriteString(0x26C0658, OrgName + "\0");
  14.             PS3.Extension.WriteString(0x26C067F, OrgName + "\0");
  15.             joinlabel.Text = "Off";
  16.         }
  17.  
  18.         public void SetSpoofName(string Name)
  19.         {
  20.             PS3.Extension.WriteString(0x26C0658, Name + "\0");
  21.             PS3.Extension.WriteString(0x26C067F, Name + "\0");
  22.         }
  23.        
  24.         private void jointimer_Tick(object sender, EventArgs e)
  25.         {
  26.  
  27.             if (PS3.Extension.ReadString(0xFA99C8) != OrgName)
  28.             {
  29.                 if (PS3.Extension.ReadByte(0xFA99C8) != 0)
  30.                 {
  31.                     SetSpoofName(spoofname.Text);
  32.                 }
  33.             }
  34.             if (PS3.Extension.ReadString(0xF9E6C0) != OrgName)
  35.             {
  36.                 if (PS3.Extension.ReadByte(0xF9E6C0) != 0)
  37.                 {
  38.                     SetSpoofName(spoofname.Text);
  39.                 }
  40.             }
  41.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement