Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server
You last visited: Today at 15:29

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

Advertisement



[BUGS]Source version 5165

Discussion on [BUGS]Source version 5165 within the CO2 Private Server forum part of the Conquer Online 2 category.

Closed Thread
 
Old   #1
 
airborne.'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 256
Received Thanks: 63
Post [BUGS]Source version 5165

Alright I found 3 major problems for horses:

Quote:
1. You can use fly (archer skill) even with horse lmao.

2. If you die while on horse, u turn into ghost but the horse stays on you.

3. You can't attack someone on horse but they can attack you.
airborne. is offline  
Old 12/03/2009, 01:45   #2
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Quote:
Originally Posted by airborne. View Post
Alright I found 3 major problems for horses:

Mods check this?
Is this in the right section?
I'm not sure.
Arcо is offline  
Thanks
1 User
Old 12/03/2009, 02:12   #3
 
hunterman01's Avatar
 
elite*gold: 20
Join Date: Dec 2006
Posts: 945
Received Thanks: 175
Nope not the right section
hunterman01 is offline  
Old 12/03/2009, 06:43   #4
 
Huseby's Avatar
 
elite*gold: 106
Join Date: Oct 2006
Posts: 6,047
Received Thanks: 1,164
#Moved
Huseby is offline  
Old 12/03/2009, 08:31   #5
 
elite*gold: 0
Join Date: Nov 2009
Posts: 20
Received Thanks: 5
you can atack on horse lol
MirTolga is offline  
Old 12/03/2009, 08:34   #6
 
Huseby's Avatar
 
elite*gold: 106
Join Date: Oct 2006
Posts: 6,047
Received Thanks: 1,164
Quote:
Originally Posted by MirTolga View Post
you can atack on horse lol
Well thats a kinda cool bug, kinda makes horses useful.
Huseby is offline  
Old 12/03/2009, 13:55   #7
 
airborne.'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 256
Received Thanks: 63
Quote:
Originally Posted by MirTolga View Post
you can atack on horse lol
Yes you an attack if your on horse. But people can't attack you.
airborne. is offline  
Old 12/03/2009, 14:35   #8
 
elite*gold: 0
Join Date: Nov 2009
Posts: 20
Received Thanks: 5
that s..... have 999 erors i fixed about 60 erors in one day can you chek my server armadaco(just google it lol)
now has horses to +12 items to +9 +8 stones but no effeting etc.....
this fa....ing source has wrong rb skills...... arent coming any of
herc works like scatter lol and fb isnt coded to range lol
if you change items power soo much you must relogin for works your hp
MirTolga is offline  
Old 12/03/2009, 20:16   #9
 
~*NewDuuDe*~'s Avatar
 
elite*gold: 111
Join Date: Feb 2008
Posts: 2,161
Received Thanks: 646
Fixing fly bug: Do an "if" which checks if they are using horse if so do whatever variable is used for the horse skill(if there is not one, create it) = false;
And same for dieing, go into the dieing/ghost void or what ever it might be and add horse skill variable = false;
An example would be if u look into a code which kills you, you will see for example SMON = false;
which means superman gets disabled.
~*NewDuuDe*~ is offline  
Old 12/03/2009, 20:39   #10
 
Huseby's Avatar
 
elite*gold: 106
Join Date: Oct 2006
Posts: 6,047
Received Thanks: 1,164
Quote:
Originally Posted by airborne. View Post
Yes you an attack if your on horse. But people can't attack you.
Well that might be a problem.
Huseby is offline  
Thanks
1 User
Old 12/03/2009, 21:51   #11
 
LetterX's Avatar
 
elite*gold: 20
Join Date: May 2007
Posts: 1,125
Received Thanks: 332
Quote:
Originally Posted by BERGHUIS1 View Post
Fixing fly bug: Do an "if" which checks if they are using horse if so do whatever variable is used for the horse skill(if there is not one, create it) = false;
And same for dieing, go into the dieing/ghost void or what ever it might be and add horse skill variable = false;
An example would be if u look into a code which kills you, you will see for example SMON = false;
which means superman gets disabled.
**** it, you beat me to it D=
LetterX is offline  
Old 12/03/2009, 22:04   #12
 
airborne.'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 256
Received Thanks: 63
Yeah berghuis, I'm not a coder :| but I could probably do it if you were a little more specific. for example, where
airborne. is offline  
Old 12/04/2009, 21:09   #13
 
elite*gold: 0
Join Date: Oct 2009
Posts: 768
Received Thanks: 550
Quote:
I could probably do it if you were a little more specific
for flying
In Features->Skills.cs->SkillUse->Use()-> Search for:
Code:
switch (Info.ExtraEff)
->Search for:
Code:
case ExtraEffect.Fly:
Inside it add:
Code:
                                    /// <summary>
                                    /// fix for "fly with horse"
                                    /// </summary>
                                    if (C.StatEff.Contains(StatusEffectEn.Ride))
                                    {
                                        C.StatEff.Remove(StatusEffectEn.Ride);
                                    }
for dying
In Game->Character.cs->TakeAttack(bla bla,bla bla,bla bla)->
3 cases:
1. monsters(not mob, as a player or a "companion" is a mob too, since mob is a mobile object.)
Code:
Search for:
StatEff.Remove(StatusEffectEn.Cyclone);
and add
StatEff.Remove(StatusEffectEn.Ride);
2.companion
Code:
Search for:
StatEff.Remove(StatusEffectEn.Cyclone);
and add
StatEff.Remove(StatusEffectEn.Ride);
3.character
Code:
Search for:
StatEff.Remove(StatusEffectEn.Cyclone);
and add
StatEff.Remove(StatusEffectEn.Ride);

Enjoy!
-impulse- is offline  
Thanks
1 User
Old 12/04/2009, 21:28   #14
 
airborne.'s Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 256
Received Thanks: 63
#request close
airborne. is offline  
Old 12/04/2009, 21:48   #15
 
~*NewDuuDe*~'s Avatar
 
elite*gold: 111
Join Date: Feb 2008
Posts: 2,161
Received Thanks: 646
Quote:
Originally Posted by LetterX View Post
**** it, you beat me to it D=
Owned.

@airbourne
Go into the .cs file he specified and click ctrl+h =.=
~*NewDuuDe*~ is offline  
Closed Thread


Similar Threads Similar Threads
[RELEASE]CoSX - 5165 Source(ini version)[Bug Fixed]
03/10/2013 - CO2 PServer Guides & Releases - 106 Replies
This is the source from Arco's thread fixed up alot. Bugs fixed, npc fixes, added some things (Not big things). This is still a base source. Goodluck with your server. This source will be updated. The newest update includes all updates, but not Database. Update v1.5.5:



All times are GMT +2. The time now is 15:29.


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.