I'm trying to write my Pingpong game. I use QuickJoinGameRequest to join game.
But when I send to plugin using PluginRequestCode:public void joinGame() { EsQuickJoinGameRequest rq = new EsQuickJoinGameRequest(); rq.setGameType("PingPongPlugin"); rq.setZoneName("PPZone"); rq.setCreateOnly(false); es.getEngine().send(rq); }
I got this warning:Code:public void sendToPlugin(EsObject esob){ EsPluginRequest pr = new EsPluginRequest(); pr.setRoomId(gameRoom.getId()); pr.setZoneId(gameRoom.getZoneId()); pr.setPluginName("PingPongPlugin"); pr.setParameters(esob); log(pr.getPluginName()); es.getEngine().send(pr); }
21:04:09,717 [worker-9 BinaryTCP-0] WARN com.electrotank.electroserver5.entitie
s.managers.RoomEventFactory - Sending error PluginNotFound for PluginRequest
In the Es 5 Admin, I saw the plugin has been attached to the room.
Untitled.jpg
What is my problem.
sorry if my English isn't good.


Reply With Quote
