if (MyChar.BlessEnd != "")
{
string[] BlessEndSplit = MyChar.BlessEnd.Split('~');
string[] i = BlessEndSplit;
string Day = i[0];
string Month = i[1];
string Year = i[2];
string Hour = i[3];
string Min = i[4];
string Sec = i[5];
string AMPM = i[6];
string DayMonthYear = Day + "/" + Month + "/" + Year;
string HourMinSec = Hour + ":" + Min + ":" + Sec;
MyChar.BlessEnd = Convert.ToDateTime(DayMonthYear + " " + HourMinSec);
MyChar.Blessed = true;
SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Heaven's Blessing will end on " + MyChar.BlessEnd.DayOfWeek + "(" + MyChar.BlessEnd + ")", 2011));
SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Heaven's Blessing will end on " + MyChar.BlessEnd.DayOfWeek + "(" + MyChar.BlessEnd + ")", 2005));
if (MyChar.PrayStone == 1)
MyChar.MyClient.SendPacket(General.MyPackets.Vital (MyChar.UID, 18, (3 * 24 * 60 * 60)));
if (MyChar.PrayStone == 2)
MyChar.MyClient.SendPacket(General.MyPackets.Vital (MyChar.UID, 18, (7 * 24 * 60 * 60)));
if (MyChar.PrayStone == 3)
MyChar.MyClient.SendPacket(General.MyPackets.Vital (MyChar.UID, 18, (30 * 24 * 60 * 60)));
the ones that are bold and underlined are the wat the error is talkin about
Error 1 'COServer_Project.Character' does not contain a definition for 'BlessEnd' and no extension method 'BlessEnd' accepting a first argument of type 'COServer_Project.Character' could be found (are you missing a using directive or an assembly reference?) C:\Documents and Settings\Owner\My Documents\My Received Files\corey\Source Pack\CoV2\CoV2\CoV2\Client.cs 14110 52 COServerProject
Fied the PrayStone Error
i tryed using public DateTime BlessEnd; but didnt work
could someone help please






