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
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.
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.
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);
[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: