개인 자료란 (JE)

  서버 커뮤니티

Profile [MCNC]멜론쥬스0157 대표칭호 없음
Profile

커뮤니티 소통 잡담하기

플러그인좀 도와주세요

2018.04.12 조회 수 175 추천 수 0

아레의 글은 제가 인터넷에 올린 플러그인 소스글에 답변온 소스 팁인대 이걸 기반으로 플러그인좀 만들어주세요

카톡:makedreamkr

 

 

0down voteaccept

I won't give you the full code but some tips. It exists an event called ServerListPingEvent. Just create a command which saves the amount of likes in a YAML-File (that's really easy)). The next thing you need to do is to set up this ServerListPingEvent and to use the method event.setMotd(). Create a method to read out the likes from the saved YAML-File and use them in event.setMotd().

Code example:

@EventHandler
public void onServerListPing(ServerListPingEvent event) {
    int likes = (int) YMLReader.getObject(YOUR PATH); //or just config.getInt(YOUR PATH)

    event.setMotd(">> " + likes + " people like the server <<");
}



2개의 댓글

설의생 아이유
2018.05.08

기본적인 지식이 요구 됩니다, https://blog.naver.com/jchoij7514/220642595100 참고하시고 직접 만들어 보세요. 필독: MOTD는 CommandHelper로도 플러그인 없이 간단히 제작이 가능합니다. 

잔순
2020.04.27

엄청 복잡해보인당