Thread: How to set up rscd v25

Page 1 of 5 123 ... LastLast
Results 1 to 10 of 43
  1. #1 How to set up rscd v25 
    Registered Member
    Join Date
    Jan 2008
    Age
    34
    Posts
    121
    Thanks given
    0
    Thanks received
    0
    Rep Power
    10
    First of all The Downloads:

    - Apeache:
    http://www.uniontransit.com/apache/a...-1.7.0-bin.zip

    - Xampplite:
    http://www.apachefriends.org/downloa...n32-1.6.6a.zip

    - Java JDK:
    https://cds.sun.com/is-bin/INTERSHOP...-CDS_Developer

    Place them all in C:/ (Not in the same folder)

    RSCD v25:

    - Rscd v25 Source
    http://rapidshare.com/files/126396865/Rscd_v25.rar.html

    - Rscd v25 Www Files
    http://rapidshare.com/files/126398705/www.rar.html

    - Rscd .sql Database
    http://rapidshare.com/files/126399021/Rscd.rar.html

    Step1:
    Start By going the the XAMPPLITE folders and double click on the setup_xampp Let it load and when its finished It should say (Press any key to continue)
    When its done you need to start Apeace and MySQL!
    Do this by clickin on the (xampp-control) And select (SVC APEACE AND SVC MYSQL)
    Then Press start on both if they are running its should say (RUNNING) with green text.

    (IF YOR PORT 80 IS ALREADY INUSE YOU HAVE 1: close that program that uses port 80.
    2 CHANGE APEACE TO USE AN OTHER PORT!
    To change port 80 go to C:\xampplite\apache\conf and open (httpd) WIth wordpack!
    Shearch for (Listen 80) and change it to (Listen 81) AND press apache_installservice.bat
    Now to see ur local website you have to type (http://localhost:81/)
    (ONLY DO THIS IF YOU CAN NOT CLOSE THAT USEING PORT 80)


    Step2:
    Click on (APEACE ADMIN) and a website will popup! There you can choose your langh.
    When your done You will see your site its will be XAMPLITE's site!
    on the left side You see the menu CLICK on (Security)
    Then you will see a link
    ( => http://localhost/security/xamppsecurity.php <= [allowed only for localhost] )
    CLICK on it!

    Choose a password Were it says:

    MYSQL SECTION: "ROOT" PASSWORD

    aND THEN SELECT (http) aND PRESS (Password changing)

    Ok Now you have created Your HOST for the website and now we will add the (Database)
    If you made it port 81 You can click here:
    http://localhost:81/phpmyadmin/
    If not click here
    http://localhost/phpmyadmin/

    If you see the different i don't have to explain about that more!

    Enter ur name ROOT and your password that you choosed!

    ok Now you are in your (DB)

    unRAR You (SQL) its named (RSCD)
    In phpmyadmin its says Creat Database, enter RSCD there and Creat it!
    Press Import and then shearch for your RSCD.SQL. When its done it says say (imported bla bla files)

    Step3: (Adding your website)

    ok First of all go to
    C:\xampplite\htdocs
    And delete everything in it!
    Select Everything In your (WWW files)
    And past it into your (HTDOCS.folder)
    When your done sheach for you config.php file and open it with Notepack or whatever you use.
    Code:
    <?php
    
    $db_type = 'mysql';
    $db_host = 'localhost';
    $db_name = 'rscd';
    $db_username = 'root';
    $db_password = ''; (ENTER YOU PW HERE)
    $db_prefix = '';
    $p_connect = false;
    
    $cookie_name = 'rscd_cookie';
    $cookie_domain = '';
    $cookie_path = '/';
    $cookie_secure = 0;
    $cookie_seed = '3038997c';
    
    define('PUN', 1);
    To see if it works currectly You can type http:/localhost/ and see if your forum is there!

    Step4 (Rscd server!)

    Ok unback (Rscd v25) Do it in your dokomants

    So when you done and you in the server folders theres a few things you need to change befor you can run it lets start with connections
    Open You (WORLD.XML)
    It looks like this:
    Code:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE properties
     SYSTEM "http://java.sun.com/dtd/properties.dtd">
    <properties>
    
    	<comment>RSCD Config</comment>
    
    	<entry key="version">31</entry>
    	<entry key="ip">localhost</entry> 
    
    	<entry key="port">43594</entry>
    
    	<entry key="name">RSCDaemon</entry>
    
    	<entry key="location">Scotland</entry>
    
    	<entry key="maxplayers">800</entry>
    
    	<entry key="servernum">30</entry>
    
    	<entry key="lsip">localhost</entry>
    
    	<entry key="lsport">34522</entry>
    </properties>
    Where it Say LOCALHOST i usely change it to (MY) ip I suggest you do it to!
    When you done save it and close it!
    after that
    Open you (CONF.file) wich is named (LS)
    it looks like this:
    Code:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE properties SYSTEM
     "http://java.sun.com/dtd/properties.dtd">
    <properties>
    
    	<comment>RSCD-LS Config</comment>
    
    	<entry key="mysqlhost">localhost</entry>
    	<entry key="mysqldb">rscd</entry>
    
    	<entry key="mysqluser">root</entry>
    
    	<entry key="mysqlpass">ENTERYOUPW</entry>
    
    	<entry key="lsip">localhost</entry>
    
    	<entry key="lsport">34522</entry>
    
    	<entry key="queryip">localhost</entry>
    
    	<entry key="queryport">8181</entry>
    </properties>
    It Looks almost the same BUT Enter you (IP) Where it says (LOCALHOST) again
    And enter you pw where it says

    Code:
    <entry key="mysqlpass">ENTERYOUPW</entry>
    OK Now it is currect NOW you need apeache to run it If you have saved apache in (C:/)
    You can copy this
    Code:
    @echo off
    set PATH=%PATH%;C:\apache-ant-1.7.0\bin
    set JAVA_HOME=c:\Program Files\Java\jre1.6.0_05\bin\javaw.exe	1.6.0_05
    ant runserver
    pause
    PAST this in YOU (RUN_SERVER.bat)

    AND THIS IN YOU RUN_LSERVER.bat
    Code:
    @echo off
    set PATH=%PATH%;C:\apache-ant-1.7.0\bin
    set JAVA_HOME=c:\Program Files\Java\jre1.6.0_05\bin\javaw.exe	1.6.0_05
    ant runls
    pause
    OK Befor we try this out there a small thing poeple miss and thats the TOOL.jar!
    If you have installed SUN jdk then it should be placed in :

    C:\Sun\SDK\jdk\lib\tools.jar

    copy Tools.jar and past it to :

    C:\Program\Java\jre1.6.0_07\lib\tools.jar

    Now you should be able to run you server
    double click on run_lserver and on run_server when they connected to eachother they should say connected to world 30 succeded

    ok i think im done with it but not sure if i missed something and im vary sry for my english and grammer but i hope you can understand what i wrote!
    And if there is anyone who want to REwrite this with currect english pm me.

    This tutorials is 100% writen my -uberpker- first posted this here anyone else who taking credit for my work can go to hell! and btw look at the date when this was writen then look at the other guide who took this and youy will see this is the orginal tut!
    09-30-2008, 06:48 PM


    DOn't take credit for my work!

    IF you want to add GODSPELL:
    http://www.rune-server.org/showthread.php?t=78316
    tested on this works great
     

  2. #2  
    chip
    Guest
    omg yo i love you thanks so much i needed those wwwfiles and i cant w8 to how to set it up im soo exciteddd
     

  3. #3  
    Registered Member
    Join Date
    Jan 2008
    Age
    34
    Posts
    121
    Thanks given
    0
    Thanks received
    0
    Rep Power
    10
    haha cool
     

  4. #4  
    chip
    Guest
    what i do after tht lol i still cant get the server on buut i got the password going
     

  5. #5  
    chip
    Guest
    soz for double post how i get it running?
     

  6. #6  
    Registered Member
    Join Date
    Jan 2008
    Age
    34
    Posts
    121
    Thanks given
    0
    Thanks received
    0
    Rep Power
    10
    ok done i think
     

  7. #7  
    Registered Member
    Join Date
    Jul 2007
    Age
    94
    Posts
    131
    Thanks given
    3
    Thanks received
    9
    Rep Power
    36
    LOLZ @ APEACE instead of Apache
     

  8. #8  
    chip
    Guest
    its great =] now is the map editor the landscape editor if so how do iset tht up lol
     

  9. #9  
    Registered Member
    MrStix's Avatar
    Join Date
    May 2007
    Age
    30
    Posts
    314
    Thanks given
    0
    Thanks received
    0
    Rep Power
    84
    Whoa, nice tutorial. I give you REP for the post, good job man.
     

  10. #10  
    Registered Member
    Join Date
    Jan 2008
    Age
    34
    Posts
    121
    Thanks given
    0
    Thanks received
    0
    Rep Power
    10
    Quote Originally Posted by blackwolfmarwood View Post
    LOLZ @ APEACE instead of Apache



    yes i know so please don't point outwhat i spelled wrong. if you can read it with my bad english its good.

    Quote Originally Posted by chip View Post
    its great =] now is the map editor the landscape editor if so how do iset tht up lol

    yes i know how to use that oone to. BUT (TX) has the best land editor and its not relised.

    and xent's isnt that good.
    Last edited by uberpker; 10-03-2008 at 12:49 PM. Reason: Double posting is not allowed!
     

Page 1 of 5 123 ... LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •