Advertisement
4bdu

Untitled

Oct 17th, 2017
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.79 KB | None | 0 0
  1. Explanation
  2. I'm sure there are plenty of other tutorials on how to do this and I'm sure nearly everyone knows how to set one up but some people do not. This may not be the best tutorial but I would just like to help any new people to the community. I will be using the flux files many people currently use. If you have any issues then please comment below and I will help you out. I am using windows 10 in this tutorial and it will be similar to other windows which you may be using.
  3.  
  4. Requirements/Downloads
  5. [SPOILER="Downloads"]
  6. Navicat Premium: https://www.navicat.com/en/download/navicat-premium (You can get a cracked version but you'll have to get that yourself)
  7. MYSQL: https://dev.mysql.com/get/Downloads/MySQLInstaller/mysql-installer-web-community-5.7.20.0.msi (Remember the password you put in during the set up)
  8. Notepad ++: https://notepad-plus-plus.org/download/v7.5.1.html
  9. WinRAR: https://www.win-rar.com/predownload.html?&L=0
  10. FluxRP Emulator: https://mega.nz/#!MhIgVK7A!MAI_qm5J9WVnvz84CO-gr4zxkzZSeJgWnSZ8tWirH0k
  11. FluxRP CMS + SWFS: https://mega.nz/#!dw5wxCDD!cVwSnw93Kp-2krWKjmlBUoWNqG2gKURGWoMAHWTZtqA
  12. FluxRP Database: https://mega.nz/#!h54QVBjS!DLb0Qe0pcgWdoLofz3kEBGb6JvuDlt1__PE6_PivY-4
  13. [/SPOILER]
  14. [SPOILER="Setting up IIS"]
  15. 1. Go on to your control panel [http://prntscr.com/gyp41h]
  16. 2. On the left on the control panel you should see 'Turn Windows features on or off', click on it [http://prntscr.com/gyp4pb]
  17. 3. Open up the Internet Information Services section by clicking the (+) next to it [http://prntscr.com/gyp5bj]
  18. 4. You should see 'Application Development Features', click on it [http://prntscr.com/gyp613]
  19. 5. Click 'Ok' and install them
  20. 6. Download web platform installer: https://www.microsoft.com/web/downloads/platform.aspx
  21. 7. When you open up the web platform installer you should see a search box [http://prntscr.com/gyp7hz]
  22. 8. Search and add the following : URL Rewrite 2.1, IIS Recommended Config, PHP 5.6
  23. 9. Click install
  24. [/SPOILER]
  25. Setting up the database
  26. [SPOILER="Creating the database"]
  27. 1. Open up Navicat, you should be shown this screen [http://prntscr.com/gypaql]
  28. 2. In the top left click 'Connection' then 'MySQL' [http://prntscr.com/gypb34]
  29. 3. You should be shown this screen, put the 'Connection Name' to 'rp' (Doesn't matter) and in the 'Password' put it as the one you entered when you was installing MYSQL (IMPORTANT) [http://prntscr.com/gypba3]
  30. 4. Now double click it to open up the connection [http://prntscr.com/gypc7t]
  31. 5. Right click on the connection and click 'New Database' and name the database rp (IMPORTANT) then click continue [http://prntscr.com/gypcsg]
  32. 6. You can then double click it to open it up and right click on the blank white screen in the middle and click 'Execute SQL File' [http://prntscr.com/gypdjc]
  33. 7. Navigate to your FluxRP Database and open it up. Click start and wait for it to finish. Once it's finished you'll manually have to close it [http://prntscr.com/gypeij]
  34. 8. Once done you can close and start navicat back up and it should look SOMETHING like this (with more tables) [http://prntscr.com/gypev2]
  35. [/SPOILER]
  36. Extracting the files
  37. [SPOILER="Extracting the CMS"]
  38. 1. Go to C:\inetpub\wwwroot and clear everything inside it
  39. 2. Go to your FluxRP CMS + SWFS folder which you downloaded and extract it to the inside of wwwroot [http://prntscr.com/gypi70]
  40. [/SPOILER]
  41. [SPOILER="Extracting the EMU"]
  42. 1. Go to your FluxRP EMU folder which you downloaded and extract it to your desktop [http://prntscr.com/gypj22]
  43. [/SPOILER]
  44. Setting up the configuration files
  45. [SPOILER="Setting up EMU CONFIG"]
  46. 1. Go to your desktop and open up your emu folder (which you just extracted) [http://prntscr.com/gypjrv]
  47. 2. There should be another folder inside it called 'Build', open it up [http://prntscr.com/gypk44]
  48. 3. There should be another folder inside Build called 'Settings', open it up [http://prntscr.com/gypkfs]
  49. 4. There should be a text document inside Settings called 'main.ini', open it up with notepad++ [http://prntscr.com/gypkux]
  50. ALTERNATIVE (Just search main.ini)
  51. 5. Change it to this (copy this and paste it replacing the old one): [SPOILER="main.ini"]
  52. ## MySQL Configuration
  53. db.hostname=127.0.0.1
  54. db.port=3306
  55. db.username=root
  56. db.password=YOURDATABASEPASSWORD #Replace 'YOURDATABASEPASSWORD' with the one you used to setup your navicat
  57. db.name=rp
  58. db.type=MySQL
  59.  
  60. ## MySQL pooling setup (controls amount of connections)
  61. db.pool.minsize=1
  62. db.pool.maxsize=3000
  63.  
  64. ## Game TCP/IP Configuration
  65. game.tcp.bindip=127.0.0.1 #If it is localhost leave this, if you're using a VPS change it to the VPS IP
  66. game.tcp.port=30000
  67. game.tcp.conlimit=11000
  68. game.tcp.conperip=100
  69. game.tcp.enablenagles=true
  70. game.tcp.port.proxy=30000
  71.  
  72. ## MUS TCP/IP Configuration
  73. mus.tcp.bindip=30000
  74. mus.tcp.port=30001
  75. mus.tcp.allowedaddr=149
  76.  
  77. ## Client configuration
  78. client.ping.enabled=1
  79. client.ping.interval=20000
  80. client.maxrequests=300
  81.  
  82. ## Developer Settings
  83. Debug=false
  84.  
  85. ## Language System
  86. system.lang=english
  87.  
  88. ## Console Clear Timer
  89. console.clear.enabled=false
  90. console.clear.time=60000
  91.  
  92. ## Bots Settings
  93. game.roomswithbotscolor=0
  94. game.botdefaultcolor=31
  95. game.botbadge=BOT
  96. [/SPOILER]
  97. 6. Save the file once you have edited it with your database password
  98. [/SPOILER]
  99. [SPOILER="Settings up the CMS CONFIG"]
  100. 1. Go to your inetpub then your wwwroot folder
  101. 2. In the top right it allows you to search for a folder, search for 'config.php' [http://prntscr.com/gypo9b]
  102. ALTERNATIVE
  103. 1. Go to your inetpub folder then wwwroot then app then management then open up config.php with notepad++
  104.  
  105. 3. Replace it with this: [SPOILER="config.php"]
  106.  
  107. <?php
  108. if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file.'); }
  109.  
  110. $_CONFIG['mysql']['connection_type'] = 'pconnect'; //Type of connection: It must be connect, or pconnect: if you want a persistent connection.
  111. $_CONFIG['mysql']['hostname'] = 'localhost'; //MySQL host
  112. $_CONFIG['mysql']['username'] = 'root'; //MySQL username
  113. $_CONFIG['mysql']['password'] = 'PUT YOUR DATABASE PASSWORD HERE'; //MySQL password #Put the password you used to setup your navicat here
  114. $_CONFIG['mysql']['database'] = 'rp'; //MySQL database
  115. $_CONFIG['mysql']['port'] = '3306'; //MySQL's port
  116.  
  117. /*
  118. *
  119. * Hotel management - All URLs do not end with an "/"
  120. *
  121. */
  122.  
  123. $_CONFIG['hotel']['url'] = 'http://localhost'; //Does not end with a "/" #If your using localhost leave it, if your using a domain put your domain here
  124.  
  125. $_CONFIG['hotel']['name'] = 'RP NAME'; #Put what you want your RP name to be there
  126. $_CONFIG['hotel']['server_ip'] = '127.0.0.1'; #If your using localhost leave it, if your using a VPS put your VPS IP here
  127.  
  128. $_CONFIG['hotel']['cdnurl'] = 'localhost'; #If your using localhost leave it, if your using a domain put your domain here
  129.  
  130. $_CONFIG['hotel']['name'] = 'RP NAME'; #Put what you want your RP name to be there
  131. $_CONFIG['hotel']['facebook'] = '';
  132. $_CONFIG['hotel']['in_maint'] = false;
  133. $_CONFIG['hotel']['motto'] = 'Civilian';
  134. $_CONFIG['hotel']['credits'] = 10;
  135. $_CONFIG['hotel']['pixels'] = 0;
  136. $_CONFIG['hotel']['look'] = 'hd-180-1.ch-210-66.lg-270-82.sh-290-91.hr-100';
  137. $_CONFIG['template']['style'] = 'Habbo';
  138.  
  139. $_CONFIG['hotel']['online_text'] = 'Civilian(s) Online!';
  140.  
  141. ?>
  142.  
  143. [/SPOILER]
  144. 4. Save the file
  145.  
  146. [/SPOILER]
  147. Setting up SWFS
  148. [SPOILER="External swfs"]
  149. 1. Open up your inetpub folder then your wwwroot folder then your swfs folder then your gamedata folder then open up external_variables.txt with notepad++
  150. 2. Click CTRL + F, make sure it's on replace. In the top box put fluxrp.com and in the bottom put localhost or your domain [http://prntscr.com/gyprur]
  151. 3. Save the file
  152. [/SPOILER]
  153. Final setup
  154. [SPOILER="Client.php"]
  155. 1. Open up your inetpub folder then your wwwroot folder then your app folder then your tpl folder then your skins folder then your theme folder and open up client.php with notepad++
  156. 2. Replace it with this [SPOILER="client.php"]
  157.  
  158. <?php include_once ("forcevote.php");
  159. ?>
  160. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  161. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  162. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml">
  163. <head>
  164. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  165. <title>EliteRP - Client</title>
  166.  
  167. <script type="text/javascript">
  168. var andSoItBegins = (new Date()).getTime();
  169. </script>
  170. <link rel="shortcut icon" href="http://localhost/fluxweb/v2/images/favicon.ico" type="image/vnd.microsoft.icon" />
  171. <meta name="csrf-token" content="a68e16da32"/>
  172. <!--<script type="text/javascript" src="http://localhost/fluxweb/js/snow.js"></script>-->
  173. <link rel="stylesheet" href="http://localhost/fluxweb/static/styles/common.css" type="text/css" />
  174. <script src="http://localhost/fluxweb/static/js/libs2.js" type="text/javascript"></script>
  175. <script src="http://localhost/fluxweb/static/js/visual.js" type="text/javascript"></script>
  176. <script src="http://localhost/fluxweb/static/js/libs.js" type="text/javascript"></script>
  177. <script src="http://localhost/fluxweb/static/js/common.js" type="text/javascript"></script>
  178.  
  179. <link rel="stylesheet" type="text/css" href="https://t4t5.github.io/sweetalert/dist/sweetalert.css">
  180. <script src="https://t4t5.github.io/sweetalert/dist/sweetalert.min.js"></script>
  181.  
  182. <link href='http://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic,700italic|Ubuntu+Medium' rel='stylesheet' type='text/css'>
  183.  
  184.  
  185.  
  186. <style>
  187.  
  188. body {
  189. font-family: 'Ubuntu', sans-serif;
  190. width:960px;
  191. overflow: hidden;
  192. width: 100%;
  193. height: 100%;
  194. }
  195.  
  196. p{
  197. color:#525252;
  198. font-size:12px;
  199. }
  200.  
  201. .skillbar {
  202. position:relative;
  203. display:block;
  204. margin-bottom:15px;
  205. width:70%;
  206. background:#eee;
  207. height:30px;
  208. border-radius:3px;
  209. overflow:hidden;
  210. -moz-border-radius:3px;
  211. -webkit-border-radius:3px;
  212. -webkit-transition:0.4s linear;
  213. -moz-transition:0.4s linear;
  214. -ms-transition:0.4s linear;
  215. -o-transition:0.4s linear;
  216. transition:0.4s linear;
  217. -webkit-transition-property:width, background-color;
  218. -moz-transition-property:width, background-color;
  219. -ms-transition-property:width, background-color;
  220. -o-transition-property:width, background-color;
  221. transition-property:width, background-color;
  222. }
  223.  
  224. .skillbar-title {
  225. position:absolute;
  226. top:0;
  227. left:0;
  228. width:80px;
  229. font-weight:bold;
  230. font-size:13px;
  231. color:#ffffff;
  232. background:#6adcfa;
  233. -webkit-border-top-left-radius:3px;
  234. -webkit-border-bottom-left-radius:4px;
  235. -moz-border-radius-topleft:3px;
  236. -moz-border-radius-bottomleft:3px;
  237. border-top-left-radius:3px;
  238. border-bottom-left-radius:3px;
  239. }
  240.  
  241. .skillbar-title span {
  242. display:block;
  243. background:rgba(0, 0, 0, 0.1);
  244. padding:0 20px;
  245. height:30px;
  246. line-height:30px;
  247. -webkit-border-top-left-radius:3px;
  248. -webkit-border-bottom-left-radius:3px;
  249. -moz-border-radius-topleft:3px;
  250. -moz-border-radius-bottomleft:3px;
  251. border-top-left-radius:3px;
  252. border-bottom-left-radius:3px;
  253. }
  254.  
  255. .client-overlay {
  256. z-index: 99999;
  257. position: absolute;
  258. top: 5px;
  259. left: 5px;
  260. overflow: auto;
  261. min-width: 250px;
  262. pointer-events:none;
  263. }
  264.  
  265. #client {
  266. z-index: -1;
  267. pointer-events: auto;
  268. }
  269.  
  270. .skillbar-bar {
  271. height:30px;
  272. width:0px;
  273. background:#6adcfa;
  274. border-radius:3px;
  275. -moz-border-radius:3px;
  276. -webkit-border-radius:3px;
  277. }
  278.  
  279. .skill-bar-percent {
  280. position:absolute;
  281. right:10px;
  282. top:0;
  283. font-size:11px;
  284. height:35px;
  285. line-height:35px;
  286. color:#ffffff;
  287. color:rgba(0, 0, 0, 0.4);
  288. }
  289. </style>
  290.  
  291. <script type="text/javascript">
  292. document.habboLoggedIn = true;
  293. var habboName = "Nath";
  294. var habboId = 2;
  295. var facebookUser = false;
  296. var habboReqPath = "";
  297. var habboStaticFilePath = "http://localhost/web-gallery";
  298. var habboImagerUrl = "http://localhost/habbo-imaging/";
  299. var habboPartner = "";
  300. var habboDefaultClientPopupUrl = "http://localhost/client";
  301. window.name = "13574bb849eaa68aba57af6b14a5477d5cbffc9c";
  302. if (typeof HabboClient != "undefined") {
  303. HabboClient.windowName = "13574bb849eaa68aba57af6b14a5477d5cbffc9c";
  304. HabboClient.maximizeWindow = true;
  305. }
  306.  
  307.  
  308. </script>
  309.  
  310.  
  311. <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
  312.  
  313. <noscript>
  314. <meta http-equiv="refresh" content="0;url=/me/nojs" />
  315. </noscript>
  316. <meta http-equiv="Pragma" content="no-cache" />
  317. <meta http-equiv="Expires" content="-1" />
  318. <meta http-equiv="Cache-Control" content="no-cache, no-store" />
  319. <meta name="google" content="notranslate" />
  320.  
  321. <link rel="stylesheet" href="http://localhost/fluxweb/static/styles/habboflashclient.css" type="text/css" />
  322. <script src="http://localhost/fluxweb/static/js/habboflashclient.js" type="text/javascript"></script>
  323.  
  324. <script type="text/javascript">
  325. var BaseUrl = "http://localhost/swfs/gordon/PRODUCTION-201510261212-858675875";
  326. var flashvars = {
  327. "client.allow.cross.domain" : "0",
  328. "client.notify.cross.domain" : "1",
  329. "connection.info.host" : "127.0.0.1", /* Put your VPS IP here */
  330. "connection.info.port" : "30000",
  331. "site.url" : "http://localhost",
  332. "url.prefix" : "http://localhost",
  333. "client.reload.url" : "http://localhost/client",
  334. "client.fatal.error.url" : "http://localhost/client",
  335. "client.connection.failed.url" : "http://localhost/client",
  336. "logout.url" : "http://localhost/me",
  337. "logout.disconnect.url" : "http://localhost/client",
  338. "external.variables.txt" : "http://localhost/swfs/gamedata/external_variables.txt",
  339. "external.texts.txt" : "http://localhost/swfs/gamedata/external_flash_texts.txt",
  340. "external.figurepartlist.txt" : "http://localhost/swfs/gamedata/figuredata.xml",
  341. "productdata.load.url" : "http://localhost/swfs/gamedata/productdata.txt",
  342. "furnidata.load.url" : "http://localhost/swfs/gamedata/furnidata.xml",
  343. "sso.ticket" : "{sso}",
  344. "processlog.enabled" : "1",
  345. "account_id" : "2",
  346. "client.starting.revolving" : "Cleaning the streets.../Filling Garbage cans.../Spawning Hobo\'s../Turning on city lights.../Restocking Ammunation.../Rigging the Slot Machines...",
  347. "flash.client.url" : "http://localhost/swfs/gordon/PRODUCTION-201510261212-858675875/",
  348. "user.hash" : "df2cd7104536553afde9f7d66133d578eccb4606",
  349. "has.identity" : "1",
  350. "flash.client.origin" : "popup",
  351. "nux.lobbies.enabled" : "false",
  352. "country_code" : ""
  353. };
  354. var params =
  355. {
  356. "base" : BaseUrl + "/",
  357. "allowScriptAccess" : "always",
  358. "menu" : "false"
  359. };
  360. swfobject.embedSWF("http://localhost/swfs/gordon/PRODUCTION-201510261212-858675875/HabFlux.swf", "client", "100%", "100%", "10.0.0", "http://localhost/swfs/gordon/expressInstall.swf", flashvars, params, null);
  361. </script>
  362. </head>
  363.  
  364. <body>
  365. <?php
  366.  
  367. $k = mysql_fetch_assoc(mysql_query("SELECT * FROM rp_stats WHERE id = '" . $_SESSION['user']['id'] . "'"));
  368.  
  369. ?>
  370. <div class="client-overlay">
  371.  
  372. <td style="padding-right: 30px; padding-top:5px;"><div class="skillbar clearfix " id="curhealth" data-percent="<?php echo (($k['curhealth'] >= 100) ? '100' : $k['curhealth']); ?>%">
  373. <div class="skillbar-title" style="background: #fa6e6e;"><span>Health</span></div>
  374. <div id="health" class="skillbar-bar" style="background: rgb(250, 110, 110);"></div>
  375. <div class="skill-bar-percent" id="curhealth-stat"><?php echo $k['curhealth']; ?>/<?php echo $k['maxhealth']; ?></div>
  376. </div></td> <!-- End Health Bar -->
  377.  
  378.  
  379. <td style="padding-right: 30px; padding-top:5px;"><div class="skillbar clearfix " id="energy" data-percent="<?php echo $k['energy']; ?>%">
  380. <div class="skillbar-title" style="background: #88cd2a;"><span>Energy</span></div>
  381. <div class="skillbar-bar" style="background: rgb(136, 205, 42);"></div>
  382. <div class="skill-bar-percent" id="energy-stat"><?php echo $k['energy']; ?>/100</div>
  383. </div></td> <!-- End Energy Bar -->
  384.  
  385. <td style="padding-right: 30px; padding-top:5px;"><div class="skillbar clearfix " id="hunger" data-percent="<?php echo $k['hunger']; ?>%">
  386. <div class="skillbar-title" style="background: #f7a53b;"><span>Hunger</span></div>
  387. <div class="skillbar-bar" style="background: rgb(247, 165, 59);"></div>
  388. <div class="skill-bar-percent" id="hunger-stat"><?php echo $k['hunger']; ?>/100</div>
  389. </div></td> <!-- End Hunger Bar -->
  390.  
  391. <td style="padding-right: 30px; padding-top:5px;"><div class="skillbar clearfix " id="hygiene" data-percent="<?php echo $k['hygiene']; ?>%">
  392. <div class="skillbar-title" style="background: #6adcfa;"><span>Hygiene</span></div>
  393. <div class="skillbar-bar" style="background: rgb(106, 220, 250);"></div>
  394. <div class="skill-bar-percent" id="hygiene-stat"><?php echo $k['hygiene']; ?>/100</div>
  395. </div></td> <!-- End Hygiene Bar -->
  396. </div></div>
  397.  
  398.  
  399. <div id="client" class="flashclient" style="width:100%;min-height:100%;height:100%;"></div>
  400.  
  401. <div id="client-ui" style="position: absolute; top: 0; z-index: -5;">
  402. <div id="flash-wrapper">
  403. <div id="flash-container">
  404. <div id="content" style="width: 400px; margin: 20px auto 0 auto; display: none">
  405. <div class="cbb clearfix red">
  406. <h2 class="newtitle">Please update your Flash Player to the latest version.</h2>
  407. <div class="box-content">
  408. <p>You can install and download Adobe Flash Player here: <a href="http://get.adobe.com/flashplayer/">Install flash player</a>. More instructions for installation can be found here: <a href="http://www.adobe.com/products/flashplayer/productinfo/instructions/">More information</a>
  409. If you're on an iPad, iPhone or an Android device, you can get <a href="#">SkyRP for iOS</a> on the App Store or <a href="#" target="_blank">AnxRP for Android</a> on Google Play.</p>
  410. <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://localhost/fluxweb/v2/images/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
  411. </div>
  412. </div>
  413. </div>
  414.  
  415.  
  416. </script>
  417.  
  418. <!-- JS -->
  419. <script src="https://code.jquery.com/jquery.js"></script>
  420.  
  421. <script type="text/javascript">
  422.  
  423. function updateBars()
  424. {
  425. jQuery('.skillbar').each(function(){
  426. jQuery(this).find('.skillbar-bar').animate({
  427. width:jQuery(this).attr('data-percent')
  428. },6000);
  429. });
  430. }
  431.  
  432. jQuery(document).ready(function(){
  433. updateBars();
  434. });
  435.  
  436. jQuery("#health").animate({
  437. width: "70%"
  438. }, 10000 );
  439.  
  440. setInterval( function() {
  441. $.get("{url}/userstats", function(data, status){
  442.  
  443. var userstats = jQuery.parseJSON( data );
  444.  
  445. jQuery( '#curhealth' ).attr( 'data-percent', ( ( userstats.curhealth / userstats.maxhealth ) * 100 ) + '%' );
  446.  
  447. jQuery( '#curhealth-stat' ).text( userstats.curhealth + "/" + userstats.maxhealth );
  448.  
  449. jQuery( '#energy' ).attr( 'data-percent', userstats.energy + '%' );
  450. jQuery( '#energy-stat' ).text( userstats.energy + "/100" );
  451.  
  452. jQuery( '#hunger' ).attr( 'data-percent', userstats.hunger + '%' );
  453. jQuery( '#hunger-stat' ).text( userstats.hunger + "/100" );
  454.  
  455. jQuery( '#hygiene' ).attr( 'data-percent', userstats.hygiene + '%' );
  456. jQuery( '#hygiene-stat' ).text( userstats.hygiene + "/100" );
  457.  
  458. updateBars();
  459. });
  460. }, 10000 );
  461.  
  462.  
  463. </script>
  464. </body>
  465. </html>
  466.  
  467. [/SPOILER]
  468. 3. Save the file
  469. [/SPOILER]
  470. BASICS (For Super Noobs)
  471. [SPOILER="How to save a file (Notepad++)"]
  472. To save a file in Notepad++ you can use CTRL + S or go to the navigation, then to 'file' and 'save' [http://prntscr.com/gypv9p]
  473. [/SPOILER]
  474. [SPOILER="How to open a text file in Notepad++"]
  475. You can navigate to the file by going onto Notepad++ and going to 'file' then 'open' (CTRL + O) [http://prntscr.com/gypvte]
  476. You can right click on the file you're opening and click 'Edit with notepad++' [http://prntscr.com/gypw1y]
  477. [/SPOILER]
  478. [SPOILER="How to open the emu"]
  479. Open your emu folder on the desktop, go to 'Build' and double click on 'Plus Emulator.exe'
  480. [/SPOILER]
  481. You can now open up the emu and hopefully everything should work, if I made a mistake please let me know instantly! Sorry that I became sloppy towards end got a little tired, thank you for reading. Hope I helped you. Remember if you need any help, comment below!
  482.  
  483. Credits to those who provided the FluxRP Files (@HendeR)
  484. -Abdi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement