I am having a few issues, I am using the DCRS provided on original post and I cannot choose a Room Category, Dance & Teleports do not work.
Are your DCRS v21 or V14? Could you send me the link to them please. I am using V14 ATMChangelog
If you're running from an older version, please run the migrations in the folder up until the current version, eg, upgrading from v1.22.4 please run update.1.22.5.sql
- Fix: Players online not updating when user disconnects.
- Fix: Not being able to enter teleporters on initial placement, only after rotating (run SQL for fix).
- Fix: HC TV beaviour (run SQL for fix)
- Fix: Habbo Club page not displaying.
- Fix: NPE on disconnect.
- Fix: (Attempt?) to fix give drink check
- Fix: Fix item placement on v26 DCRs
- Add: Server-side spam protection.
- Add: New :givecredits command by
You must be registered for see links.- Add: Refresh badges when purchasing Habbo Club.
Download:You must be registered for see links
Yep, the first two are a problem with your Shockwave installation. Please refer toYou must be registered for see links- I have this on my system following my own instructions and selecting room category, and dancing, appear to work just fine. Not being able to select room category and/or dance is not an issue with the DCRs, as they are official, untouched DCRs straight from Sulake servers 12 years ago or so.
Are your DCRS v21 or V14? Could you send me the link to them please. I am using V14 ATM
No. This uses Shockwave.Will this die too because of flash? Idk
<?php
sendRcon("127.0.0.1", "12309", build("hotel_alert", array(
"message" => "Hello, World!",
"sender" => "Alex"
)));
sendRcon("127.0.0.1", "12309", build("hotel_alert", array(
"message" => "Hello, World!"
)));
sendRcon("127.0.0.1", "12309", build("refresh_looks", array(
"userId" => "1"
)));
sendRcon("127.0.0.1", "12309", build("refresh_hand", array(
"userId" => "1"
)));
sendRcon("127.0.0.1", "12309", build("refresh_club", array(
"userId" => "1"
)));
sendRcon("127.0.0.1", "12309", build("refresh_credits", array(
"userId" => "1"
)));
function build($header, $parameters) {
$message = "";
$message .= pack('N', strlen($header));
$message .= $header;
$message .= pack('N', count($parameters));
foreach ($parameters as $key => $value) {
$message .= pack('N', strlen($key));
$message .= $key;
$message .= pack('N', strlen($value));
$message .= $value;
}
$buffer = "";
$buffer .= pack('N', strlen($message));
$buffer .= $message;
return $buffer;
}
function sendRcon($ip, $port, $command) {
$socket = socket_create(AF_INET, SOCK_STREAM, getprotobyname('tcp'));
socket_connect($socket, $ip, $port);
socket_send($socket, $command, strlen($command), MSG_DONTROUTE);
socket_close($socket);
}
?>
public class RconCommand {
private final RconHeader header;
private final Map<String, Object> parameters;
public RconCommand(RconHeader header, Map<String, Object> parameters) {
this.header = header;
this.parameters = parameters;
}
public void send() {
try (Socket socket = new Socket(ServerConfiguration.getString("rcon.ip"), ServerConfiguration.getInteger("rcon.port"))) {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
DataOutputStream daos = new DataOutputStream(baos);
daos.writeInt(header.getRawHeader().length());
daos.write(header.getRawHeader().getBytes(StringUtil.getCharset()));
daos.writeInt(parameters.size());
for (var entry : parameters.entrySet()) {
daos.writeInt(entry.getKey().length());
daos.write(entry.getKey().getBytes(StringUtil.getCharset()));
daos.writeInt(entry.getValue().toString().length());
daos.write(entry.getValue().toString().getBytes(StringUtil.getCharset()));
}
try (DataOutputStream dataOutputStream = new DataOutputStream(socket.getOutputStream())) {
byte[] message = baos.toByteArray();
dataOutputStream.writeInt(message.length);
dataOutputStream.write(message);
dataOutputStream.flush();
baos.close();
daos.close();
socket.close();
} catch (IOException ignored) {
}
} catch (IOException ignored) {
}
}
}
make a help & support threadthe loader is giving me a error.
GIF of me trying to load the loader:You must be registered for see links
I edited Vars.txt and the loaders index.php
My files look like this in my wwwroot:You must be registered for see links
Maybe the habbo.dcr is broken? does anyone has a updated/replacement i could try?
i have !make a help & support thread
What browser you using fella? I downloaded the v14 pack from Alex's archive and had no problems setting up.the loader is giving me a error.
GIF of me trying to load the loader:You must be registered for see links
I edited Vars.txt and the loaders index.php
My files look like this in my wwwroot:You must be registered for see links
Maybe the habbo.dcr is broken? does anyone has a updated/replacement i could try?
In the settings within databaseYou must be registered for see images attach
Is there a way to get rid of this box when you purchase an item?