Maybe when it's actually done.. also enough of this. Moderators would suspect this as trolling
-
Check out the splash development page at my site
Project Indigo
![]()
Last edited by Quackster; 12-02-12 at 12:21 AM.
He is switching to R63 because R36 is featureless and buggy, the bugs you can't fix, remember R63 was the first Beta version, and Beta versions are often buggy you know...
Looks good =)
Good luck. Though i'm yet to see a finished project from you ;c
Yes I agree :D
I feel like I have more motivation this time as I actually have someone creating the website part of it. ;)
I also don't see this being released any time soon.
--
Apart from that. I have been cleaning my code. For example, I used to cache the rooms own model data (even though that data never changed)
before
afterCode:public RoomModelData getModelData() { return ModelData; }
Code:public RoomModelData getModelData() { return Indigo.getHabboHotel().getRoomModels().getModelData(Model); }
Last edited by Quackster; 12-02-12 at 10:03 AM.
Next you should do Project Duck :3 A project by yourself to make you like a huge name :3 Jk anyways what if you made a system so if someone got disconnected it sent the error report to the owner and explains why it happened and If there is a way to fix it Only the feature can be turned on/off in the config file.
"Project Duck" was done by Nillus years ago see here.
Updates!!!
- Product buying
- Inventory
- MUS
Okay, so the mus. Is I believe, very secure.. why is it secure?
- The port is hidden
- When you send a packet to the mus socket, you must have login credentials, example;
I wrote a basic script for it to connect as well..Code:?username=Quack&password=testing1&type=hotelalert&data=:D
So far, you can only send hotel alerts via website ;D
PHP Code:<?php
$host = "127.0.0.1";
$port = 3467;
$stringofdata = "login ".$_GET['username']." ".$_GET['password']." type ".$_GET['type']." ".$_GET['data'];
$socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP) or die("Could not create socket\n");
socket_connect($socket, $host, $port) or die("Could not connect to server on port: ".$port);
$len = strlen($stringofdata);
socket_send($socket, $stringofdata, $len, 0);
socket_close($socket);
?>
Last edited by Quackster; 14-02-12 at 01:24 AM.
Excellent Quackster, could you add a list of MUS commands to the documentation on the final release?