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/
.idea/workspace.xml .idea/workspace.xml
**/.idea/workspace.xml **/.idea/workspace.xml
**/.idea/* **/.idea/*
**/*.jar */*.jar
*.iml *.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" 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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent> <parent>
<artifactId>2006redone</artifactId> <artifactId>2006Scape</artifactId>
<groupId>com.rebotted</groupId> <groupId>com.rs2</groupId>
<version>1.0</version> <version>1.0</version>
</parent> </parent>
@@ -11,11 +11,11 @@ public class ClientSettings {
/** /**
* The Servers Name * The Servers Name
*/ */
public final static String SERVER_NAME = "2006rebotted"; public final static String SERVER_NAME = "2006Scape";
/** /**
* The Servers Website * The Servers Website
*/ */
public final static String SERVER_WEBSITE = "www.rsrebotted.com"; public final static String SERVER_WEBSITE = "www.2006Scape.org";
/** /**
* The Servers Ip * The Servers Ip
* *
@@ -25,7 +25,7 @@ public final class EntityDef {
break; break;
case 945: case 945:
entityDef.name = "2006Redone Guide"; entityDef.name = "2006Scape Guide";
break; break;
} }
return entityDef; return entityDef;
@@ -1,6 +1,6 @@
// Decompiled by Jad v1.5.8f. Copyright 2001 Pavel Kouznetsov. // Decompiled by Jad v1.5.8f. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html // 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 { public final class ISAACRandomGen {
@@ -16,7 +16,6 @@ public final class Main {
*/ */
public static void main(String[] args) { public static void main(String[] args) {
ClientSettings.SERVER_IP = "2006.2009scape.org";
if (args.length > 1) if (args.length > 1)
{ {
System.out.println("Running local"); System.out.println("Running local");
@@ -278,7 +278,7 @@ public final class Signlink implements Runnable {
public static Synthesizer synthesizer = null; public static Synthesizer synthesizer = null;
public static String findcachedir() { 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); File file = new File(path);
if (!file.exists()) { if (!file.exists()) {
if (!file.mkdirs()) { if (!file.mkdirs()) {
@@ -289,7 +289,7 @@ public final class Signlink implements Runnable {
} }
public static String secondDir() { public static String secondDir() {
File file = new File("C:/.2006rebotted_file_system/"); File file = new File("C:/.2006Scape_file_system/");
if (!file.exists()) { if (!file.exists()) {
file.mkdirs(); file.mkdirs();
} }
@@ -1,4 +1,4 @@
# 2006rebotted - Game Server # 2006Scape - Game Server
This is the Game Server component of our emulated Runescape environment. 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. 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. When run, this java application will listen on TCP port 43594.
### Building the project ### Building the project
- `git clone https://github.com/dginovker/2006rebotted` - `git clone https://github.com/2006-Scape/2006Scape`
- `cd 2006rebotted/2006Redone\ Server/` - `cd 2006Scape/2006Scape\ Server/`
- `./gradlew build` - `mvn package`
- `java -jar ./build/libs/2006rebotted.jar` - `./runServer.sh`
- You will also have to place a copy of the `data` folder in the same location as the jar.

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