[Release] Some needed stuff for Coemu

08/26/2009 01:24 samehvan#16
Quote:
Originally Posted by 12tails View Post
samehvan... add to the first topic the timer to dis city start and end too... and the other things that are in mny topic... make it more complete ^^
it's the global timer we made be4, i'll try to add it
08/26/2009 01:25 12tails#17
a yeah... forgot it haha.... do you have msn??? is better to talk (i think) if you wan't add me
08/26/2009 11:29 gad-legion#18
on socket gem we missing (PacketProcessor):
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;
						}
08/26/2009 11:43 samehvan#19
Quote:
Originally Posted by gad-legion View Post
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;
						}
this is PacketProcessor r8 ?

int type = Data[18];
08/26/2009 12:15 tere12#20
samehvan is egyptian, most people tell they hate egyptians but now world has changed :D Every1 love egpytian ;)
08/26/2009 15:56 skateclan#21
Hey guys, look this is my first post... Did u know how to raise the player capacity? ty so much :)
08/26/2009 17:52 Kiyono#22
So any luck on FatalStrike?
08/26/2009 18:14 CIRASH#23
Quote:
Originally Posted by tere12 View Post
samehvan is egyptian, most people tell they hate egyptians but now world has changed :D Every1 love egpytian ;)
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
08/26/2009 20:17 tere12#24
Yea, hes good at coding.
08/26/2009 20:39 samehvan#25
Quote:
Originally Posted by Kiyono View Post
So any luck on FatalStrike?
i didn't forget it ,still trying with teleporting issue i'll let u know if i had any new news

Quote:
Originally Posted by CIRASH View Post
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
@Off Topic
i am not the only good Egyptian it's just most of egys here or in Co2 world are kids and still know nothing ,that is why they look like idiots :p
anyway i am sure we all agree that every single nation has it's good ppl and it's bad ppl , so lets get over it nationality was never the point ,i always judge by the person acts not by his nationality or else all world will hate each other .

Quote:
Originally Posted by tere12 View Post
Yea, hes good at coding.
ty but i am not that good still there too much things to learn ,i am kinda new to C#
08/26/2009 20:43 Kiyono#26
Quote:
Originally Posted by samehvan View Post
i didn't forget it ,still trying with teleporting issue i'll let u know if i had any new news
Same, but is the teleporting done with a specific packet?
08/26/2009 20:53 samehvan#27
Quote:
Originally Posted by Kiyono View Post
Same, but is the teleporting done with a specific packet?
i tried all status IDs and types i can guess but ddnt work , so i'm trying with Magic type if can't get it then i think we will go for effects
08/26/2009 22:10 12tails#28
samehvan i'm having this error... take a look in the screen!
08/26/2009 22:13 1supertao#29
Ya.. 12tails.. i have that error to..
08/26/2009 22:22 samehvan#30
Quote:
Originally Posted by 12tails View Post
samehvan i'm having this error... take a look in the screen!
just change the int type to byte type

Code:
#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