Rename & Repackage

This commit is contained in:
dark98
2021-03-11 00:21:56 +00:00
parent caa4625efa
commit 3bf473129d
1921 changed files with 2017 additions and 2010 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
2006Redone\ Server/data/characters/
2006Scape\ Server/data/characters/
.idea/
.idea/workspace.xml
**/.idea/workspace.xml
**/.idea/*
**/*.jar
*/*.jar
*.iml
@@ -1,3 +0,0 @@
Manifest-Version: 1.0
Main-Class: com.rebotted.GameEngine
@@ -3,8 +3,8 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>2006redone</artifactId>
<groupId>com.rebotted</groupId>
<artifactId>2006Scape</artifactId>
<groupId>com.rs2</groupId>
<version>1.0</version>
</parent>
@@ -47,4 +47,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
@@ -11,11 +11,11 @@ public class ClientSettings {
/**
* The Servers Name
*/
public final static String SERVER_NAME = "2006rebotted";
public final static String SERVER_NAME = "2006Scape";
/**
* The Servers Website
*/
public final static String SERVER_WEBSITE = "www.rsrebotted.com";
public final static String SERVER_WEBSITE = "www.2006Scape.org";
/**
* The Servers Ip
*
@@ -25,7 +25,7 @@ public final class EntityDef {
break;
case 945:
entityDef.name = "2006Redone Guide";
entityDef.name = "2006Scape Guide";
break;
}
return entityDef;
@@ -1,6 +1,6 @@
// Decompiled by Jad v1.5.8f. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) package com.rebotted;
// Decompiler options: packimports(3) package com.rs2;
public final class ISAACRandomGen {
@@ -16,7 +16,6 @@ public final class Main {
*/
public static void main(String[] args) {
ClientSettings.SERVER_IP = "2006.2009scape.org";
if (args.length > 1)
{
System.out.println("Running local");
@@ -36,4 +35,4 @@ public final class Main {
}
}
}
}
@@ -278,7 +278,7 @@ public final class Signlink implements Runnable {
public static Synthesizer synthesizer = null;
public static String findcachedir() {
String path = System.getProperty("user.home") + "/.2006rebotted_file_system/";
String path = System.getProperty("user.home") + "/.2006Scape_file_system/";
File file = new File(path);
if (!file.exists()) {
if (!file.mkdirs()) {
@@ -289,7 +289,7 @@ public final class Signlink implements Runnable {
}
public static String secondDir() {
File file = new File("C:/.2006rebotted_file_system/");
File file = new File("C:/.2006Scape_file_system/");
if (!file.exists()) {
file.mkdirs();
}
@@ -417,4 +417,4 @@ public final class Signlink implements Runnable {
public static String wave = null;
public static int wavevol;
}
}
@@ -1,4 +1,4 @@
# 2006rebotted - Game Server
# 2006Scape - Game Server
This is the Game Server component of our emulated Runescape environment.
It's responsibility is to provide the instructions for the in-game world, its entities, and respond to player interactions.
@@ -6,10 +6,8 @@ Contained within is an implementation of the Runescape network protocol roughly
When run, this java application will listen on TCP port 43594.
### Building the project
- `git clone https://github.com/dginovker/2006rebotted`
- `cd 2006rebotted/2006Redone\ Server/`
- `./gradlew build`
- `java -jar ./build/libs/2006rebotted.jar`
- You will also have to place a copy of the `data` folder in the same location as the jar.
- `git clone https://github.com/2006-Scape/2006Scape`
- `cd 2006Scape/2006Scape\ Server/`
- `mvn package`
- `./runServer.sh`

Some files were not shown because too many files have changed in this diff Show More