[(Awesome)RELEASE] CoEmuv2.Nano(5095) Source Code

05/31/2009 19:41 kinshi88#451
That trading isn't even complete, so if you don't know where to put it then you won't be able to finish it.
05/31/2009 19:50 krankheit#452
can some do creat the server for me with teamviewer best a german guy if i want to start the exe it loads and at the and it close with an error...
05/31/2009 20:00 ~*NewDuuDe*~#453
Quote:
Originally Posted by kinshi88 View Post
Rofl, you serious?
Bit late this but ok...

My point is that he should CLEARLY state that he has permission for this, in the first post. I must say that i have NO idea what so ever who that andyd guy is I kinda started thinking a bit about it. So urm kinshi, you could atleast think over what your'e posting.
05/31/2009 20:04 xXVamXx#454
Ok guy can someone help on this

Does any of you have the code for all the item??

like examples:

HTML Code:
				case 1002040://Stancher
					{
						int AddMP = 4500;
						if(CSocket.Client.CurrentMP >= CSocket.Client.MaxMP)
						{
							Delete = false;
							break;
						}
						else
						{
							if(CSocket.Client.CurrentMP + AddMP > CSocket.Client.MaxMP)
							{
								Interlocked.Add(ref CSocket.Client.CurrentMP, (CSocket.Client.MaxMP - CSocket.Client.CurrentMP));
								CSocket.Send(ConquerPacket.Status(CSocket, 2, CSocket.Client.CurrentMP, Struct.StatusTypes.Mp));
							}
							else
							{
								Interlocked.Add(ref CSocket.Client.CurrentMP, AddMP);
								CSocket.Send(ConquerPacket.Status(CSocket, 2, CSocket.Client.CurrentMP, Struct.StatusTypes.Mp));
							}
						}
						break;
					}

Wat i need you guys help is for the item like meteor, expball and etc.


In advance Thanks for your help Guys
05/31/2009 20:17 Kiyono#455
Quote:
Originally Posted by BERGHUIS1 View Post
Bit late this but ok...

My point is that he should CLEARLY state that he has permission for this, in the first post. I must say that i have NO idea what so ever who that andyd guy is I kinda started thinking a bit about it. So urm kinshi, you could atleast think over what your'e posting.
Can't remember it correctly but I thought that Andy was a part of the original CoEmu team (or it was UCCO can't remember)
05/31/2009 20:35 YukiXian#456
Quote:
Originally Posted by xXVamXx View Post
Ok guy can someone help on this

Does any of you have the code for all the item??

like examples:

HTML Code:
				case 1002040://Stancher
					{
						int AddMP = 4500;
						if(CSocket.Client.CurrentMP >= CSocket.Client.MaxMP)
						{
							Delete = false;
							break;
						}
						else
						{
							if(CSocket.Client.CurrentMP + AddMP > CSocket.Client.MaxMP)
							{
								Interlocked.Add(ref CSocket.Client.CurrentMP, (CSocket.Client.MaxMP - CSocket.Client.CurrentMP));
								CSocket.Send(ConquerPacket.Status(CSocket, 2, CSocket.Client.CurrentMP, Struct.StatusTypes.Mp));
							}
							else
							{
								Interlocked.Add(ref CSocket.Client.CurrentMP, AddMP);
								CSocket.Send(ConquerPacket.Status(CSocket, 2, CSocket.Client.CurrentMP, Struct.StatusTypes.Mp));
							}
						}
						break;
					}

Wat i need you guys help is for the item like meteor, expball and etc.


In advance Thanks for your help Guys
Atleast try to do something yourself...
05/31/2009 20:38 Kiyono#457
Quote:
Originally Posted by YukiXian View Post
Atleast try to do something yourself...
Well he did found the correct .cs so I guess that's something.
05/31/2009 21:04 xXVamXx#458
Thanks Kiyono for backing me up.
The only problem i have i have try using


HTML Code:
               case 723700:// ExpBall
                    {
                        int GiveLevel = 10;  <---- here its say (The variable 'GiveLevel' is assigned but its value is never used) 
                        if (CSocket.Client.Exp >= NeededExp(CSocket.Client.Level))
                        {
                            Handler.GiveLevel(10, CSocket);
                            break;
                        }
                      else
                {
                    CSocket.Send(ConquerPacket.Status(CSocket, 2, CSocket.Client.Level, Struct.StatusTypes.Level));
                    CSocket.Send(ConquerPacket.Status(CSocket, 2, CSocket.Client.Exp, Struct.StatusTypes.Exp));
                    CSocket.Send(ConquerPacket.Status(CSocket, 2, CSocket.Client.StatPoints, Struct.StatusTypes.AttributePoints));
                    //CSocket.Send(ConquerPacket.Exp(CSocket.Client.ID, 5, CSocket.Client.Exp));
                }
But it wouldnt work
Wat should i put there????
05/31/2009 22:54 Zeroxelli#459
Quote:
Originally Posted by xXVamXx View Post
Thanks Kiyono for backing me up.
The only problem i have i have try using


HTML Code:
               case 723700:// ExpBall
                    {
                        int GiveLevel = 10;  <---- here its say (The variable 'GiveLevel' is assigned but its value is never used) 
                        if (CSocket.Client.Exp >= NeededExp(CSocket.Client.Level))
                        {
                            Handler.GiveLevel(10, CSocket);
                            break;
                        }
                      else
                {
                    CSocket.Send(ConquerPacket.Status(CSocket, 2, CSocket.Client.Level, Struct.StatusTypes.Level));
                    CSocket.Send(ConquerPacket.Status(CSocket, 2, CSocket.Client.Exp, Struct.StatusTypes.Exp));
                    CSocket.Send(ConquerPacket.Status(CSocket, 2, CSocket.Client.StatPoints, Struct.StatusTypes.AttributePoints));
                    //CSocket.Send(ConquerPacket.Exp(CSocket.Client.ID, 5, CSocket.Client.Exp));
                }
But it wouldnt work
Wat should i put there????
Note that
Code:
                        int GiveLevel = 10;
and

Code:
Handler.GiveLevel(10, CSocket);
Are separate variables..

I assume you mean to do
Code:
Handler.GiveLevel(GiveLevel, CSocket);
05/31/2009 23:37 krankheit#460
THX !!!!
for all
06/01/2009 00:51 scottdavey#461
Quote:
Originally Posted by xXVamXx View Post
Ok guy can someone help on this

Does any of you have the code for all the item??

like examples:

HTML Code:
				case 1002040://Stancher
					{
						int AddMP = 4500;
						if(CSocket.Client.CurrentMP >= CSocket.Client.MaxMP)
						{
							Delete = false;
							break;
						}
						else
						{
							if(CSocket.Client.CurrentMP + AddMP > CSocket.Client.MaxMP)
							{
								Interlocked.Add(ref CSocket.Client.CurrentMP, (CSocket.Client.MaxMP - CSocket.Client.CurrentMP));
								CSocket.Send(ConquerPacket.Status(CSocket, 2, CSocket.Client.CurrentMP, Struct.StatusTypes.Mp));
							}
							else
							{
								Interlocked.Add(ref CSocket.Client.CurrentMP, AddMP);
								CSocket.Send(ConquerPacket.Status(CSocket, 2, CSocket.Client.CurrentMP, Struct.StatusTypes.Mp));
							}
						}
						break;
					}

Wat i need you guys help is for the item like meteor, expball and etc.


In advance Thanks for your help Guys
They wouldn't just hand it out lol.
06/01/2009 01:15 random321#462
why does my error report pop up after each of the server boxes load... to like load the server... can someone help me? lol
06/01/2009 02:30 mynoob1#463
I have seen this 15million times on like 15 threads, but I have gone through changed everything like everyone says, even started over from scratch, and I cannot get this to fix. I have rebuild, build solutions and everything and nothing is working. If I could get some help from some non smart asses it would be nice.


In the Game Server screen:
it says Access Denied For user root@localhost <using password: yes>

In Microsoft C#: GameServer.Database.Database
MySqlDataReader DR = Cmd.ExecuteReader(CommandBehavior.CloseConnection) ;
06/01/2009 02:54 random321#464
when i try to load the gameserver and loginserver it says its not loading some of the dmaps, and i look in my dmap folder and i dont have the ones that it doesnt load? can someone help me? lmao
06/01/2009 03:07 LetterX#465
Quote:
Originally Posted by random321 View Post
when i try to load the gameserver and loginserver it says its not loading some of the dmaps, and i look in my dmap folder and i dont have the ones that it doesnt load? can someone help me? lmao
Don't worry about it. No use loading every DMap.

When you do need to load the DMap of a map and it's not already included, just go to Structs -> Map.cs and then add in the map you need.

When you load all of the maps, it takes an extra 40 MB or so of extra RAM. So ultimately a waste. =d