Ejemplo n.º 1
0
 public String GetSayTypeDescription(SayType type)
 {
     switch (type)
     {
         case SayType.SAY_NORMAL:
             return "Normal";
         case SayType.SAY_NPC:
             return "NPC";
         case SayType.SAY_WHISPER:
             return "Whisper";
         case SayType.SAY_YELL:
             return "Yell";
         default:
             return "Unk";
     }
 }
Ejemplo n.º 2
0
 private void uxWptSayTypes_SelectedIndexChanged(object sender, EventArgs e)
 {
     sayType = (SayType)uxWptSayTypes.SelectedIndex;
 }
Ejemplo n.º 3
0
 public void AddWaypoint(String words, SayType type)
 {
     if (!Enable)
         Waypoints.Add(new SayWaypoint(words, type));
 }
Ejemplo n.º 4
0
 public Waypoint(WaypointType Type, SayType SayType, string TextToSay)
 {
     wType = Type;
     wSayType = SayType;
     wTextToSay = TextToSay;
 }
Ejemplo n.º 5
0
 public SayWaypoint(String words, SayType type)
     : base(WaypointType.WAYPOINT_SAY)
 {
     Words = words;
     SayType = type;
 }