Jul 25, 2008

Runescape 2 Private Server Guide: Part 1 - making a private server

Free Web Hosting, No Ads > The Gaming Zone (7Gears.com) > Games [subforums] > RPG's (Role Playing Games) > RuneScape
Pages: 1, 2

free web hosting

Runescape 2 Private Server Guide: Part 1 - making a private server

robocz033
Notice from BuffaloHELP:
According to RuneScape TOS, as long as your private server does not connect/interfere with the actual server this 3rd party software is not breaking the real RuneScape TOS. Please use this information accordingly. If any RuneScape representative feels that this post is against your TOS, please contact Trap17 admins via PM or email. Thank you.


This is part 1, focused on making a private server and such, if you would like, i will post more on customization in other parts.

Overview:
This guide will explain the basics for building your very own rs private server! The topics being covered are: Getting a source, making it yours, setting up everything and making sure it works. this is going to be a very noob (i hate to use that word, but its the only one i could think of) friendly guide. if you have any questions, feel free to aim, email, or msn me. i am not putting in pictures, because i am assuming you are not totaly stupid. trust me, a first timer can do this easy if you read everything carefully. YOU WILL NEED NOTEPAD FOR THIS!!!!

Chapters:
Beginning

Chapter 1: Choosing a Source
Chapter 1 section a: Choosing a source right for you
Chapter 1 section b: Downloading a source
Chapter 1 section c: Explaination of Differences

Chapter 2: Making the Server Yours
Chapter 2 section a: Renaming the server
Chapter 2 section b: Going through other files and renaming

Chapter 3: Getting Everything to Work
Chapter 3 section a: Checking your files
Chapter 3 section b: Fixing Errors
Chapter 3 section c: Finishing up

Beginning
Right now i will explain the advantages and disadvatanges of private servers.

A private server is great for the gamer who wants to level fast and get great items, while communicating with others and not completely cheating. through a private server, you can change everything to your liking, making it your own. You choose the name, source, and everything inside. The only bad part is that, although this can be fun, unless you have a popular server, your alone. I will explain how to advertise in part 4 of the RS2 Private Server Guide

Chapter 1: Choosing a Source
Section A: Choosing a Source Right for You

There are many sources available for RS2 Private Servers, however few of them are that great. The best sources are Pimpscape, Phonescape, and Testscape. As a reult of being the best, they are also the most widely used and have the most tuts written for them. My personal favorite is pimpscape, and i have coded the most servers using that source and know the most about it, however, in this guide, i will cover all of the main sources listed above.

So, if you are still interested, now i will help you choose your source.

If you like pking, and a wide range of functionality and ease of use, i suggest Pimpscape.

If you like pking, a somewhat narrower view of functionality but still ease of use, i suggest Phonescape. by narrower view of functionality, i mean there isnt as much to worry about, but not that much you can do.

If you like normal go abouts, a lot of functionality, and can deal with slightly compromised ease of use, Testscape is for you.

Yes that section was short, but it doesnt need to be long, because those are the criteria of the 3 main sources.

Chapter 1: Choosing a Source
Section B: Downloading a Server Source

There are two main ways of doing this:
1: go to google and type in the name of the source, i.e. Pimpscape, then source.
2: go to Download Section and look around there

i will provide links to the 3 main sources, you can scan the stuff if you want, i didnt do anything to them

Testscape
Phonescape
Pimpscape

most of these files a .rar, so you will need Winrar to extract them

That was simple, wasnt it?

Chapter 1: Choosing a Source
Section C: Explaination of Differences

The main difference is the way the server is coded. for example, when making global objects, pimpscape is coded like this
CODE
makeGlobalObject
while testscape is coded like this
CODE
MakeGlobalObject
there are multiple ways of doing this, it just depends on your base. and the caps do make a difference! another difference is wether its a pk server or not, as i said testscape is the non-pk server and phonescape and pimpscape are pk servers. by pk server i mean that you can pk anywhere, i will explain how to change that, but wait until part 5. besides coding and pking, another great difference is the functionality of the server, which, depending on your wants and needs, can affect your server greatly. also, ease of use, or coding/playing, is another difference, this makes a huge difference in how well your server is liked. if your server is easy to understand and you can code it easily, your doing great! now, enough of that and onto making your server!

Chapter 2: Making the Server Yours
Section A: Renaming the server

I trust that every1 here knows the find command, if not, it is ctrl + F, when i say find use that command. replace is ctrl + H. alternatively, you can select edit, then the appropriate option.

Ok, first step, open the file client.java (located in the folder where you extracted your source to) and replace the name of your source, i.e. pimpscape, with whatever name you would like for your server. after typing in that information, press replace all.

Next, go to server.java and do the same.

and do the same in npchandler.java.

ok that takes care of that. also, if you have questions, please post. there are other things that need changing, but those will come later on.

Chapter 2: Making the Server Yours
Section B: Going Through Other Files and Renaming Them

Namely, the files client, server, and npchandler.java need to be changed. the change is for permissions regarding usernames. if you want, make your name admin on the server, and you wont have to worry, otherwise, keep reading.

Go through all the above mentioned files and search for admin, do the find command, not replace. if the word "admin" is in the context
CODE
&& playerName.equalsIgnoreCase("admin"))
then replace "admin" with your desired username (leave in the quotes).

Do this in all of the above mentioned files, and you should be fine, again, if you have questions, please post, i always like refining stuff.

Chapter 3: Getting Everything to Work
Section B: Checking Your Files

this is simple. open up your compiler*, located in your server file, and run it.

*2 common things that happen are that
a. you dont have the correct java version
b. the compiler isnt set up right
to fix those problems, download the newest version at www.java.sun.com. if the compiler says something like javac isnt recognized as...(w/e it says) replace it with this:
CODE
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: ::
:: All of the following code is © Copywrited 2006-2007, ::
:: Grene Penguin Entertainment. ::
:: ::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:::::::::::::

@echo off
if exist "C:\Program Files (x86)\Java\" set programfiles=C:\Program Files (x86)
set pr=%programfiles%\Java\
:co1
set b=0
set t=7
goto co2
:co2
color %b%%t%
:menu
cls
title The Perfect Compiler version 1.9
echo Welcome to shorty5855scape's Compiler
echo Please choose an option below to do that function.
echo Keep posted on the Moparscape Tutorials section for
echo any updates that I post.
echo.
echo c - Compile your server.
echo r - To Run your server.
echo e - To exit out of the program.
echo jar - It will create your server into an executable Jar archive.
echo color - Change the Text and Backround colors of this compiler.
echo reset - Resets your Compiler Logs.
echo.
echo.
set /p c=Option:
if %c%==c goto c
if %c%==C goto c
if %c%==r goto r
if %c%==R goto r
if %c%==jar goto jar
if %c%==Jar goto jar
if %c%==JAR goto jar
if %c%==color goto color
if %c%==Color goto color
if %c%==COLOR goto color
if %c%==reset goto reset
if %c%==Reset goto reset
if %c%==RESET goto reset
if %c%==e goto e
if %c%==E goto e
if %c%==* goto er
goto er
:jar
title Jar Creator
cls
echo What will be the name of the Jar file?
echo.
set /p name=Name:
if exist *.class (del *.class)
set pro=%pr%jdk1.5.0
set pro2=%pr%jdk1.6.0
set jav=bin\javac.exe
set go=jar2
goto cj
:jar2
%java% -cp . *java
echo Manifest-Version: 1.0 >> manifest
echo Created-By: 1.5.0_04 (Sun Microsystems Inc.) >> manifest
echo Main-Class: server >> manifest
set pro=%pr%jdk1.5.0
set pro2=%pr%jdk1.6.0
set jav=bin\jar.exe
set go=jar3
goto cj
:jar3
if not exist *.class (goto jre)
%java% -cvfm %name%.jar manifest *.class
del runserver.bat
del manifest
del *.class
goto jl
:jar4
set pro=%pr%jre1.5.0
set pro2=%pr%jre1.6.0
set jav=bin\java.exe
set go=jar5
goto cj
:jar5
echo @echo off >> runserver.bat
echo title %name% >> runserver.bat
echo %java% -cp .;%name%.jar server >> runserver.bat
echo pause >> runserver.bat
cls
echo %name% Jar file successfully made. The runserver.bat will
echo now load the Jar file. If you have any errors while runnning
echo the Jar file, please post about it in Mod Taharok's 'Perfect
echo Compiler' topic on MoparScape.
pause
goto menu
set
:color
cls
echo Would you like to change the backround color, change
echo the text color, or reset it to default?
echo.
echo back - Change the backround color.
echo text - Change the text color.
echo def - Change all colors back to default.
echo.
echo.
set /p color=Option:
if %color%==back goto back
if %color%==BACK goto back
if %color%==text goto text
if %color%==TEXT goto text
if %color%==def goto co1
if %color%==DEF goto co1
if %color%==* goto er
goto er
:back
cls
echo Please select a color to change the backround to:
echo.
echo black
echo white
echo red
echo yellow
echo green
echo blue
echo purple
echo.
echo.
set /p back=Color:
if %back%== black (set b=0)
if %back%== white (set b=7)
if %back%== red (set b=4)
if %back%== yellow (set b=6)
if %back%== green (set b=2)
if %back%== blue (set b=1)
if %back%== purple (set b=5)
goto co2
:text
cls
echo Please select a color to change the text to:
echo.
echo black
echo white
echo red
echo yellow
echo green
echo blue
echo purple
echo.
echo.
set /p back=Color:
if %back%== black (set t=0)
if %back%== white (set t=7)
if %back%== red (set t=4)
if %back%== yellow (set t=6)
if %back%== green (set t=2)
if %back%== blue (set t=1)
if %back%== purple (set t=5)
goto co2
:c
cls
title Compiler
set pro=%pr%jdk1.5.0
set pro2=%pr%jdk1.6.0
set jav=bin\javac.exe
set go=c2
goto cj
:c2
if exist src (goto cl) else (goto c3)
:c3
if exist *.java (goto cl2) else (goto ce)
:c4
%java% -cp . *.java
echo Files Compiled Successfully!
pause
cls
goto menu
:c5
%java% -cp . .\src\*.java
echo Files Compiled Successfully!
pause
move .\src\*.class .\classes\
cls
goto menu
:ce
cls
echo You must have Java files for this Compiler to Compile.
pause
cls
goto menu
:r
cls
title Runserver
set pro=%pr%jre1.5.0
set pro2=%pr%jre1.6.0
set jav=bin\java.exe
set go=r2
goto cj
:r2
set rjava=%java% -Xmx1024m -cp .;./jython.jar;./MySql/mysql-connector-java-3.0.17-ga-bin.jar server
cls
goto r3
:r3
if exist .\classes\server.class (goto sl2) else (goto r4)
:r4
if exist .\server.class (goto sl) else (goto se)
:r5
%rjava%
pause
cls
goto menu
:r6
set rjava=
set rjava=%java% -cp .;./classes; Server
%rjava%
pause
cls
goto menu
:se
cls
title Error
echo You do not have a Server.class. Make sure that you have used the
echo compiler with your server BEFORE you try runing it.
pause
cls
goto menu
:er
cls
title Error
echo Invalid command. Please make sure the commands you type
echo in are correct.
pause
cls
goto menu
:e
cls
exit
:cj
if exist "%pro2%_01\%jav%" (goto sj)
if exist "%pro2%\%jav%" (goto sj2)
if exist "%pro%_10\%jav%" (goto sj3)
if exist "%pro%_09\%jav%" (goto sj4)
if exist "%pro%_08\%jav%" (goto sj5)
if exist "%pro%_07\%jav%" (goto sj6)
if exist "%pro%_06\%jav%" (goto sj7)
if exist "%pro%_05\%jav%" (goto sj8)
if exist "%pro%_04\%jav%" (goto sj9)
if exist "%pro%_03\%jav%" (goto sj10)
if exist "%pro%_02\%jav%" (goto sj11)
if exist "%pro%_01\%jav%" (goto sj12)
if exist "%pro%\%jav%" (goto sj13) else (goto je)
:sj
set java="%pro2%_01\%jav%"
goto %go%
:sj2
set java="%pro2%\%jav%"
goto %go%
:sj3
set java="%pro%_10\%jav%"
goto %go%
:sj4
set java="%pro%_09\%jav%"
goto %go%
:sj5
set java="%pro%_08\%jav%"
goto %go%
:sj6
set java="%pro%_07\%jav%"
goto %go%
:sj7
set java="%pro%_06\%jav%"
goto %go%
:sj8
set java="%pro%_05\%jav%"
goto %go%
:sj9
set java="%pro%_04\%jav%"
goto %go%
:sj10
set java="%pro%_03\%jav%"
goto %go%
:sj11
set java="%pro%_02\%jav%"
goto %go%
:sj12
set java="%pro%_01\%jav%"
goto %go%
:sj13
set java="%pro%\%jav%"
goto %go%
:je
cls
title Error
echo You do not have JDK 5.0 or JDK 6.0 or any JDK 5.0 and 6.0 updates.
echo Go to Mod Taharok's tutorial on the Moparscape Tuturoials section
echo for step-by-step instructions to download the newest JDK Update.
pause
cls
goto menu
:sl
cls
echo Ran Server at %time% and on %date%. >> "Compile Logs.txt"
echo Server was run using %java%. >> "Compile Logs.txt"
echo Thank you for using Mod Taharok's 'Perfect' Compiler! >> "Compile Logs.txt"
echo. >> "Compile Logs.txt"
goto r5
:sl2
cls
echo Ran Server at %time% and on %date%. >> "Compile Logs.txt"
echo Server was run using %java%. >> "Compile Logs.txt"
echo Thank you for using Mod Taharok's 'Perfect' Compiler! >> "Compile Logs.txt"
echo. >> "Compile Logs.txt"
goto r6
:cl
cls
echo Compiled Java files at %time% and on %date%. >> "Compile Logs.txt"
echo Java files were compiled using %java%. >> "Compile Logs.txt"
echo Thank you for using Mod Taharok's 'Perfect' Compiler! >> "Compile Logs.txt"
echo. >> "Compile Logs.txt"
goto c5
:cl2
cls
echo Compiled Java files at %time% and on %date%. >> "Compile Logs.txt"
echo Java files were compiled using %java%. >> "Compile Logs.txt"
echo Thank you for using Mod Taharok's 'Perfect' Compiler! >> "Compile Logs.txt"
echo. >> "Compile Logs.txt"
goto c4
:jl
cls
echo %name% Jar file created at %time% and on %date%. >> "Compile Logs.txt"
echo Jar file was created using %java%. >> "Compile Logs.txt"
echo Thank you for using Mod Taharok's 'Perfect' Compiler! >> "Compile Logs.txt"
echo. >> "Compile Logs.txt"
goto jar4
:reset
cls
echo Resetting the Compiler's Logs...
pause
del "Compile Logs.txt"
goto menu

-note: this compiler is a multipurpose compiler, its self explanitory tho.

everything should work fine now...unless you have errors...

Chapter 3: Getting Everything to Work
Section B: Fixing your Errors

the most common error is not putting a "{" in front of a line of code. if you get a error saying its an illegal start of an expression, simple press enter at the beginning of the line, and put a "{" on the line above. if the problem persists, post a screen shot and i will resolve your issue.

i am not going to address other errors, seeing how 70% of the errors can be fixed by following the above instructions.

Chapter 3: Getting Everything to Work
Section B: Finishing Everything Up

You are done, for now. to get your server online, go to part 2 of the RS2 Private Server Guide. (part 2 is not yet released (subject to change))
You cannot login to your server until it is online, so wait for part 2. ill have it up within a day or 2.

Again, if you have comments, concerns, thoughts, etc... please post email, aim, or msn me and i will get back to u asap.

Thank You,

robocz033

Notice from BuffaloHELP:
We have dedicated RuneScape forum. Moved. Do not abbreviate in the Title.

 

 

 


Reply

nol
Really good tutorial, Idk if I'll use, but I do have my own runescape server. Only thing is @Buffalo, why is this in runescape? Because this isn't really a runescape, its more of a cast off runescape, like invisionfree is with IPB. Almost anyways lol. But very good, also where you say

The main difference is the way the server is coded. for example, when making global objects, pimpscape is coded like this
CODE
makeGlobalObject

while testscape is coded like this
CODE
MakeGlobalObject


you could also say that freescape is also coded like

CODE
addglobalobject


or was it Addglobalobject :S IDk lol, I don't like that java is case sensitive

Reply

robocz033
neither do i, it gets annoying. especially when you are trying to code in a hurry! thats y after 20 minutes of coding, or if im done with a file, i compile then fix any errors, usually there arent any, lol.

Reply

super_hi11
I'm having trouble with the compiler*. How do I put the code in it?

Reply

nol
Do open with notepad. Usually that works. Make sure to save as compiler.bat

Reply

The Man For The Job
Hi amazing guide has helped soooo much 10/10

the only problem i am having is making an admin i have done ( i think ) what it has said.

please can someone help.


10/10 recommended!

Reply

nol
if ur doing it in testscape i belive you must open up client.java and find admin? and add their name to the list? I beleive thats it, and that should work, otherwise if ur using another source, go to the character file of that person, change their player right to 2, for admin, 1, for mod, or 0 for regular user

Reply

PiXelPaGeR
nice tut, i might gonna make my own server biggrin.gif

but wich version si it ?? cuz i want to try the building skill in a private server tongue.gif

Reply

apostolstef
okey i hav 3 problems:
1. do i hav to turn the ".java" files into".bat" files or leave em like that?
2. i tried the code for the java which was on the guide but now when i start compile.bat i opens for a sec.. i see some writing and then it closes. do i hav to copy the hole code or where do i start with the copiing?
3.when i open runserver.bat it opens and it says:Starting TestScape Server on: 0.0.0.0:43594
Pls if u can't post in this forum send me the answers at: apostolstef@yahoo.com... pls and ty very much if u help wink.gif

Reply

cartman110
If I'm trying to make a Silabsoft rs2 private server is the server name changing the same or is it different? I'm trying hard to find a way to change the server name, I know I am in the right folder.
I really need help with this I'm not exactly the best with this.

Reply

Latest Entries

iGuest
Chapter 3 question
Runescape 2 Private Server Guide: Part 1

Replying to robocz033

I've done everything you said, but when I got to the part about Java.Sun.Com, I was confused. I went there and tried to get version 6 Update 6, but the big download wouldn't download. But I did get the message while opening the javac file. I also got this before I downloaded the small file. I tried to re-download the big Java.Sun file, but it didn't work, so I said to myself, "I'll try to skip it". Then when you said to replace the message, I couldn't figure out how. I tried copy and paste, select all, and Ctrl+H. I couldn't figure it out. Please, if you can help e-mail me. Thanks.

-question by Todd

Reply

iGuest
Can Some One Please Help Me I Cannot Get JDK 6.0 Which Make Me Unable To Run

-reply by Stebbo

Reply

iGuest
dont get what to do!
Runescape 2 Private Server Guide: Part 1

TESTSCAPE don't get it need help with complier and other things like admin and stuf! give me your email so I can add you on msn we talk


-reply by dayne

Reply

iGuest
an error pops out
Runescape 2 Private Server Guide: Part 1

When I try to start complier it close and opens and when I start server it says:
Expection in thread""main"".Java.Lang.Noclassdeffounderror: server
caused by:java.Lang.ClassnotfoundExpections: server

And other same as archilles.Please reply at aderson_34566uiio@hotmail.Com Please Please Please Please Please!

-question by help me

Reply

BuffaloHELP
Since the time of this post, RuneScape has changed their Terms Of Service.

Please be advised that by informing how to run one's own Private Server other than educational purposes, it is against RS TOS. Trap17 forum is strict on enforcing our forum rules by adhering to other site's Acceptable Usage Policy.

Thank you.

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2
Recent Queries:-
  1. make your own silabsoft server - 1.96 hr back. (1)
  2. guide on how to make a silabsoft server - 16.26 hr back. (1)
  3. pimpscape download - 18.51 hr back. (1)
  4. silabsoft server source - 30.11 hr back. (1)
  5. how do you make your own silabsoft server - 68.55 hr back. (1)
  6. pimpscape - 73.28 hr back. (2)
  7. how to make scilabsoft server - 90.38 hr back. (1)
  8. runescape private server compiler codes - 90.73 hr back. (1)
  9. pimpscape source - 111.69 hr back. (1)
  10. pimpscape source download - 140.82 hr back. (1)
  11. guide on making your own silabsoft server - 143.51 hr back. (2)
  12. how to fix java.lang.noclassdeffounderror runescape private - 145.24 hr back. (1)
  13. how to make a silabsoft server - 147.14 hr back. (1)
  14. download a client base for a runescape private server - 161.58 hr back. (1)
Similar Topics

Keywords : rs2, private, server, guide, part, 1, making, private, server

  1. New Runescape Private Server Ham-scape.no-ip.org
    (0)
  2. Runescape Topsite
    Ruinedscape (0)
    Well i noticed the overwhelming amount of private servers out there so i thought i'd create
    something that would help the players distinguish between them(IE find who's is better). Ive
    named it Ruinedscape Top Site (after the events that occured on dec 10) The url is here:
    www.ruinedscape.org Registration is free, and its been only up for a day or so and already 230 hits
    so ya it will bring ya traffic /tongue.gif" style="vertical-align:middle" emoid=":P" border="0"
    alt="tongue.gif" />....
  3. Killa's 24/7 Private Server! Look~~~
    Join to stay please! (7)
    Although several attempts have been made to contact RuneScape about topics similar to this,
    RuneScape have as of yet neither confirmed nor denied this was an illegal method of playing
    RuneScape. However, according to their TOS, as long as your private server does not
    connect/interfere with the actual server this 3rd party software is not breaking the real RuneScape
    TOS. Please use this information accordingly. Basic runescape server with all skills except
    summoning Sorry.... Heres a list of things that it includes: - Moparscape Compatible - Runescape
    Like - Non-laggy ....
  4. My Newest Guide For Runescape
    (0)
    Now this guide is going to be short and simple, nothing special. ok all you need is rune armor and a
    dragon weapon recommended + food. I advise using monks as there not much more than lobs, but half of
    sharks, and steal heal 16. Ok so you should have your rune armor on and your weapon and 26 food,
    why not 28 you ask? Because your going to go kill ankous lvl 75 located in the barbarian village
    mini game (bottom floor, ill get a map up soon.) If you bring 28 of whatever food you have chosen,
    you will waste food picking up drops when you get there. Therefore, it saves a l....
  5. How Do I Get My Server Online
    (2)
    how do i get my server online so i can go to www.rune-masters.com and manage my server....
  6. How Do I Get My Server To Run
    (2)
    what do i got to do to get my server to run and how do i change the name of the server on
    client.java it wont let me it makes a dinging noise it wont let me change the name.......
  7. Runescape Sub-forum Rules And Guidelines
    READ ME BEFORE POSTING (0)
    When posting in this sub-forum please keep these guidelines in mind. Your post/topic must comply
    with Runescape's Terms of Service. The TOS can be found . This includes the Intellectual
    property rights term. QUOTE You must not reverse-engineer, decompile or modify the Game client
    software in any way. You must not use a modified/customised version of the client software. You must
    not create or provide any other means by which the Game may be played by others (including, without
    limitation, replacement or modified client/server software, server emulators). ....
  8. Make 10 Mill Through 100mill On Runescape
    10 mill-100mill (17)
    hey as all you all know summoning skill is comming so i decided to make a new guide not to sell but
    free i barley found out about summoning i i thought hmm this would be great money making guide i
    mean great so here you go im typing a bit to fast you might see some spelling errors you will
    require hunting,and magic to summon according to jagex its 100% that you will need some kind of
    magic level to summon but the hunter is like a rumor id say 70% magic,25%hunter,5% (some other
    skill) Well my theory is Life rune is a 90% possibility SO RUnEcRaFtIng will be a skill to....
  9. Runescape Update
    runescape pking update (3)
    my name is m spartan w and i personally dont like the new update abought pking and bounty i got some
    resons ferst becuse im a pker thats how i make my money and staking but jagex messed it up i have
    no money makeing ways my skills arnet that high so what im asking is that we make suggestions jagex
    saide that they will not change the update but if we can give them our ideas that it might help
    heres my idea that we make a command like a script that tells can tell if your a gold seller that
    you can only have pking items u must not have multiple furys as you can sell tho....
  10. Rate My Runescape Fansite
    http://runefame.net (5)
    Rate it from 1 to 5 The url is http://runefame.net/ Be sure to check out the forums.....
  11. Runescape Private Server
    How to make your own private server and make runescape cash with it :) (51)
    First off you need a source: You can download one of these. QUOTE Cheezscape 80 -
    http://www.megaupload.com/?d=W8NCP0YC Cheezscape Pk - http://www.megaupload.com/?d=SOK1SPVR
    Project 16 V.6 Edit 8 - http://rapidshare.com/files/10028200...DIT_8.rar.html Project 16 v3 -
    http://www.megaupload.com/?d=ZFYG6T8B Project 16 Blitz -
    http://d.turboupload.com/d/1544978/P16_Blitz.rar.html Project16 V.6 Full Source -
    http://files.filefront.com//;5486316;;/ Project16 V.6 Full Source -
    http://www.megaupload.com/?d=IAO4H58V Project16 V.6 Full Source - http://rapidshar....
  12. Need A Job Through Runescape World
    Please Read If you need a permanent Worker (6)
    Hello to all of TRAP17 Members. I am seeking a job. I really need big money & need it ASAP. My
    best stats are: WC & MINING. If u need food (cooked or uncooked) I could also do that. I am
    looking for someone who is willing to pay around 60-100k per job… If you are willing to offer me a
    job or interested and want to know more, add me On runescape… * Agent1227 * TYVM to all the people
    that read this =) Very much appreciated. Yours truly, --------------- Agent1227 Post moved and
    retitled to better fit topic ....
  13. Runescape Pcing
    Pcing Clan ON Runescape (2)
    Im Tiger_s_14. Which is also my rsn. Im starting my own pcing clan! I will Host Pcing
    event,Cwing,Dualing and anyother events my clan votes to do! The Reqirements to join is 85+
    combat lvl. Please fill out this forum and i'll pm on runescape if u made the clan or not.
    Combat lvl: Mage lvl: Range lvl: Strenght lvl: Attk lvl: Hitpoints: Def. lvl: Will you remain loayl
    to the clan? Have u ever been in any other clans? Once u have filled out the forum u could pm me or
    wait till i pm u. Ps: Please download this for ezer clan discustion thank you! http://w....
  14. Runescape 2 Private Server: Code/guide 1
    Creating a wilderness training zone. (10)
    Purpose: To make a cool training area in the wild. Difficulty: 1-3 Classes Modified:
    Client.java, shop.cfg, autospawn.cfg, npchandler, item2.java, shop.cfg Assumed Knowledge:
    Copy/paste, basic knowledge of cases, and how to search. Credits: 10% fedexer(global object tut),
    10% to my friend for teaching me how to make monsters drop random things, 80% me for the idea, and
    comming up with it. REQUIREMENTS: Make sure that your server can use herblore, mining,
    woodcutting, theiving, and prayer. You must also have fedexer's global objects code. Other
    Thi....
  15. Runescape 2 Private Server Guide: Part 2
    No-ip setup (19)
    Overview: In part 2 i will describe how to set up no-ip. no-ip is a simple way of hosting a
    private server and it is most commonly used. if this does not work, there is another way i will tell
    about in part 3. part 2 and 3 are short, yet effective guides that are aimed at helping you! If
    you are not sure if it is working, it is probably because you have not read part 4: Port Forwarding
    Chapters: Chapter 1: What is No-ip? Chapter 2: Initial Setup Chapter 2 Section A:
    Creating an account Chapter 2 Section B: The DUC Chapter 3: Config Chapter....
  16. Runescape Cheats From Players
    Calling all RS players (3)
    I play RS some of the time and am wondering cheats for RS. I don't know any, but if you know
    some PLEASE POST THE CHEATS. It would help me alot and other ppl too... thanks. Cheats and
    specifically Hacking, are not Topics for discussion here at the trap17 ....
  17. Runescape- Anyone Play?
    (13)
    Hi guys, I made this threadto talk about the online MMORPG game. It is a great game for people.
    Althouhg being a Java Applet the graphics may be not that good but it is one heck of a game. Youcan
    play it for free or youcan pay for a MEmbership for only 5$ a month It is a great Onine game.
    My username on the game is Ridwan232 Come online sometime and we can PK together or illPK you lol.
    Also WoW is a good gae but it is way too expensive that is why i chose this game. Runecape I also
    am opening a Runescape clan called the Skeletonkeepersclan. Idont know if this....
  18. Best Ways To Make Money In Runescape
    (7)
    1.) this is the first.... go run nature runes then fletch yew longs and alch them for money you can
    keep them noted and alch a few thousand times. if you don't have the fletching level make steel
    platebodys which are more time consuming but well worth the while. 2.) merchanting. the best thins
    to merchant are new items buy them for under 300k and sell for 500k on the first day of the new
    treasure trail release. 3.) pking. start up a pking account withh some friends that you can all pk
    on to get items like rune scimitars. 4.) pick flax in camelot then run to the ho....
  19. Three Steps To Become A Runescape Member
    (4)
    Step 1 You will need to create a 100% free Paypal account, click here to do it . You
    will soon know why you need a paypal account. You need it to receive money, for then to pay your
    Runescape membership. Step 2 After creating your free paypal account, create now a 100% free
    account on triond as a member. Triond is a site that let's you publish any kind of content
    form, like articles about anything, photos, videos etc. The content must be made by you. Publish
    your articles there, and that articles will earn you money, the more views that it gets, ....
  20. Runescape 2 Website
    (55)
    Can someone please give me a link to the runescape 2 website. I want to play runescape 2 but, I
    don't know the website and if you know the runescape 2 website then, please please please tell
    meeeeeeeeeeeeeeeeeeeeee. I tried to find the runescape 2 website everyday but, I didn't. I'm
    still searching for it, No answer yet. -Smartking790- ....
  21. 1 More Administrator Needed For Runescape Forums Website
    (10)
    If you are looking for runescape forums than you're at the right place please join and post on
    my new runescape forums website, to visit my runescape forums website, please visit and go to
    z6.invisionfree.com/Runescapersmartsclan/ 1 New administrators needed so please join and tell me
    if you want to be a admisitrator for my runescape forums. thanks for reading. Register now if you
    play runescape because now on runescape forms you can buy and sell runescape items, join clans, post
    your runescape clan, post your runescpae pictures, and more......... TO VISIT THE ....
  22. Runescape Life Talk
    A place to chat--free--not like those runescape forums on runescape=( (2)
    Runescape Life Talk How would you like to go onto a forum where you can actually chat
    with runescape members and runescape lovers for free? without becoming a runescape member at
    runescape.com? Well here is the thing, I have got this forum all ready and ready for posting. All I
    need is members! This is where you come in people. On this forum there are... +Buy/Sell
    forum: This way you can buy and sell your stuff on runescape +Rules: This way you can be sure this
    forum stays nice and friendly +Clan recruits: We are wanting you to advertise on our foru....
  23. Private Runescape Server
    Get all your heart desires! (49)
    Although several attempts were made, RuneScape neither confirmed nor denied this was an illegal
    method of playing RuneScape. However, according to their TOS, as long as your private server does
    not connect/interfere with the actual server this 3rd party software is not breaking the real
    RuneScape TOS. Please use this information accordingly. lllllllllllllll Runescape Private
    Server lllllllllllllll lllllllllllllll RomeScape lllllllllllllllll lllllllllllllll
    By Brandon Smith lllllllllllllll Even though you start off as 1 skill everything with 1....
  24. Runescape Help
    Need help on RS? Read this (11)
    My guide to Runescape First you must make a account(Abviously) Then get through the tutorial
    island. Which is basicly a island that teaches you about the games basics. You will learn on
    Tutorial island how to............... (Note not in order and not Members) Make a fire(Chop wood
    which goes with this) Fishing Cook food Ranged(How to fight with Bow and arrows) Combat(Attack,
    Defence, Strength) Magic Mining Smithing Prayer Those are all the things you learn in tutorial
    island. After you get past Tutorial island you folow these instructions. You need to get ....
  25. Runescape - A Great Mmorpg
    Massive Multiplayer Online Game (21)
    Hello Fellow Gamers, I am writing this post to tell everyone about this cool online game that I am
    in to. First you need to know what an MMORPG is. Basically, it is a multiplayer online game that is
    played by thousands of players at the same time! Sounds exciting? It's a great place to have
    fun and to talk to other people playing all around the world. A particularly good one is Runescape,
    I like it because it is extensive and fun. Another great part is that it is COMPLETLY free! You
    can just go on the website and sign-up. You don't even need a super goo....
  26. How Do I Make Gold Fast In Runescape/
    (117)
    OK i have been playin for liken 4 years and i still can't get alot of gp. the mosti have had in
    that time is like 10k and i have googled cheat codes and all that stuff and nothing works so any
    ideas are welcome.....
  27. Post Your Runescape Statistics
    Like your lvl, range, mage etc... (18)
    In hopes to clear of the shoutbox of runescape talk i have decided to make this forum, and in this
    forum runescape players can post their runescape statistics, like their range, mage, def, attk, etc,
    do please post it here....and to start it off i dug in my old password file and found my old
    runescape name which was still there and not deleted and here are its statistics, Big Red95842
    QUOTE Over-all Level - 41 Defense - 31 Attack - 33 Hitpoints - 39 Strength - 11
    Cooking - 25 Crafting - 25 Firemaking - 29 Magic - 44 Mining - 48 Prayer - 25 R....
  28. Runescape Name
    I got an ownage name! (17)
    I got an ownage name on runescpae w00t for me lol. ....
  29. Runescape...not That Great
    (46)
    I just finished playing runescape, and I have to say....its no that great. It is not compatible with
    56K modems, and it downloads too much stuff onto your computer. The graphics arent very good either.....
  30. Runescape
    ONE OF THE BEST FREE MMORPG (18)
    This is a great alt to WOW if you need a Massivly Multiplayer Online Role Play Game, they do have
    members servers but they supply free ad supported ones too, on Tues. October 25 11:28am Mountain
    time (a time that every ones at work) they had 75445 people onl;ine and playing WOW this is a ton In
    my opinion RS is a great MMORPG....

    1. Looking for rs2, private, server, guide, part, 1, making, private, server

Searching Video's for rs2, private, server, guide, part, 1, making, private, server
Similar
New
Runescape
Private
Server
Ham-scape.no
-ip.org
Runescape
Topsite -
Ruinedscape
Killa's
24/7 Private
Server!
Look~~~ -
Join to stay
please!
My Newest
Guide For
Runescape
How Do I Get
My Server
Online
How Do I Get
My Server To
Run
Runescape
Sub-forum
Rules And
Guidelines -
READ ME
BEFORE
POSTING
Make 10 Mill
Through
100mill On
Runescape -
10
mill-100mill
Runescape
Update -
runescape
pking update
Rate My
Runescape
Fansite -
http://runef
ame.net
Runescape
Private
Server - How
to make your
own private
server and
make
runescape
cash with it
:)
Need A Job
Through
Runescape
World -
Please Read
If you need
a permanent
Worker
Runescape
Pcing -
Pcing Clan
ON Runescape
Runescape 2
Private
Server:
Code/guide 1
- Creating a
wilderness
training
zone.
Runescape 2
Private
Server
Guide: Part
2 - No-ip
setup
Runescape
Cheats From
Players -
Calling all
RS players
Runescape-
Anyone Play?
Best Ways To
Make Money
In Runescape
Three Steps
To Become A
Runescape
Member
Runescape 2
Website
1 More
Administrato
r Needed For
Runescape
Forums
Website
Runescape
Life Talk -
A place to
chat--free--
not like
those
runescape
forums on
runescape=(
Private
Runescape
Server - Get
all your
heart
desires!
Runescape
Help - Need
help on RS?
Read this
Runescape -
A Great
Mmorpg -
Massive
Multiplayer
Online Game
How Do I
Make Gold
Fast In
Runescape/
Post Your
Runescape
Statistics -
Like your
lvl, range,
mage etc...
Runescape
Name - I got
an ownage
name!
Runescape...
not That
Great
Runescape -
ONE OF THE
BEST FREE
MMORPG
advertisement



Runescape 2 Private Server Guide: Part 1 - making a private server



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE