How to Code a 517 RSPS
- 1). Open your file finder, whether that's Windows Explorer or Finder. Navigate to where you saved your private server. Locate the file called "client." It is a Java file and more a megabit in size. Right-click on the file and select "Edit." This opens the file in a basic text editor.
- 2). Scroll through the file until you see the code "MAKEGLOBALOBJECT." This code does essentially what the name implies: it creates an object in the "RuneScape" world. Next to the "MAKEGLOBALOBJECT" is a series of numbers. Ignore that for now. Next to the numbers is the object to be created. This line of code is repeated hundreds of times in the file to create all of the objects in the game.
- 3). Highlight one line of code that creates an object you wish to add to your private server, such as "ore." Select the whole line, from MAKEGLOBALOBJECT to "ore."
- 4). Press "CTRL" and "C" to copy this line. Press "Enter" to create a new line. Press "CTRL" and "V" to paste this line of code below its original.
- 5). Log into your private server's account. Travel to the location where you wish the new object you are creating to spawn. Write down the coordinates for this location. The coordinates are listed below the mini-map on the right panel, under the words "Your Coordinates."
- 6). Minimize the screen showing your game in your server. Return to the client Java file. Delete the first two numbers in the line of code you created earlier.
- 7). Type in the coordinates you wrote down. Type the x-coordinate, then the y-coordinate. Press "File" and then "Save."
- 8). Locate the file called "Compile" in the same folder that your client Java file is in. Run the Compile file to compile your private server. This automatically closes your game in the private server. When the compiling finishes, reload your game.
- 9). Return to the spot where you set the coordinate for the new object. It is now there.