Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by Rhys

  1. Rhys

    [REL/DEV] Havana - A Habbo Hotel server for v31+ [Java]

    Alex also has a furni image generator. You must be registered for see element.
  2. Rhys

    [REL/DEV] Havana - A Habbo Hotel server for v31+ [Java]

    server bind should be 0.0.0.0 rcon and mus bind should remain as 127.0.0.1 you then use your IP for loader.game.ip in settings in database.
  3. Rhys

    [REL/DEV] Havana - A Habbo Hotel server for v31+ [Java]

    it's actually because i'm just copying the code out of one of the files and forgot to change % with $ on all examples; but thats beside the point.. the point is it should be using org.alexdev.http.HavanaWeb instead of org.alexdev.havana.Havana idk why you're so focused on $ and % when i've...
  4. Rhys

    [REL/DEV] Havana - A Habbo Hotel server for v31+ [Java]

    Right... but I use Ubuntu, I obviously changed it to use what I wrote, but others using it might not notice and wonder why it doesn't work; because it doesn't until you change it.. It wont create the webserver-config or anything. Tries using server.ini and fails. Just to clarify and clear up...
  5. Rhys

    [REL/DEV] Havana - A Habbo Hotel server for v31+ [Java]

    Just a note for Quackster: run_web.sh has -classpath $CLASSPATH org.alexdev.havana.Havana instead of -classpath "%CLASSPATH%" org.alexdev.http.HavanaWeb
  6. Rhys

    [REL/DEV] Havana - A Habbo Hotel server for v31+ [Java]

    Same here, can't figure out why aha.. If you manage to work it out could you post here?
  7. Rhys

    Brain Core

    To check maintenace it's just as simple as public static function checkMaintenance(){ global $dbh; $getStatus = $dbh->prepare("SELECT site_closed FROM cms_settings"); $getStatus->execute(); $status = $getStatus->fetch(); if($status['site_closed'] == 1){ return true; } return false; }...
  8. Rhys

    BrainCMS Help

    <?php User::Login(); ?> can go anywhere on the index, preferably wherever you want the error displayed.. In system/app/classes/class.user.php, did you change all the $_POST['username']; $_POST['password']; to $_POST['log_username']; $_POST['log_password']; in the Login() function? Either that...
  9. Rhys

    server not work, localhost page blank

    Yeah, I think you're running the latest xampp with revcms. I believe you need either xampp 1.7.1 or 1.7.4 with PHP 5.3 (note that "v.3.2.2" is only the version of the xampp control panel).
  10. Rhys

    server not work, localhost page blank

    Editing this; Just noticed this isn't for your client specifically... i think the issue is cause by the xampp (ultimately the php) version you're using.. what CMS are you using? and xampp version...
  11. Rhys

    [REQUEST] Arcturus Public Rooms

    Hey, just any, especially ones like picnic, sun terrace (any outside looking ones) to be honest, I've not got any lol. I've seen they're done by ad backgrounds now though.... o_o Only thread I can find any useful data on is from 2015... but the offsets, room models etc do not align no matter...
  12. Rhys

    [REQUEST] Arcturus Public Rooms

    Hey guys, just wondering if any one would be kind enough to link me to some public rooms compatible with Arcturus... or, export your rooms table (if not too big) and remove users rooms and just give me the public rooms sql? I've not set a retro up in so long & it's all too confusing now lol.
  13. Rhys

    Arcturus - target offers and pet breeding

    Anything in your pet_breeding and pet_breeding_races tables? Pretty sure default SQL contains nothing.
  14. Rhys

    Vars settings or packet?

    What server are you using? Know that helps. If Arcturus 1.15.0, did you run the database update queries? It's working as expected on my hotel (Arcturus 1.15.0)
  15. Rhys

    Problems with Arcturus + BrainCMS

    Not sure what you mean by your first problem, but to deal no clothes on registration, it's because registration function states $avatar = filter($_POST['avatar']); If you're using the original registration page, it doesn't contain any "avatar" field, so it's inserting '' into the database. To...
Back
Top