Files
2006Scape/2006Scape Server/src/main/java/com/rs2/game/dialogues/ChatEmotes.java
T
Qweqker 8ee88848a3 Astraeus Dialogue System Port (#512)
* - Marked As Deprecated
- Reorganized DialogueOptions.java so that option buttons are grouped with each interface
- Added temporary Dialogue Executor to make new Dialogue System function
- Remove Man, Woman, and Banker Dialogue and Dialogue Options

* - Refactored Dialogue.java into DialoguePacket.java
- Moved DialoguePacket.java into impl packets package
- Added Astraeus dialogue executor

* - Removed useless file
- Reorganized the Misc.java file

* - Ported Astraeus Dialogue System
- Rewrote Man, Woman, and Banker Dialogues
- Added line splitter in AstraeusDialogueFactory.java

* - Renamed Astraeus* classes to *Plugin
- Fixed an issue where the Dialogue Option buttons were not executed through the Kotlin file

(cherry picked from commit 6deaa4162a)
2021-12-14 05:53:33 +00:00

55 lines
1012 B
Java

package com.rs2.game.dialogues;
/**
* ChatEmotes.java
* @author Andrew (Mr Extremez)
*/
/**
* Contains a List of Chat Head Emotes NPCs and Players can use during Dialogues
* @Deprecated Consider using {@link ExpressionPlugin} instead to add Chat Head Animations to Dialogues.
*
*/
@Deprecated
public enum ChatEmotes {
HAPPY_JOYFUL(588),
CALM_TALK1(589),
CALM_TALK2(590),
DEFAULT(591),
EVIL1(592),
EVIL2(593),
EVIL3(594),
ANNOYED(595),
DISTRESSED(596),
DISTRESSED2(597),
ALMOST_CRYING(598),
BOWS_HEAD_SAD(598),
DRUNK_LEFT(600),
DRUNK_RIGHT(601),
NOT_INTERESTED(602),
SLEEPY(603),
PLAIN_EVIL(604),
LAUGH1(605),
LAUGH2(606),
LAUGH3(607),
LAUGH4(608),
EVIL_LAUGH(609),
SAD(610),
MORE_SAD(611),
ON_ONE_HAND(612),
NEARLY_CRYING(613),
ANGRY1(614),
ANGRY2(615),
ANGRY3(616),
ANGRY4(617);
private ChatEmotes(int animId) {
this.animId = animId;
}
private int animId;
static int getAnimId(ChatEmotes ce) {
return ce.animId;
}
}