mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-03 00:31:51 +00:00
IDs showing and HS prototype~~
This commit is contained in:
@@ -1231,7 +1231,6 @@ public class Game extends RSApplet {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public void method30(int j, int k, int l, int i1, int j1) {
|
||||
@@ -12087,7 +12086,7 @@ public class Game extends RSApplet {
|
||||
public int anInt1289;
|
||||
public static int tiara;
|
||||
public static int anInt1290;
|
||||
public boolean showInfo;
|
||||
public boolean showInfo = true;
|
||||
public static int anInt1401 = 256;
|
||||
public static int[] anIntArray385 = new int[] { 12800, 12800, 12800, 12800, 12800, 12800,
|
||||
12800, 12800, 12800, 12800, 12800, 12800,
|
||||
|
||||
@@ -4,8 +4,8 @@ character-password = pwjojo
|
||||
|
||||
[CHARACTER]
|
||||
character-height = 2
|
||||
character-posx = 3210
|
||||
character-posy = 3218
|
||||
character-posx = 3209
|
||||
character-posy = 3215
|
||||
character-rights = 0
|
||||
hasStarter = false
|
||||
bankPin1 = 0
|
||||
@@ -55,8 +55,8 @@ blackMarks = 0
|
||||
tutorial-progress = 36
|
||||
skull-timer = 0
|
||||
recoilHits = 0
|
||||
lastX = 3210
|
||||
lastY = 3218
|
||||
lastX = 3209
|
||||
lastY = 3215
|
||||
lastH = 2
|
||||
removedTask0 = -1
|
||||
removedTask1 = -1
|
||||
@@ -175,7 +175,6 @@ character-item = 5 1932 1
|
||||
character-item = 6 2310 1
|
||||
character-item = 7 1266 1
|
||||
character-item = 8 1206 1
|
||||
character-item = 9 1278 1
|
||||
character-item = 12 883 25
|
||||
character-item = 16 558 4
|
||||
character-item = 17 560 2
|
||||
@@ -183,7 +182,6 @@ character-item = 17 560 2
|
||||
[BANK]
|
||||
|
||||
[FRIENDS]
|
||||
character-friend = 0 211559
|
||||
|
||||
[IGNORES]
|
||||
|
||||
|
||||
@@ -1 +1,2 @@
|
||||
[2019/06/19] 22:04 irdb dropped 1 bronze sword absX: 3210 absY: 3218
|
||||
[2019/06/19] 22:14 irdb dropped 1 bronze dagger absX: 3207 absY: 3215
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
[2019/06/19] 22:14 irdb picked up bronze dagger itemX: 3207, itemY: 3215
|
||||
@@ -4,8 +4,8 @@ public class Constants {
|
||||
|
||||
public final static boolean SERVER_DEBUG = false;
|
||||
|
||||
public final static String SERVER_NAME = "2006Redone", SERVER_VERSION = "Server Stage v " + Constants.TEST_VERSION + ".";
|
||||
public final static double TEST_VERSION = 1.13;
|
||||
public final static String SERVER_NAME = "2006rebotted", SERVER_VERSION = "Server Stage v " + Constants.TEST_VERSION + ".";
|
||||
public final static double TEST_VERSION = 2.00;
|
||||
public static int BANK_SIZE = 352;
|
||||
public final static int ITEM_LIMIT = 15000, MAXITEM_AMOUNT = Integer.MAX_VALUE, CLIENT_VERSION = 999999,
|
||||
WORLD = 1, IPS_ALLOWED = 3, CONNECTION_DELAY = 100,
|
||||
|
||||
@@ -651,10 +651,8 @@ public class Client extends Player {
|
||||
getPlayerAssistant().sendSidebars();
|
||||
getItemAssistant().sendWeapon(playerEquipment[playerWeapon], ItemAssistant.getItemName(playerEquipment[playerWeapon]));
|
||||
getActionSender().sendMessage("Welcome to @blu@" + Constants.SERVER_NAME + "@bla@ - we are currently in Server Stage v@blu@" + Constants.TEST_VERSION + "@bla@.");
|
||||
getActionSender().sendMessage("@red@Warning@bla@: If you find a bug, report it to owner in skype.");
|
||||
if (!hasBankpin) {
|
||||
getActionSender().sendMessage("You do not have a bank pin it is highly recommended you get one.");
|
||||
}
|
||||
getActionSender().sendMessage("@red@Did you know?@bla@ We're open source! Pull requests are welcome");
|
||||
getActionSender().sendMessage("Source code at github.com/dginovker/2006rebotted");
|
||||
}
|
||||
for (int i = 0; i < 25; i++) {
|
||||
getActionSender().setSkillLevel(i, playerLevel[i], playerXP[i]);
|
||||
|
||||
@@ -54,6 +54,29 @@ public class Commands implements PacketType {
|
||||
case "close_interface":
|
||||
player.getPlayerAssistant().closeAllWindows();
|
||||
break;
|
||||
case "commands":
|
||||
player.getActionSender().sendMessage("::players, ::highscores");
|
||||
break;
|
||||
case "highscores":
|
||||
String[] highscores = new String[]{
|
||||
"@dre@Highscores",
|
||||
"",
|
||||
"Top 5 Highest total level:",
|
||||
"1", "2", "3", "4", "5",
|
||||
"",
|
||||
"Top 5 Highest coins stack:",
|
||||
"1", "2", "3", "4", "5"
|
||||
};
|
||||
player.getPlayerAssistant().sendFrame126("@dre@Highscores", 8144);
|
||||
player.getPlayerAssistant().sendFrame126("", 8145);
|
||||
player.getPlayerAssistant().sendFrame126("Top 5 Highest total level:", 8145);
|
||||
player.getPlayerAssistant().sendFrame126("1", 8145);
|
||||
player.getPlayerAssistant().sendFrame126("1", 8145);
|
||||
player.getPlayerAssistant().sendFrame126("1", 8145);
|
||||
player.getPlayerAssistant().sendFrame126("1", 8145);
|
||||
player.getPlayerAssistant().sendFrame126("1", 8145);
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user