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

30 lines
791 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;
public class testcomposer extends MessageComposer
{
@Override
public ServerMessage compose()
{
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;
}
}