KyleVonnie
Come @ me Bro!
- Oct 26, 2011
- 993
- 176
CLOSE THREAD, FIXED IT. JUST UPDATED EMU...
Hey,
Well the title basically is self-explanatory... My wall items don't work, meaning I can't place them..
I already changed
In Incoming.cs
Someone also told me to change
TO
In TextHandling.cs
Which didn't help either.
Any more fixes out there?
Thanks
Well the title basically is self-explanatory... My wall items don't work, meaning I can't place them..
I already changed
Code:
Incoming.HandleWallItem = 2622;
Someone also told me to change
Code:
internal static int Parse(string a)
{
int num = 0;
int num2 = 0;
int length = a.Length;
if (length == 0)
{
return 0;
}
do
{
num2++;
int num4 = a[num2];
if ((num4 < 0x30) || (num4 > 0x3b))
{
return 0;
}
num = ((10 * num) + num4) - 0x30;
}
while (num2 < length);
return num;
}
TO
Code:
internal static int Parse(string a)
{
int w = 0, i = 0, length = a.Length, k;
if (length == 0)
return 0;
do
{
k = a[i++];
if (k < 48 || k > 59)
return 0;
w = 10 * w + k - 48;
}
while (i < length);
return w;
}
Which didn't help either.
Any more fixes out there?
Thanks
Last edited: