Billmojies
So I was bored and made a super simple emoji plugin, suggestion by Vilsike
Download: mediafire
So I was bored and made a super simple emoji plugin, suggestion by Vilsike
Download: mediafire
How the config works:
Basically you put your text you want to be replaced with the text to be replaced, and inbetween the two you put a comma ",".
So if I want the double arrow emoji everyone uses all the time I would do:
- doublearrow,»
And if a player types "doublearrow" in chat it would be replaced by "»".
Basically you put your text you want to be replaced with the text to be replaced, and inbetween the two you put a comma ",".
So if I want the double arrow emoji everyone uses all the time I would do:
- doublearrow,»
And if a player types "doublearrow" in chat it would be replaced by "»".
Code:
symbols:
- :D,☺
- D:,☹
- :O,⍥
- <3,§c❤§r
- '#rain,☂'
- '#sun,☼'
- '#cloud,☁'
- '#half,½'
- '#king,♚'
- '#music,♫'
- '#plane,✈'
- '#star,★'
- '#lightning,ϟ'
- '#cut,✄'
- '#write,✎'
Pretty much the entire thing haha
Code:
String[] emojies = symbolList.toArray(new String[0]);
for(int i = 0 ; i< emojies.length; i++){
String[] words = emojies[i].toString().split(",");
e.setMessage(e.getMessage().replaceAll(words[0], words[1]));
}
