You are viewing our Forum Archives. To view or take place in current topics click here.
Need help, XRPC tool related - C#
Posted:

Need help, XRPC tool related - C#Posted:

xfroody
  • New Member
Status: Offline
Joined: Jun 20, 201310Year Member
Posts: 41
Reputation Power: 1
Status: Offline
Joined: Jun 20, 201310Year Member
Posts: 41
Reputation Power: 1
Okay, so I don't code but I'm giving it a go to make an RTE tool.

I have offsets and I've made buttons and other things write a set value to those offsets but I'd like to know how I'd make it so that a number that's placed in a numericUpDown box is converted to int and then written to an offset of my choice.

This would be to edit a value such as money in a game, I'd type the money value into the numericUpDown box and click a button causing the money change to reflect ingame.

If you don't know what I'm talking about but you'd like to help and you know C# then please PM me

Anyone familiar with coding probably thinks this is incredibly stupid but I'd really appreciate any help.
#2. Posted:
xfroody
  • New Member
Status: Offline
Joined: Jun 20, 201310Year Member
Posts: 41
Reputation Power: 1
Status: Offline
Joined: Jun 20, 201310Year Member
Posts: 41
Reputation Power: 1
Need dat bump fo dat help.

Any help is appreciated, thanks.
#3. Posted:
Unsigned_Chaos
  • Powerhouse
Status: Offline
Joined: Oct 28, 201310Year Member
Posts: 487
Reputation Power: 30
Status: Offline
Joined: Oct 28, 201310Year Member
Posts: 487
Reputation Power: 30
xfroody wrote Okay, so I don't code but I'm giving it a go to make an RTE tool.

I have offsets and I've made buttons and other things write a set value to those offsets but I'd like to know how I'd make it so that a number that's placed in a numericUpDown box is converted to int and then written to an offset of my choice.

This would be to edit a value such as money in a game, I'd type the money value into the numericUpDown box and click a button causing the money change to reflect ingame.

If you don't know what I'm talking about but you'd like to help and you know C# then please PM me

Anyone familiar with coding probably thinks this is incredibly stupid but I'd really appreciate any help.


Do you something like this?

private void superJump_ValueChanged(object sender, EventArgs e)
{
    int client = (int)numericUpDown1.Value
    Jtag.Call(Offset, client, newValue)
}


Note this won't work because Offset isn't defined and newValue isn't defined. Also Super Jump isn't a int it is a float.

I am extremely familiar with coding so hit me up on Skype if this doesn't work. Skype: ElitexChaos (live:bvichi8)
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.