Exemplo n.º 1
0
 //-----------------------------------------------------------
 #region Setting Methods Region
 // These Methods are offline, so you should update the player info
 // after using these method, they will only change the
 // Properties.
 private void SetParams(StrongString serverValue)
 {
     StrongString[] myStrings = serverValue.Split(CharSeparater);
     StoryStep       = (StorySteps)myStrings[0].ToUInt16();  // 0
     AvatarFrameList = AvatarFrameList.Parse(myStrings[1]);  // 1
     AvatarList      = AvatarList.Parse(myStrings[2]);       // 2
     MyBlockList     = ChatBlockList.Parse(myStrings[3]);    // 3
 }