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 Releases
CMS Releases
Snow in client and on CMS! (ANY)
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="FrostBiteRetros" data-source="post: 276928" data-attributes="member: 44338"><p>Hey <img src="/styles/default/xenforo/smilies/emojione/smile.png" class="smilie" loading="lazy" alt=":)" title="Smile :)" data-shortname=":)" /></p><p>So I recently discovered how to add snow to the cms, then tried it on the client. Everything worked perfect <img src="/styles/default/xenforo/smilies/emojione/biggrin.png" class="smilie" loading="lazy" alt=":D" title="Big Grin :D" data-shortname=":D" /></p><p>So im going to show you how to do this in a quite noob friendly way.</p><p>First, here are some screenies of it in action! :</p><p>Client</p><p><img src="http://i.imgur.com/cfgTLi7.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /> </p><p></p><p>The CMS (Me page I used)</p><p><img src="http://i.imgur.com/djfkEUb.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /> </p><p>You cant see much snow on the CMS with the pic I gave you due to the colors i used as the backrounds and such.</p><p></p><p>So. Now to how to get them on there!</p><p>First of all lets do the hardest thing (which is really easy), where going to put it in the client!</p><p>Open your client.php , located usually in app/tpl/skins/SKINNAME/Client</p><p></p><p>At the bottom it should like like this </p><p>[CODE]</p><p> swfobject.embedSWF(BaseUrl + "/Habbo.swf", "client", "100%", "100%", "10.0.0", "{swf_folder}/expressInstall.swf", flashvars, params, null);</p><p> </script></p><p> </head></p><p> <body>[/CODE]</p><p></p><p>Inbetween </p><p>[CODE]</head></p><p></p><p>and</p><p></p><p><body></p><p></p><p></p><p>Put</p><p></p><p><script src="http://sd-1.archive-host.com/membres/up/37821634957680146/neige/snowstorm.js"></script></p><p></p><p></p><p>In there.[/CODE]</p><p></p><p></p><p>It should now look like this :</p><p>[CODE]</p><p> swfobject.embedSWF(BaseUrl + "/Habbo.swf", "client", "100%", "100%", "10.0.0", "{swf_folder}/expressInstall.swf", flashvars, params, null);</p><p> </script></p><p> </head></p><p> <script src="http://sd-1.archive-host.com/membres/up/37821634957680146/neige/snowstorm.js"></script></p><p> <body></p><p> </p><p> <div id="client"></div></p><p> </p><p> </body></p><p></html>[/CODE]</p><p></p><p></p><p>from the bottom.</p><p>There you go. Its in your client. reload and clear cache and snow will be on your client!</p><p></p><p>Now for the CMS, this is so simple to add it to!</p><p></p><p>Go to any page of the cms in htdocs .(whatever page you want the snow to go on, can be multiple), and open it up.</p><p>Now down the bottom, there should be</p><p>[CODE]</body></p><p></html>[/CODE]</p><p></p><p></p><p>now add </p><p>[CODE]<script src="http://sd-1.archive-host.com/membres/up/37821634957680146/neige/snowstorm.js"></script></p><p>[/CODE]</p><p></p><p>Inbetween them. It should now look like this </p><p>[CODE] </body></p><p><script src="http://sd-1.archive-host.com/membres/up/37821634957680146/neige/snowstorm.js"></script></p><p></html>[/CODE]</p><p></p><p>Now save, reload that page and, whallaaaaa, snow!</p></blockquote><p></p>
[QUOTE="FrostBiteRetros, post: 276928, member: 44338"] Hey :) So I recently discovered how to add snow to the cms, then tried it on the client. Everything worked perfect :D So im going to show you how to do this in a quite noob friendly way. First, here are some screenies of it in action! : Client [IMG]http://i.imgur.com/cfgTLi7.png[/IMG] The CMS (Me page I used) [IMG]http://i.imgur.com/djfkEUb.png[/IMG] You cant see much snow on the CMS with the pic I gave you due to the colors i used as the backrounds and such. So. Now to how to get them on there! First of all lets do the hardest thing (which is really easy), where going to put it in the client! Open your client.php , located usually in app/tpl/skins/SKINNAME/Client At the bottom it should like like this [CODE] swfobject.embedSWF(BaseUrl + "/Habbo.swf", "client", "100%", "100%", "10.0.0", "{swf_folder}/expressInstall.swf", flashvars, params, null); </script> </head> <body>[/CODE] Inbetween [CODE]</head> and <body> Put <script src="http://sd-1.archive-host.com/membres/up/37821634957680146/neige/snowstorm.js"></script> In there.[/CODE] It should now look like this : [CODE] swfobject.embedSWF(BaseUrl + "/Habbo.swf", "client", "100%", "100%", "10.0.0", "{swf_folder}/expressInstall.swf", flashvars, params, null); </script> </head> <script src="http://sd-1.archive-host.com/membres/up/37821634957680146/neige/snowstorm.js"></script> <body> <div id="client"></div> </body> </html>[/CODE] from the bottom. There you go. Its in your client. reload and clear cache and snow will be on your client! Now for the CMS, this is so simple to add it to! Go to any page of the cms in htdocs .(whatever page you want the snow to go on, can be multiple), and open it up. Now down the bottom, there should be [CODE]</body> </html>[/CODE] now add [CODE]<script src="http://sd-1.archive-host.com/membres/up/37821634957680146/neige/snowstorm.js"></script> [/CODE] Inbetween them. It should now look like this [CODE] </body> <script src="http://sd-1.archive-host.com/membres/up/37821634957680146/neige/snowstorm.js"></script> </html>[/CODE] Now save, reload that page and, whallaaaaa, snow! [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Releases
CMS Releases
Snow in client and on CMS! (ANY)
Top