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"; } }
private void uxWptSayTypes_SelectedIndexChanged(object sender, EventArgs e) { sayType = (SayType)uxWptSayTypes.SelectedIndex; }
public void AddWaypoint(String words, SayType type) { if (!Enable) Waypoints.Add(new SayWaypoint(words, type)); }
public Waypoint(WaypointType Type, SayType SayType, string TextToSay) { wType = Type; wSayType = SayType; wTextToSay = TextToSay; }
public SayWaypoint(String words, SayType type) : base(WaypointType.WAYPOINT_SAY) { Words = words; SayType = type; }