Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server > CO2 PServer Guides & Releases
You last visited: Today at 14:39

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Redux v2 - Official 5065 Classic Source

Discussion on Redux v2 - Official 5065 Classic Source within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.

Closed Thread
 
Old 03/04/2014, 14:15   #1111
 
elite*gold: 0
Join Date: Feb 2006
Posts: 726
Received Thanks: 271
Quote:
Originally Posted by mujake View Post
The action it does, i mean when using it to destroy guild gates.
Well you need to create the dialog for the guild gate to check if the person has a bomb.

If it does, ask them if they want to use it.

Send the bomb effect, kill the user, reduce the gates health.
Aceking is offline  
Thanks
3 Users
Old 03/06/2014, 18:24   #1112
 
Mokujin's Avatar
 
elite*gold: 0
Join Date: Jun 2006
Posts: 403
Received Thanks: 23
am i the only one that gets an error when trying to cross either of the bridges in wind plain?

invalid walk location for character
Unhandled MsgActionPacket type 138 from player
Mokujin is offline  
Old 03/06/2014, 19:14   #1113
 
elite*gold: 0
Join Date: Feb 2006
Posts: 726
Received Thanks: 271
You need to replace the tinymap files.
There have been plenty of posts in this thread about it.
Aceking is offline  
Old 03/06/2014, 23:14   #1114
 
elite*gold: 0
Join Date: Feb 2014
Posts: 76
Received Thanks: 5
can i add AI BOTs

And how i can ?
AhmedGfx is offline  
Old 03/06/2014, 23:32   #1115
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,376
Quote:
Originally Posted by AhmedGfx View Post
can i add AI BOTs

And how i can ?

Code it. Just like every single other feature and addition.

This is much like asking "How do I write a novel". Well.. you have to write it.
pro4never is offline  
Thanks
1 User
Old 03/07/2014, 05:39   #1116
 
mujake's Avatar
 
elite*gold: 0
Join Date: Dec 2010
Posts: 494
Received Thanks: 54
What packet I have to send to reload my hero informations?
I have created the CelestialTao, it recalculates my attributes, saves but it wont show them until I reopen the hero status menu.
This is what I have used so far :

_client.Send(new UpdatePacket(_client.UID, Enum.UpdateType.Agility, _client.Agility));

_client.Send(new UpdatePacket(_client.UID, Enum.UpdateType.Spirit, _client.Spirit));

_client.Send(new UpdatePacket(_client.UID, Enum.UpdateType.Vitality, _client.Vitality));

_client.Send(new UpdatePacket(_client.UID,Enum.UpdateType.Strength, _client.Strength));

Or how to call HeroInformationPacket?

_client.send(new Heroinformationpacket()); ??
mujake is offline  
Old 03/07/2014, 12:45   #1117
 
elite*gold: 0
Join Date: Feb 2006
Posts: 726
Received Thanks: 271
Sending the update packet should work.
If not then yeah you can try using the hero info packet which is packet 1006.
Aceking is offline  
Thanks
1 User
Old 03/08/2014, 06:15   #1118
 
mohammedqq1's Avatar
 
elite*gold: 0
Join Date: Jun 2010
Posts: 64
Received Thanks: 2
hey please help me i dont have static ip how to open this server in my ip?
only i have network ip 192.168.x.x etc..
please anyone help me how to open this i just need try in my pc
mohammedqq1 is offline  
Old 03/08/2014, 08:48   #1119
 
mujake's Avatar
 
elite*gold: 0
Join Date: Dec 2010
Posts: 494
Received Thanks: 54
Quote:
Originally Posted by Aceking View Post
Sending the update packet should work.
If not then yeah you can try using the hero info packet which is packet 1006.
I reached to this : _client.Send(HeroInformationPacket.Create(_client) );

But the client will freeze and after few seconds the connection drops due to latency.
Any idea, do i need to send another packet too, as it won't reload items i am wearing and stuff.

Also, does players with red name or black name have the chance of loosing their gear if they get killed?
mujake is offline  
Old 03/08/2014, 10:04   #1120
 
InsomniacPro's Avatar
 
elite*gold: 0
Join Date: Feb 2014
Posts: 397
Received Thanks: 205
Quote:
Originally Posted by mujake View Post
I reached to this : _client.Send(HeroInformationPacket.Create(_client) );

But the client will freeze and after few seconds the connection drops due to latency.
Any idea, do i need to send another packet too, as it won't reload items i am wearing and stuff.

Also, does players with red name or black name have the chance of loosing their gear if they get killed?
Don't send the hero info packet, that'll cause the client to go stupid. Instead send update packets. Client.Send(UpdatePacket.Create(Client.UID, UpdateType.Strength, Client.Strength));


And red name/black name don't drop, that has to be coded on your own.
InsomniacPro is offline  
Thanks
2 Users
Old 03/09/2014, 22:58   #1121
 
elite*gold: 0
Join Date: Feb 2014
Posts: 76
Received Thanks: 5
any one have ai bots for redux source , please release it .
AhmedGfx is offline  
Old 03/09/2014, 23:11   #1122
 
elite*gold: 0
Join Date: Feb 2006
Posts: 726
Received Thanks: 271
Why don't you try to code it yourself rather than trying to leech it?
Just saying
Aceking is offline  
Old 03/10/2014, 07:47   #1123
 
elite*gold: 0
Join Date: Feb 2014
Posts: 76
Received Thanks: 5
okay , but what the files i code it in it ?
AhmedGfx is offline  
Old 03/10/2014, 08:24   #1124
 
mujake's Avatar
 
elite*gold: 0
Join Date: Dec 2010
Posts: 494
Received Thanks: 54
Quote:
Originally Posted by AhmedGfx View Post
okay , but what the files i code it in it ?
See the system implemented in albetros and try to add it to redux, or create something close.


Also, where to add the line that kicks you out of team when you log out?
Also, any idea where to add that reflect checks?
mujake is offline  
Old 03/10/2014, 18:47   #1125
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,211
Received Thanks: 4,114
Quote:
Originally Posted by AhmedGfx View Post
okay , but what the files i code it in it ?
Spirited is offline  
Closed Thread


Similar Threads Similar Threads
[S] Shadow Warrior Classic Redux [B] EG
09/15/2013 - elite*gold Trading - 1 Replies
Topic regelt ! SWCR aus dem Weekly Bundle. Macht mir angebote.



All times are GMT +2. The time now is 14:39.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.