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 Tutorials
Assistance with HabboVIP Role-Play Pack
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="Parse" data-source="post: 480287" data-attributes="member: 39047"><p>Hello.</p><p></p><p>It has been years since I have been in the development of Habbo and still figuring out the Nitro implementation and everything.</p><p></p><p>I'm running into a bunch of issues and the CMS pack I downloaded seems to just be spaghetti code and a lot things being hard-coded. I'm hoping I can get some help from the community to resolve some of these issues, some of them may just be going over my head.</p><p></p><p>I can't get the client to work at all. Here is a console snippet of loading the client. I'm just getting a black screen.</p><p>[ATTACH=full]15284[/ATTACH]</p><p></p><p></p><p>config.class.php</p><p></p><p></p><p></p><p>[CODE=php]<?php</p><p>/**</p><p> * PixelZone by RDP Services, Emulated by Retro Development Server.</p><p> * The use of this program is restricted to clients and owners of RDP Services.</p><p> * Any unauthorized use of this code it'll end up on deletion of the program.</p><p> * Developers P3x & Jeihden.</p><p> * Copyrights © 2020</p><p> * Last Modified: $file.lastModefied</p><p> */</p><p></p><p>class Config</p><p>{</p><p> ## RDP Config ##</p><p> public static $V = "2.5.1"; // Build number</p><p></p><p> ## DB Configuration ##</p><p> protected static $DBHOST = "127.0.0.1";</p><p> protected static $DBName = "rp";</p><p> protected static $DBUser = "root";</p><p> protected static $DBPass = '';</p><p></p><p> ## Web Configuration ##</p><p> public static $WName = "HabboRP";</p><p> public static $URL = "http://127.0.0.1:8012";</p><p> public static $WEB_DY = "http://127.0.0.1:8012/dynamics";</p><p> public static $SessionName = "";</p><p> public static $MaxUsers = 4;</p><p> public static $_MANT = false; // Maintenance Variable</p><p> public static $SWF_MPUS = "http://127.0.0.1:8012/SWF/v5-0-2/MPU/pz_v2_hween/image_loader.php";</p><p></p><p> ## SWF Configuration ##</p><p> public static $SWF = "http://127.0.0.1:8012/SWF/v5-0-2/";</p><p></p><p> ## Client & Socket Configuration ##</p><p> public static $TCP = "127.0.0.1";</p><p> public static $TCP_PORT = "2021";</p><p> public static $WS_SERVER = "127.0.0.1";</p><p> public static $WS_PORT = "2087";</p><p></p><p></p><p> ## PAYPAL CONFIGS ##</p><p> public static $SandBox = false;</p><p> public static $S_PAYPAL_API = "ATm39AHoeLD4B2yf0XJ1_smZtOJcbccbquOT6RF__EWmz9nRFRIbPfnWV3IFg0Xj_CCa01GShFp8xfM4";</p><p> public static $S_PAYPAL_SECRET = "EAzVlipEYXBNxDdCvUNFkXqs2ORvulYwWz_Z_V0cOx3yX1inpLXI9ZJX3hVsxsLbsRVN7VMSAlLGpa5-";</p><p> public static $PAYPAL_API = "AVsrP8aqV0-HHVUvbGbzDg_J_Kt2wTBjytdXltOCBo1AnG_2TBuYhYceXs_DFiyNdc0Z4jy-4rs2z4_L";</p><p> public static $PAYPAL_SECRET = "EPfmozPaHg6_bMssu8StdVbZd3zMIaUEicqGTlTFJKGlObFHlOHmmajcAqfh9iD0CWzdTK_ObF5DX_s5";</p><p></p><p> ## DISCORD CONFIG ##</p><p> public static $DiscordInvite = "https://discord.gg/2cBaSpuwSM";</p><p></p><p> ## FB Config ##</p><p> public static $FB_PAGE_LINK = "https://www.facebook.com/habboviprp";</p><p> public static $FB_API_LINK = "https://www.facebook.com/v7.0/dialog/oauth?client_id=2991567804406685&redirect_uri=http://127.0.0.1:8012/fb_login&auth_type=rerequest&scope=email";</p><p> public static $FB_ASSOC_API_LINK = "https://www.facebook.com/v7.0/dialog/oauth?client_id=2991567804406685&redirect_uri=http://127.0.0.1:8012/fb_assoc&auth_type=rerequest&scope=email";</p><p> public static $FB_API_CLIENT = "2991567804406685";</p><p> public static $FB_API_SECRET = "95ef3ebbd29790623874292caa511977";</p><p> public static $FB_API_REDIRECT = "http:127.0.0.1:8012/fb_login";</p><p> public static $FB_ASSOC_API_REDIRECT = "http://127.0.0.1:8012/fb_assoc";</p><p> public static $FB_API_REQUEST = "";</p><p></p><p></p><p></p><p></p><p></p><p></p><p>}[/CODE]</p><p></p><p>I'm not sure if the websocket is a problem. Nothing is loading, after a while sometimes the ad boxes would show.</p></blockquote><p></p>
[QUOTE="Parse, post: 480287, member: 39047"] Hello. It has been years since I have been in the development of Habbo and still figuring out the Nitro implementation and everything. I'm running into a bunch of issues and the CMS pack I downloaded seems to just be spaghetti code and a lot things being hard-coded. I'm hoping I can get some help from the community to resolve some of these issues, some of them may just be going over my head. I can't get the client to work at all. Here is a console snippet of loading the client. I'm just getting a black screen. [ATTACH type="full" alt="1704920323104.png"]15284[/ATTACH] config.class.php [CODE=php]<?php /** * PixelZone by RDP Services, Emulated by Retro Development Server. * The use of this program is restricted to clients and owners of RDP Services. * Any unauthorized use of this code it'll end up on deletion of the program. * Developers P3x & Jeihden. * Copyrights © 2020 * Last Modified: $file.lastModefied */ class Config { ## RDP Config ## public static $V = "2.5.1"; // Build number ## DB Configuration ## protected static $DBHOST = "127.0.0.1"; protected static $DBName = "rp"; protected static $DBUser = "root"; protected static $DBPass = ''; ## Web Configuration ## public static $WName = "HabboRP"; public static $URL = "http://127.0.0.1:8012"; public static $WEB_DY = "http://127.0.0.1:8012/dynamics"; public static $SessionName = ""; public static $MaxUsers = 4; public static $_MANT = false; // Maintenance Variable public static $SWF_MPUS = "http://127.0.0.1:8012/SWF/v5-0-2/MPU/pz_v2_hween/image_loader.php"; ## SWF Configuration ## public static $SWF = "http://127.0.0.1:8012/SWF/v5-0-2/"; ## Client & Socket Configuration ## public static $TCP = "127.0.0.1"; public static $TCP_PORT = "2021"; public static $WS_SERVER = "127.0.0.1"; public static $WS_PORT = "2087"; ## PAYPAL CONFIGS ## public static $SandBox = false; public static $S_PAYPAL_API = "ATm39AHoeLD4B2yf0XJ1_smZtOJcbccbquOT6RF__EWmz9nRFRIbPfnWV3IFg0Xj_CCa01GShFp8xfM4"; public static $S_PAYPAL_SECRET = "EAzVlipEYXBNxDdCvUNFkXqs2ORvulYwWz_Z_V0cOx3yX1inpLXI9ZJX3hVsxsLbsRVN7VMSAlLGpa5-"; public static $PAYPAL_API = "AVsrP8aqV0-HHVUvbGbzDg_J_Kt2wTBjytdXltOCBo1AnG_2TBuYhYceXs_DFiyNdc0Z4jy-4rs2z4_L"; public static $PAYPAL_SECRET = "EPfmozPaHg6_bMssu8StdVbZd3zMIaUEicqGTlTFJKGlObFHlOHmmajcAqfh9iD0CWzdTK_ObF5DX_s5"; ## DISCORD CONFIG ## public static $DiscordInvite = "https://discord.gg/2cBaSpuwSM"; ## FB Config ## public static $FB_PAGE_LINK = "https://www.facebook.com/habboviprp"; public static $FB_API_LINK = "https://www.facebook.com/v7.0/dialog/oauth?client_id=2991567804406685&redirect_uri=http://127.0.0.1:8012/fb_login&auth_type=rerequest&scope=email"; public static $FB_ASSOC_API_LINK = "https://www.facebook.com/v7.0/dialog/oauth?client_id=2991567804406685&redirect_uri=http://127.0.0.1:8012/fb_assoc&auth_type=rerequest&scope=email"; public static $FB_API_CLIENT = "2991567804406685"; public static $FB_API_SECRET = "95ef3ebbd29790623874292caa511977"; public static $FB_API_REDIRECT = "http:127.0.0.1:8012/fb_login"; public static $FB_ASSOC_API_REDIRECT = "http://127.0.0.1:8012/fb_assoc"; public static $FB_API_REQUEST = ""; }[/CODE] I'm not sure if the websocket is a problem. Nothing is loading, after a while sometimes the ad boxes would show. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Tutorials
Assistance with HabboVIP Role-Play Pack
Top