mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-03 08:39:04 +00:00
2005be0948
* Make ::update automatically restart server as well
* Add bank area checks back since previously you could open a bank, and as long as you didn't open another interface you could abuse it
* Fix noclip (NEEDS TESTING)
* Revert "Fix noclip (#302)"
This reverts commit 521ae52e4c.
* ::clip command removed, fixed a typo, reordered some stuff, fixed a bug with others cannon
-Removed the clip command from the client;
-Fixed a typo in a dialogue;
-Fixed mud battlestaff nto working as runes (water and earth);
-Fixed a bug with other cannons near you preventing you from setting down a cannon. Somehow your player would glitch himself and make it impossible to spawn a cannon at certain spot;
* Snow improvement
Nothing major
Co-authored-by: Daniel Ginovker <dcress01@uoguelph.ca>
38 lines
1.2 KiB
Java
38 lines
1.2 KiB
Java
import java.math.BigInteger;
|
|
|
|
/**
|
|
* ClientSettings
|
|
* @author Andrew (I'm A Boss on Rune-Server and Mr Extremez on Mopar & Runelocus)
|
|
*/
|
|
|
|
public class ClientSettings {
|
|
|
|
/**
|
|
* The Servers Name
|
|
*/
|
|
public final static String SERVER_NAME = "2006rebotted";
|
|
/**
|
|
* The Servers Website
|
|
*/
|
|
public final static String SERVER_WEBSITE = "www.2006rebotted.tk";
|
|
/**
|
|
* The Servers Ip
|
|
*
|
|
* You don't have to change this, the client will automatically connect to the server
|
|
* on localhost (Assuming you're running Client and LocalGame respectively)
|
|
*
|
|
*/
|
|
public static String SERVER_IP = "2006rebotted.hopto.org";
|
|
/**
|
|
* The Npc Bits for the Server
|
|
*/
|
|
public final static int NPC_BITS = 12;
|
|
/**
|
|
* The Servers Uid
|
|
*/
|
|
public final static int UID = 314268572;
|
|
|
|
public static final BigInteger RSA_MODULUS = new BigInteger("91553247461173033466542043374346300088148707506479543786501537350363031301992107112953015516557748875487935404852620239974482067336878286174236183516364787082711186740254168914127361643305190640280157664988536979163450791820893999053469529344247707567448479470137716627440246788713008490213212272520901741443");
|
|
public static final BigInteger RSA_EXPONENT = new BigInteger("65537");
|
|
}
|