Arcturus-Community/src/main/java/com/eu/habbo/messages/outgoing/generic/testcomposer.java

28 lines
787 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.messages.outgoing.generic;
import com.eu.habbo.messages.ServerMessage;
import com.eu.habbo.messages.outgoing.MessageComposer;
2019-05-26 20:14:53 +02:00
public class testcomposer extends MessageComposer {
2018-07-06 15:30:00 +02:00
@Override
2019-05-26 20:14:53 +02:00
public ServerMessage compose() {
2018-07-06 15:30:00 +02:00
this.response.init(3019);
this.response.appendInt(3);
this.response.appendInt(1);
this.response.appendInt(2);
this.response.appendString("Key");
this.response.appendInt(1);
this.response.appendInt(2);
this.response.appendString("Key");
this.response.appendInt(1);
this.response.appendInt(2);
this.response.appendString("Key");
this.response.appendBoolean(true);
this.response.appendInt(1);
return this.response;
}
}