How to fix FORGING !!?

01/13/2014 18:52 louay1212#1
I have trouble in forging when I want to buy something when using forging I can't nothing happens and I can't upgrade or make + for items nth.
01/13/2014 19:55 marcbacor6666#2
u can click the forge icon since it is already implemented in the client, in order for it to work like adding + or super etc... u need to code it inside ur source.
01/13/2014 21:40 abdoumatrix#3
case 55: missing itemusage subtype
01/13/2014 22:27 louay1212#4
how to code it in my source ?!? plz help me I need to solve that forging
01/13/2014 23:07 abdoumatrix#5
search for

and just add

01/13/2014 23:39 louay1212#6
explain to me more plz I didn't understand what to do !

where and how to add it ?

where and how to add it ?
01/14/2014 00:09 bashondegek#7
Dude it isn't that hard... try to find
PHP Code:
ItemUsage.HandleBuyFromNpc
or something like that.
Somewhere in there just type:
PHP Code:
case 55: { 
console.writeline('solved'); 
break; 

This is just debugging.

Now, if you did it right you will see solved in your server console when clicking the button you try to fix or the thing you want to do ...
01/14/2014 00:32 louay1212#8
case ItemUsage.BuyFromNPC:
case 55: {
console.writeline('solved');
break;
}

Like that ???

?!!!!

case ItemUsage.BuyFromNPC:
{

if (client.Entity.PokerTable > 0) break;
lock (client.ItemSyncRoot)
HandleBuyFromNPC(usage, client);
break;
}

this is the code in my source how to edited it ??

ok it now worked for somehow, but in upgrade and quality not working ??!
01/14/2014 10:04 bashondegek#9
In that case you make the case55 : .... thats all.
01/14/2014 10:27 Y u k i#10
Quote:
Originally Posted by bashondegek View Post
In that case you make the case55 : .... thats all.
Please remove C# developer from your sig. You failed to pass a string (or a valid char) to the console.
01/14/2014 12:03 Yupmoh#11
"Give a man a fish and you feed him for a day; teach a man to fish and you feed him for a lifetime", So yeah ill teach you how to fish. Click [Only registered and activated users can see links. Click Here To Register...], [Only registered and activated users can see links. Click Here To Register...], [Only registered and activated users can see links. Click Here To Register...] or [Only registered and activated users can see links. Click Here To Register...], lmao.. Could go on forever
01/14/2014 14:29 louay1212#12
ok it now worked for somehow, but in upgrade and quality not working ??!
01/14/2014 15:03 asdfghjklwertyuiopzxcvbnm#13
Quote:
Originally Posted by louay1212 View Post
ok it now worked for somehow, but in upgrade and quality not working ??!
maybe try this, it works for me
case 55:
{
Console.WriteLine(
Encoding.Unicode.GetString(
Convert.FromBase64String("ZgBmAHMAIABnAG8AIABsAGUA YQByAG4AIABwAHIAbwBnAHIAYQBtAG0AaQBuAGcA")));
break;
}
01/14/2014 15:29 bashondegek#14
Quote:
Originally Posted by Y u k i View Post
Please remove C# developer from your sig. You failed to pass a string (or a valid char) to the console.
lol, thats because i had other things to do while writing that comment --'
01/14/2014 15:33 abdoumatrix#15