Post: RTM Tool coding problems
07-01-2014, 05:59 PM #1
seanhellen
Are you high?
(adsbygoogle = window.adsbygoogle || []).push({}); Hi all - I am trying to learn C# and code a tool at the same time. I have got this;

    private void radioButton18_CheckedChanged(object sender, EventArgs e)
{
byte[] norecoiloff = new byte[] { 48, 50, 6E, F5 };
PS3.SetMemory(0xF9E54, norecoiloff);
}


and I get the following errors;

-Cannot implicitly convert type 'double' to 'byte'. An explicit conversion exists (are you missing a cast?) This puts the cursor before 6E
-The name 'F5' does not exist in the current context Just doesn't like it
-Floating-point constant is outside the range of type 'double' This highlights 6E

for the rest of the options, I have just copied and pasted the basic code posted above and changed the offsets, bytes and the name. The same also happens with UAV which also has letters.
I have noticed that the functions that work all have either just numbers or "0x..." with numbers and letters. I don't know, any help guys? :yes:

Also some quick questions;

1. Does anyone know where I can get either an anti-ban only eboot for bles or know where to find the offsets?

2. How do you change your clantag/name. I get the offset is "xxxx" but how do you change it? Same goes for teleport, etc that has offset but no bytes - how do these work?
(adsbygoogle = window.adsbygoogle || []).push({});
07-02-2014, 07:42 AM #2
Hash847
Purple God
For your first question:

There're many antiban eboots around the forums, I just use this one. You must login or register to view this content.

As for your second question:

If you want write to a string with no bytes, just do

PS3.Extension.WriteString(Name Offset/ClanTag Offset, "You can do textBox1.Text also!");
This would set your name to "You can do textBox1.Text also!"

and to fix your code, it needs to be in byte format, not double/interger.

    
private void radioButton18_CheckedChanged(object sender, EventArgs e)
{
byte[] norecoiloff = new byte[] { 0x48, 0x50, 0x6E, 0xF5 }; //You needed to at 0x infront of the numeric values to fix it.
PS3.SetMemory(0xF9E54, norecoiloff);
}


Hope this answers all your questions, feel free to PM me if you need anymore help.

The following user thanked Hash847 for this useful post:

seanhellen
07-02-2014, 08:02 AM #3
seanhellen
Are you high?
WOW, thanks for that Winter, much appreciated Smile I am using that eboot at the moment, just need one with anti-ban, not wallhack...or the offsets so I can make my antiban in my tool work Smile

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo