(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?