Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Development
Habbo Web Application for Arcturus Emulator (Laravel, Inertia.js and Tailwindcss)
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Raizer" data-source="post: 466514" data-attributes="member: 84739"><p>Good luck with your project.</p><p></p><p>There are few things I don't like programwise. For example your rconServices, because everything is already builded in Arcturus so why you create for each rcon a function? For example you can do</p><p></p><p>[code]</p><p>Api::execute('setrank', ['user_id' => 1' rank' => 1]);</p><p>[/code]</p><p></p><p>[code]</p><p>$data = json_encode(array('key' => $param, 'data' => $data));</p><p>if(socket_write($socket, $data, strlen($data)) === false){</p><p> return;</p><p>}</p><p>[/code]</p><p></p><p>And also, why did you choose to make envoirement file for configurable for everything? In my eyes env file is for the environment not for configurable stuff like credits. And also why you do the validation stuff in your actions? That is not how it should be. Also you replaced services for actions? I'd never programmed in laravel but my prefer is Ares. If you want to see how they did the logical stuff, it can help you in progress for this.</p><p></p><p><a href="https://gitlab.com/ares-team/ares-backend" target="_blank">Ares / Ares-Backend · GitLab</a></p><p></p><p>Good luck with your project!</p></blockquote><p></p>
[QUOTE="Raizer, post: 466514, member: 84739"] Good luck with your project. There are few things I don't like programwise. For example your rconServices, because everything is already builded in Arcturus so why you create for each rcon a function? For example you can do [code] Api::execute('setrank', ['user_id' => 1' rank' => 1]); [/code] [code] $data = json_encode(array('key' => $param, 'data' => $data)); if(socket_write($socket, $data, strlen($data)) === false){ return; } [/code] And also, why did you choose to make envoirement file for configurable for everything? In my eyes env file is for the environment not for configurable stuff like credits. And also why you do the validation stuff in your actions? That is not how it should be. Also you replaced services for actions? I'd never programmed in laravel but my prefer is Ares. If you want to see how they did the logical stuff, it can help you in progress for this. [URL='https://gitlab.com/ares-team/ares-backend']Ares / Ares-Backend · GitLab[/URL] Good luck with your project! [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Development
Habbo Web Application for Arcturus Emulator (Laravel, Inertia.js and Tailwindcss)
Top