View Full Version : real time editor program template maybe?
Tyler Brough
12-29-2012, 09:56 PM
im not the best coder and was wondering if somebody could maybe make a template for a real time editor that would be easy to change the offsets and then rebuild the program to keep things up to date
i know i sound abit of a leech but i dont really know where to start in making a program like this. also if you could hoplfully do it. it would be better if it would be compatible with the xbdm.xex plugin. let me know if you could help please thanks very much
i will give full credit for the program if you can make one :)
MBRKiNG
12-29-2012, 10:26 PM
im not the best coder and was wondering if somebody could maybe make a template for a real time editor that would be easy to change the offsets and then rebuild the program to keep things up to date
i know i sound abit of a leech but i dont really know where to start in making a program like this. also if you could hoplfully do it. it would be better if it would be compatible with the xbdm.xex plugin. let me know if you could help please thanks very much
i will give full credit for the program if you can make one :)
give credits to 8ball too please
http://jafile.com/uploads/scoop/ss_rte_sample.rar
ceckbox poke code
//CheckBox Enable and Disable PokeCode
private void checkBox3_CheckedChanged(object sender, EventArgs e)
{
if (checkBox3.Checked)
{
checkBox3.Checked = true;
_rtm.Poke(0x823EB6B8, "60000000"); //offset + value
status.Text = "Enabled"; //if checked enable text
}
else
{
checkBox3.Checked = false;
_rtm.Poke(0x82378E20, "90DF0474"); //offset + value
status.Text = "Disabled"; //if checked changed - disable text
}
}
//if CheckBox Checked - Poke and Hold The value
private void checkBox4_CheckedChanged(object sender, EventArgs e)
{
var pulse = new Thread(p1health);
pulse.Start();
}
private void p1health()
{
do
{
if (checkBox4.Checked) Thread.Sleep(200); //200 = PokeTime / 1000 = 1sec
_rtm.Poke(0x824C550E, "FFFF"); //offset + value
status.Text = "Enabled"; //if checked enable text
}
while (checkBox4.Checked);
status.Text = "Disabled"; //if checked changed - disable text
}
Tyler Brough
12-29-2012, 10:56 PM
thank you and i will give credit to him
vBulletin Solutions, Inc. All rights reserved.