//------------------------------------------------- #region Virtual Methods Region public virtual StrongString GetForServer() { StrongString myString = CustomName + InCharSeparator + // index : 0 HeroID + InCharSeparator + // index : 1 Level.ToString() + InCharSeparator + // index : 2 Power.GetForServer() + InCharSeparator + // index : 3 SkillPoint.GetForServer() + InCharSeparator + // index : 4 Stars.ToString() + InCharSeparator + // index : 5 HeroSkill.GetForServer() + InCharSeparator + // index : 6 HP.GetForServer() + InCharSeparator + // index : 7 ATK.GetForServer() + InCharSeparator + // index : 8 INT.GetForServer() + InCharSeparator + // index : 9 DEF.GetForServer() + InCharSeparator + // index : 10 RES.GetForServer() + InCharSeparator + // index : 11 SPD.GetForServer() + InCharSeparator + // index : 12 PEN.GetForServer() + InCharSeparator + // index : 13 Block.GetForServer() + InCharSeparator + // index : 14 HeroCurrentExp.GetForServer() + InCharSeparator; // index : 15 return(myString); }