case 1027:
{
int ItemID = (Data[11] << 24) + (Data[10] << 16) + (Data[9] << 8) + (Data[8]);
int GemID = (Data[15] << 24) + (Data[14] << 16) + (Data[13] << 8) + (Data[12]);
int socket = (Data[17] << 8) + (Data[16]);
int type= [U]????????????????????[/U]
Handler.SocketGem(ItemID, GemID, socket, [U]type[/U], CSocket);
break;
}
this is PacketProcessor r8 ?Quote:
on socket gem we missing :
Code:case 1027: { int ItemID = (Data[11] << 24) + (Data[10] << 16) + (Data[9] << 8) + (Data[8]); int GemID = (Data[15] << 24) + (Data[14] << 16) + (Data[13] << 8) + (Data[12]); int socket = (Data[17] << 8) + (Data[16]); int type= [U]????????????????????[/U] Handler.SocketGem(ItemID, GemID, socket, [U]type[/U], CSocket); break; }
i wouldnt say we love egyptians now. It's just samehvan speaks really good english and is understandable. Plus i think he is the only egyptian coder in this part of the epvp forums. Also, unlike most egys hes actually helping others instead of begging for stuff. and for that he deserves alot of thanksQuote:
samehvan is egyptian, most people tell they hate egyptians but now world has changed :D Every1 love egpytian ;)
i didn't forget it ,still trying with teleporting issue i'll let u know if i had any new newsQuote:
So any luck on FatalStrike?
@Off TopicQuote:
i wouldnt say we love egyptians now. It's just samehvan speaks really good english and is understandable. Plus i think he is the only egyptian coder in this part of the epvp forums. Also, unlike most egys hes actually helping others instead of begging for stuff. and for that he deserves alot of thanks
ty but i am not that good still there too much things to learn ,i am kinda new to C#Quote:
Yea, hes good at coding.
just change the int type to byte typeQuote:
samehvan i'm having this error... take a look in the screen!
#region SocketGem 1027
case 1027:
{
int ItemID = (Data[11] << 24) + (Data[10] << 16) + (Data[9] << 8) + (Data[8]);
int GemID = (Data[15] << 24) + (Data[14] << 16) + (Data[13] << 8) + (Data[12]);
byte socket = (byte)((Data[17] << 8) + (Data[16])); byte Type_ = Data[18];
Handler.SocketGem(ItemID, GemID, socket,Type_, CSocket);
break;
}
#endregion