Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Thread where I posted this in the comments: http://www.nextgenupdate.com/forums/call-of-duty-black-ops-2-mods-cheats-and-guides/781475-how-code-roll-name-c-people-who-dont-know-2.html#post6186391
- //RTE Moving Name C#
- public static class Addresses
- {
- public static UInt32
- NameChange = 0x1BBBC2C; //MW3 NameChange Address
- }
- //Declared outside of the timer method
- string myname = "BaSs"; //or have this declared in your timer and ( = yourtextbox.Text);
- string space;
- int i = 0;
- //Your Timer
- private void timer1_Tick(object sender, EventArgs e)
- {
- if (i == 11) //or whatever length you plan on adding spaces for
- {
- i = 0;
- space = new string(' ', i);
- PS3.Extension.WriteString(Addresses.NameChange, space + myname);
- }
- else
- {
- space = new string(' ', i);
- PS3.Extension.WriteString(Addresses.NameChange, space + myname);
- i = i + 1;
- }
- timer1.Start();
- }
- //coded by: BaSs_HaXoR
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement