[BRAIN 1.9.1] Illumina Habbo

Laynester

a bad bitch
Nov 7, 2018
304
422
Hiya,

The default BrainCMS theme looks horrendous, i think we can all agree on that, so i decided to create a new theme, heres to all the hotels starting to use brain and change a few images.
*throws shade, sips tea*

Screenshots:

Ajax page loading, keeps client always open.


User profiles have links to rooms.


User settings opens clothes changer.


Custom loading screen, illumina style.


** DOWNLOAD BRAINCMS **
BrainCMS 1.9.1:


Add these to you brain-config.php

Code:
    $config['widgetID'] = '509801583991848972'; // edit to your Discord widget ID
    $hotel['customPurse'] = true;
    $hotel['swfFolderSwf'] = "http://directory/gordon/production-numbers/habbo.swf";

Then use this SQL:

if you'd like to use the custom purse i made, edit your habbo.swf use this:

or disable the custompurse in config.

next, download it from here:

and place into your braincms Templates folder

Discord widget:

Go into your server, at the top there will be an arrow by the name, above the channels. click that, and press server settings
You must be registered for see images attach


Then youll see this, go down into Widget
You must be registered for see images attach


And copy your server ID

You must be registered for see images attach

If anyone has any issues, add me on discord @ Layne#8612
 
Last edited:

Haid

Member
Dec 20, 2011
363
448
Honestly (no offence) but it looks pretty bad.
To be constructive I think the grey just looks super out of place with the dark blue background and the navigation looks squished, rushed and out of place.

I've never used Brain but if this ( ) is the default theme it's actually not "horrendous" - looks pretty well designed, bright and inviting.
 

Roaan

New Member
Jan 3, 2019
19
4
Hey, thats seem rly nice, Im arleady configuration this whole Layout, but somehow I did some mistake or some r missing, is anyone that can explain me or what is rly wrong ?
 

cammy

Member
May 15, 2014
471
220
Amazing!
The default Brain theme is nice imo.
This is great a few changes and it would look perfect.

Disable the client loading straight away until they click the hotel button. Some people like having the website and client in two separate tabs.
The purse doesn't refresh (atleast I didn't stick around long enough for it to...)
 

Rebel

Spilling the tea, can't you read?🍵
Dec 24, 2015
186
161
Nice and clean just how I like my women.

Great release :up:BCWarrior
 

NathannHerre16

New Member
Jun 29, 2018
12
3
Ok so I've been doing some edits on this layout adding new pages and links.

For some reason when I click on the link it will show a the blue background with the header and footer and not the content but when I refresh then content will then show. Do you know how to solve this problem?

When I click on Apply:
unknown.png



When I refresh the page:
unknown.png
 

Laynester

a bad bitch
Nov 7, 2018
304
422
Ok so I've been doing some edits on this layout adding new pages and links.

For some reason when I click on the link it will show a the blue background with the header and footer and not the content but when I refresh then content will then show. Do you know how to solve this problem?

When I click on Apply:
unknown.png



When I refresh the page:
unknown.png
because this uses ajax. you need to copy how i did pages or else it won’t work properly
 

NathannHerre16

New Member
Jun 29, 2018
12
3
because this uses ajax. you need to copy how i did pages or else it won’t work properly

Ok I'll give it a try and let you know how it turns out.


//**EDIT**//

This is my current code I am using
<?php
define('title','Apply');
define('TAB_ID',2);
define('PAGE_ID',14);
include_once 'assets/static/header.php';
?>
<div class="container" id="staffapply">
<div class="row">
<div class="col-lg-12">
<?php staffApplication(); ?>
<div class="illumina body">
<div class="content">
<form action="" method="POST">
<p><label><b><?= $lang["Nyourname"] ?></b><br>
<input type="text" name="username" size="400" placeholder="<?= $lang["Nyourname"] ?>" value= "<?= User::userData('username') ?>" id="username" style="width: 100%;" disabled></p>

<p><label><b><?= $lang["Nyourrealname"] ?></b><br>
<input type="text" name="realname" size="400" placeholder="<?= $lang["Nyourrealname"] ?>" value= "" id="username" style="width: 100%;"></p>

<p><label><b><?= $lang["Ndiscord"] ?></b><br>
<input type="text" name="skype" size="400" placeholder="<?= $lang["Ndiscordname"] ?>" value= "" id="username" style="width: 100%;"></p>

<p><label><b><?= $lang["Nyourage"] ?></b><br>
<input type="number" name="age" size="400" placeholder="<?= $lang["Nyourage"] ?>" value= "" id="username" style="width: 100%;"></p>

<p><label><b><?= $lang["Nfunction"] ?></b>
<select name="functie" class="form-control">
<option name="functie" value="1">Events</option>
<option name="functie" value="2">DJ</option>
<option name="functie" value="3">Graphics</option>
<option name="functie" value="4">Builders</option>
<option name="functie" value="5">News</option>
<option name="functie" value="6">Trial Moderator</option>
</select> </p>

<p><label><b><?= $lang["Nonlineweak"] ?></b><br>
<input type="number" name="onlinetime" size="400" placeholder="10" id="amount" style="width: 100%;"></p>

<p><label><b><?= $lang["Nyourexperience"] ?></b><br>
<textarea name="experience" size="400" rows="5" cols="50" style="width: 1050px;"> </textarea></p>

<p><label><b><?= $lang["Npeoplearguing"] ?></b><br>
<textarea name="quarrel" size="400" rows="5" cols="50" style="width: 1050px;"> </textarea></p>

<p><label><b><?= $lang["Nyoutrust"] ?></b><br>
<textarea name="serious" size="400" rows="5" cols="50" style="width: 1050px;"> </textarea></p>

<p><label><b><?= $lang["Nimprovehotel"] ?></b><br>
<textarea name="improve" size="400" rows="5" cols="50" style="width: 1050px;"> </textarea></p>

<p><label><b><?= $lang["Nmicrophone"] ?></b><br>
<select name="microphone" class="form-control">
<option name="microphone" value="1"><?= $lang["Nyes"] ?></option>
<option name="microphone" value="2"><?= $lang["Nnoe"] ?></option>
</select></p>

<input type="submit" value="<?= $lang["Nsubmit"] ?>" name="addsollie" class="submit" style="float:right" >
</form>
</div>
</div>
</div>
</div>
</div>
<?php include_once 'assets/static/footer.php';?>
Post automatically merged:

Fixed the cause I was missing a bit of coding

<section id="content">

&

</section>
 
Last edited:

ManIron

Member
Jun 1, 2018
135
22
Grey is good with green. Not blue, navi bar also need attention. Other than that is excellent release and I would use it if I could
 

Chuckie_

Active Member
Jun 22, 2019
138
71
where can i find db swf and emulator for this cms? Please help
He has provided the base cms in the post which should contain sqls for the db. Afaik Brain supports both Plus and Arcturus, so you'd just have to download those from whereever they are found.
 

ManIron

Member
Jun 1, 2018
135
22
Hi @Laynester

I did update the cms to this version illumina using this tutorial. Cms is up and working. Client stays on 0% for now.

I have a big space on the /me page. Is this for news articles?

Looking forwards to your reply.
 

cobb

New Member
Aug 12, 2019
2
0
working good at the start but now , me page is refrshing every 5 seconds and client dont connect .. also your custom button on the client is bugged cause u cant click on the navigator
 

Bran

mediocre graphics artist
Mar 13, 2017
1,727
1,530
working good at the start but now , me page is refrshing every 5 seconds and client dont connect .. also your custom button on the client is bugged cause u cant click on the navigator
bc it works like habbo, the client loads in the background on the me page
 

Users who are viewing this thread

Top