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!

Asteroid Project V2

Initiate Mage
Joined
Dec 24, 2019
Messages
2
Reaction score
1
Dear RageZone members,

Introduction
In February this year I started developping on a Habbo CMS because most of the currently released CMS are deprecated and extremely bad programmed.

Before we start I want to say, this project wil be released, but i need a partner who can help me with developping from this project. So are you good, contact me, information comes.

AsteroidCMS
This framework has a total of 400 commit's and has undergone many changes and now we have reached a point where everyone can use it.
The most important part of the framework is of course the routing, I created my own in version 1 what I also announced in the past.
But I chose to user the vendor rounting because it is much more powerful than mine.

We use an MVC structure. Do you have no idea what this means exactly? On Google you can find a lot of information.
AsteroidCMS also uses middlewares for example a authentication, caching class and validation class
Code:
class Routes extends Router
{
public static function init()
{

Router::partialGroup('/', function () {

Router::setDefaultNamespace('\App\Controllers');

Router::get('/', 'Home\Index@index')->setName('index.home')->addMiddleware(CacheMiddleware::class);
Router::get('/home', 'Home\Index@index')->addMiddleware(CacheMiddleware::class);
Router::get('/lost', 'Home\Lost@index')->setName('lost');

})->addMiddleware(AuthMiddleware::class);
}

Permission system has also been built with individual rights that you can assign to a specific role. Roles can also be created for your emulator and this is easy to manage in our housekeeping.
There is too much to mention what AsteroidCMS offers. You can find all of this later in a documentation.

Vendors

  • Composer project
  • Simple Validation class


Code:
public function request()
{
$validate = request()->validator->validate([
'username' => 'required|min:1|max:30',
'password' => 'required|min:1|max:100',
'pincode' => 'max:6'
]);

if (!$validate->isSuccess()) {
exit;
}
}


  • Pecee Simple routing
  • Locale systeem (meerdere languages)
  • Twig template parser
  • Helpers
  • Page caching
  • Google 2FA authentication
  • QueryBuilder
Code:
public static function getAccessLogs($player_id, $limit = 100)
{
return QueryBuilder::table('player_access')->where('player_id', $player_id)->limit($limit)->get();
}

Javascript
Instead of controlling a view in your controller, we have javascript for loading all the post/get requests.
This way it is possible to go in and out of the hotel without having page refresh.

Interfaces

  • Hotelmanager
  • Forms/Links handler
  • Post/Get requests
  • Customforms
  • Dialogmanager
  • Notificationmanager
Housekeeping

  • Permissions (Create: Roles, Add: Permissions)
  • Remote Control (View userdata, ban, alert & reset control) ( )
  • Room control + ban control
  • VPN control (block users based at ASN)
  • Wordfilter
  • Chatlogs
  • Banlogs
  • Stafflogs
  • Help tickets
  • FAQ manage
  • News manage
  • Shop manage
  • Catalog manage (edit your arcturus catalog).
  • Value manage
This is all, thanks for watching! <3

(Folder)

Friendly Regards,
Raizer.
 
Back
Top