mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 15:20:52 +01:00
Fixes
This commit is contained in:
parent
8a75cf6c73
commit
6713eb1e77
@ -92,7 +92,7 @@ public class ClubOffer implements ISerialize {
|
|||||||
message.appendInt(this.pointsType);
|
message.appendInt(this.pointsType);
|
||||||
message.appendBoolean(this.vip);
|
message.appendBoolean(this.vip);
|
||||||
|
|
||||||
long seconds = this.days * 86400;
|
long seconds = this.days * 86400L;
|
||||||
|
|
||||||
long secondsTotal = seconds;
|
long secondsTotal = seconds;
|
||||||
|
|
||||||
@ -103,7 +103,7 @@ public class ClubOffer implements ISerialize {
|
|||||||
seconds -= totalMonths * (86400 * 31);
|
seconds -= totalMonths * (86400 * 31);
|
||||||
|
|
||||||
int totalDays = (int) Math.floor((int) seconds / 86400.0);
|
int totalDays = (int) Math.floor((int) seconds / 86400.0);
|
||||||
seconds -= totalDays * 86400;
|
seconds -= totalDays * 86400L;
|
||||||
|
|
||||||
message.appendInt((int) secondsTotal / 86400 / 31);
|
message.appendInt((int) secondsTotal / 86400 / 31);
|
||||||
message.appendInt((int) seconds);
|
message.appendInt((int) seconds);
|
||||||
|
@ -22,7 +22,7 @@ public class GuardianTicket {
|
|||||||
private final Habbo reporter;
|
private final Habbo reporter;
|
||||||
private final Habbo reported;
|
private final Habbo reported;
|
||||||
private final Date date;
|
private final Date date;
|
||||||
private ArrayList<ModToolChatLog> chatLogs;
|
private final ArrayList<ModToolChatLog> chatLogs;
|
||||||
private GuardianVoteType verdict;
|
private GuardianVoteType verdict;
|
||||||
private int timeLeft = 120;
|
private int timeLeft = 120;
|
||||||
private int resendCount = 0;
|
private int resendCount = 0;
|
||||||
@ -45,7 +45,7 @@ public class GuardianTicket {
|
|||||||
|
|
||||||
this.votes.put(guardian, new GuardianVote(this.guardianCount, guardian));
|
this.votes.put(guardian, new GuardianVote(this.guardianCount, guardian));
|
||||||
|
|
||||||
Emulator.getThreading().run(new GuardianNotAccepted(this, guardian), Emulator.getConfig().getInt("guardians.accept.timer") * 1000);
|
Emulator.getThreading().run(new GuardianNotAccepted(this, guardian), Emulator.getConfig().getInt("guardians.accept.timer") * 1000L);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -29,6 +29,11 @@ public class GuardianVote implements Comparable<GuardianVote> {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int hashCode() {
|
||||||
|
return this.id;
|
||||||
|
}
|
||||||
|
|
||||||
public void ignore() {
|
public void ignore() {
|
||||||
this.ignore = true;
|
this.ignore = true;
|
||||||
}
|
}
|
||||||
|
@ -72,6 +72,10 @@ public class GuildMember implements Comparable<GuildMember> {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int hashCode() {
|
||||||
|
return this.userId;
|
||||||
|
}
|
||||||
|
|
||||||
public GuildMembershipStatus getMembershipStatus() {
|
public GuildMembershipStatus getMembershipStatus() {
|
||||||
if (this.rank == GuildRank.DELETED) return GuildMembershipStatus.NOT_MEMBER;
|
if (this.rank == GuildRank.DELETED) return GuildMembershipStatus.NOT_MEMBER;
|
||||||
|
@ -71,7 +71,7 @@ public class InteractionPetToy extends InteractionDefault {
|
|||||||
pet.getRoomUnit().clearStatus();
|
pet.getRoomUnit().clearStatus();
|
||||||
new PetClearPosture(pet, RoomUnitStatus.PLAY, null, true).run();
|
new PetClearPosture(pet, RoomUnitStatus.PLAY, null, true).run();
|
||||||
pet.packetUpdate = true;
|
pet.packetUpdate = true;
|
||||||
}, 2500 + (Emulator.getRandom().nextInt(20) * 500));
|
}, ((long)(Emulator.getRandom().nextInt(20) * 500) + 2500));
|
||||||
this.setExtradata("1");
|
this.setExtradata("1");
|
||||||
room.updateItemState(this);
|
room.updateItemState(this);
|
||||||
}
|
}
|
||||||
|
@ -56,7 +56,7 @@ public class WiredEffectBotTeleport extends InteractionWiredEffect {
|
|||||||
|
|
||||||
roomUnit.getRoom().unIdle(roomUnit.getRoom().getHabbo(roomUnit));
|
roomUnit.getRoom().unIdle(roomUnit.getRoom().getHabbo(roomUnit));
|
||||||
room.sendComposer(new AvatarEffectMessageComposer(roomUnit, 4).compose());
|
room.sendComposer(new AvatarEffectMessageComposer(roomUnit, 4).compose());
|
||||||
Emulator.getThreading().run(new SendRoomUnitEffectComposer(room, roomUnit), WiredHandler.TELEPORT_DELAY + 1000);
|
Emulator.getThreading().run(new SendRoomUnitEffectComposer(room, roomUnit), (long) WiredHandler.TELEPORT_DELAY + 1000);
|
||||||
|
|
||||||
if (tile == roomUnit.getCurrentLocation()) {
|
if (tile == roomUnit.getCurrentLocation()) {
|
||||||
return;
|
return;
|
||||||
@ -218,14 +218,14 @@ public class WiredEffectBotTeleport extends InteractionWiredEffect {
|
|||||||
String[] wiredDataSplit = set.getString("wired_data").split("\t");
|
String[] wiredDataSplit = set.getString("wired_data").split("\t");
|
||||||
|
|
||||||
if (wiredDataSplit.length >= 2) {
|
if (wiredDataSplit.length >= 2) {
|
||||||
this.setDelay(Integer.valueOf(wiredDataSplit[0]));
|
this.setDelay(Integer.parseInt(wiredDataSplit[0]));
|
||||||
String[] data = wiredDataSplit[1].split(";");
|
String[] data = wiredDataSplit[1].split(";");
|
||||||
|
|
||||||
if (data.length > 1) {
|
if (data.length > 1) {
|
||||||
this.botName = data[0];
|
this.botName = data[0];
|
||||||
|
|
||||||
for (int i = 1; i < data.length; i++) {
|
for (int i = 1; i < data.length; i++) {
|
||||||
HabboItem item = room.getHabboItem(Integer.valueOf(data[i]));
|
HabboItem item = room.getHabboItem(Integer.parseInt(data[i]));
|
||||||
|
|
||||||
if (item != null)
|
if (item != null)
|
||||||
this.items.add(item);
|
this.items.add(item);
|
||||||
|
@ -57,7 +57,7 @@ public class WiredEffectTeleport extends InteractionWiredEffect {
|
|||||||
|
|
||||||
roomUnit.getRoom().unIdle(roomUnit.getRoom().getHabbo(roomUnit));
|
roomUnit.getRoom().unIdle(roomUnit.getRoom().getHabbo(roomUnit));
|
||||||
room.sendComposer(new AvatarEffectMessageComposer(roomUnit, 4).compose());
|
room.sendComposer(new AvatarEffectMessageComposer(roomUnit, 4).compose());
|
||||||
Emulator.getThreading().run(new SendRoomUnitEffectComposer(room, roomUnit), WiredHandler.TELEPORT_DELAY + 1000);
|
Emulator.getThreading().run(new SendRoomUnitEffectComposer(room, roomUnit), (long) WiredHandler.TELEPORT_DELAY + 1000);
|
||||||
|
|
||||||
if (tile == roomUnit.getCurrentLocation()) {
|
if (tile == roomUnit.getCurrentLocation()) {
|
||||||
return;
|
return;
|
||||||
@ -111,14 +111,11 @@ public class WiredEffectTeleport extends InteractionWiredEffect {
|
|||||||
message.appendInt(this.getDelay());
|
message.appendInt(this.getDelay());
|
||||||
if (this.requiresTriggeringUser()) {
|
if (this.requiresTriggeringUser()) {
|
||||||
List<Integer> invalidTriggers = new ArrayList<>();
|
List<Integer> invalidTriggers = new ArrayList<>();
|
||||||
room.getRoomSpecialTypes().getTriggers(this.getX(), this.getY()).forEach(new TObjectProcedure<InteractionWiredTrigger>() {
|
room.getRoomSpecialTypes().getTriggers(this.getX(), this.getY()).forEach(object -> {
|
||||||
@Override
|
|
||||||
public boolean execute(InteractionWiredTrigger object) {
|
|
||||||
if (!object.isTriggeredByRoomUnit()) {
|
if (!object.isTriggeredByRoomUnit()) {
|
||||||
invalidTriggers.add(object.getId());
|
invalidTriggers.add(object.getId());
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
|
||||||
});
|
});
|
||||||
message.appendInt(invalidTriggers.size());
|
message.appendInt(invalidTriggers.size());
|
||||||
for (Integer i : invalidTriggers) {
|
for (Integer i : invalidTriggers) {
|
||||||
|
@ -15,6 +15,7 @@ import gnu.trove.map.hash.TIntIntHashMap;
|
|||||||
import gnu.trove.map.hash.TIntObjectHashMap;
|
import gnu.trove.map.hash.TIntObjectHashMap;
|
||||||
import gnu.trove.procedure.TIntObjectProcedure;
|
import gnu.trove.procedure.TIntObjectProcedure;
|
||||||
import gnu.trove.set.hash.THashSet;
|
import gnu.trove.set.hash.THashSet;
|
||||||
|
import org.apache.commons.lang3.EnumUtils;
|
||||||
import org.apache.commons.math3.distribution.NormalDistribution;
|
import org.apache.commons.math3.distribution.NormalDistribution;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
@ -142,7 +143,7 @@ public class PetManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static NormalDistribution getNormalDistributionForBreeding(int levelOne, int levelTwo) {
|
public static NormalDistribution getNormalDistributionForBreeding(int levelOne, int levelTwo) {
|
||||||
return getNormalDistributionForBreeding((levelOne + levelTwo) / 2);
|
return getNormalDistributionForBreeding( (levelOne + levelTwo) / 2.0);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static NormalDistribution getNormalDistributionForBreeding(double avgLevel) {
|
public static NormalDistribution getNormalDistributionForBreeding(double avgLevel) {
|
||||||
@ -236,7 +237,7 @@ public class PetManager {
|
|||||||
while (set.next()) {
|
while (set.next()) {
|
||||||
if (set.getInt("pet_id") >= 0) {
|
if (set.getInt("pet_id") >= 0) {
|
||||||
if (this.petData.containsKey(set.getInt("pet_id"))) {
|
if (this.petData.containsKey(set.getInt("pet_id"))) {
|
||||||
PetVocalsType petVocalsType = PetVocalsType.valueOf(set.getString("type").toUpperCase());
|
PetVocalsType petVocalsType = EnumUtils.getEnum(PetVocalsType.class, set.getString("type").toUpperCase());;
|
||||||
|
|
||||||
if (petVocalsType != null) {
|
if (petVocalsType != null) {
|
||||||
this.petData.get(set.getInt("pet_id")).petVocals.get(petVocalsType).add(new PetVocal(set.getString("message")));
|
this.petData.get(set.getInt("pet_id")).petVocals.get(petVocalsType).add(new PetVocal(set.getString("message")));
|
||||||
@ -315,7 +316,7 @@ public class PetManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
int petId = Integer.valueOf(petName.split("t")[1]);
|
int petId = Integer.parseInt(petName.split("t")[1]);
|
||||||
return this.petRaces.get(petId);
|
return this.petRaces.get(petId);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
LOGGER.error("Caught exception", e);
|
LOGGER.error("Caught exception", e);
|
||||||
@ -333,9 +334,7 @@ public class PetManager {
|
|||||||
|
|
||||||
TIntObjectHashMap<ArrayList<PetBreedingReward>> offspringList = this.breedingReward.get(pet.getPetData().getType());
|
TIntObjectHashMap<ArrayList<PetBreedingReward>> offspringList = this.breedingReward.get(pet.getPetData().getType());
|
||||||
|
|
||||||
offspringList.forEachEntry(new TIntObjectProcedure<ArrayList<PetBreedingReward>>() {
|
offspringList.forEachEntry((i, petBreedingRewards) -> {
|
||||||
@Override
|
|
||||||
public boolean execute(int i, ArrayList<PetBreedingReward> petBreedingRewards) {
|
|
||||||
for (PetBreedingReward reward : petBreedingRewards) {
|
for (PetBreedingReward reward : petBreedingRewards) {
|
||||||
if (reward.breed == pet.getRace()) {
|
if (reward.breed == pet.getRace()) {
|
||||||
rarityLevel[0] = i;
|
rarityLevel[0] = i;
|
||||||
@ -344,7 +343,6 @@ public class PetManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
return 4 - rarityLevel[0];
|
return 4 - rarityLevel[0];
|
||||||
@ -399,17 +397,17 @@ public class PetManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public Pet createPet(Item item, String name, String race, String color, GameClient client) {
|
public Pet createPet(Item item, String name, String race, String color, GameClient client) {
|
||||||
int type = Integer.valueOf(item.getName().toLowerCase().replace("a0 pet", ""));
|
int type = Integer.parseInt(item.getName().toLowerCase().replace("a0 pet", ""));
|
||||||
|
|
||||||
if (this.petData.containsKey(type)) {
|
if (this.petData.containsKey(type)) {
|
||||||
Pet pet;
|
Pet pet;
|
||||||
if (type == 15)
|
if (type == 15)
|
||||||
pet = new HorsePet(type, Integer.valueOf(race), color, name, client.getHabbo().getHabboInfo().getId());
|
pet = new HorsePet(type, Integer.parseInt(race), color, name, client.getHabbo().getHabboInfo().getId());
|
||||||
else if (type == 16)
|
else if (type == 16)
|
||||||
pet = this.createMonsterplant(null, client.getHabbo(), false, null, 0);
|
pet = this.createMonsterplant(null, client.getHabbo(), false, null, 0);
|
||||||
else
|
else
|
||||||
pet = new Pet(type,
|
pet = new Pet(type,
|
||||||
Integer.valueOf(race),
|
Integer.parseInt(race),
|
||||||
color,
|
color,
|
||||||
name,
|
name,
|
||||||
client.getHabbo().getHabboInfo().getId()
|
client.getHabbo().getHabboInfo().getId()
|
||||||
|
@ -952,7 +952,7 @@ public class RoomManager {
|
|||||||
habbo.getRoomUnit().isKicked = false;
|
habbo.getRoomUnit().isKicked = false;
|
||||||
|
|
||||||
if (room.getOwnerId() != habbo.getHabboInfo().getId()) {
|
if (room.getOwnerId() != habbo.getHabboInfo().getId()) {
|
||||||
AchievementManager.progressAchievement(room.getOwnerId(), Emulator.getGameEnvironment().getAchievementManager().getAchievement("RoomDecoHosting"), (int) Math.floor((Emulator.getIntUnixTimestamp() - habbo.getHabboStats().roomEnterTimestamp) / 60000));
|
AchievementManager.progressAchievement(room.getOwnerId(), Emulator.getGameEnvironment().getAchievementManager().getAchievement("RoomDecoHosting"), (int) Math.floor((Emulator.getIntUnixTimestamp() - habbo.getHabboStats().roomEnterTimestamp) / 60000.0));
|
||||||
}
|
}
|
||||||
|
|
||||||
habbo.getMessenger().connectionChanged(habbo, habbo.isOnline(), false);
|
habbo.getMessenger().connectionChanged(habbo, habbo.isOnline(), false);
|
||||||
@ -1220,7 +1220,7 @@ public class RoomManager {
|
|||||||
public ArrayList<Room> getRoomsVisited(Habbo habbo, boolean includeSelf, int limit) {
|
public ArrayList<Room> getRoomsVisited(Habbo habbo, boolean includeSelf, int limit) {
|
||||||
ArrayList<Room> rooms = new ArrayList<>();
|
ArrayList<Room> rooms = new ArrayList<>();
|
||||||
|
|
||||||
try (Connection connection = Emulator.getDatabase().getDataSource().getConnection(); PreparedStatement statement = connection.prepareStatement("SELECT rooms.* FROM room_enter_log INNER JOIN rooms ON room_enter_log.room_id = rooms.id WHERE user_id = ? AND timestamp >= ? AND rooms.owner_id != ? GROUP BY rooms.id ORDER BY timestamp DESC LIMIT " + limit)) {
|
try (Connection connection = Emulator.getDatabase().getDataSource().getConnection(); PreparedStatement statement = connection.prepareStatement("SELECT rooms.* FROM room_enter_log INNER JOIN rooms ON room_enter_log.room_id = rooms.id WHERE user_id = ? AND timestamp >= ? AND rooms.owner_id != ? GROUP BY rooms.id AND timestamp ORDER BY timestamp DESC LIMIT " + limit)) {
|
||||||
statement.setInt(1, habbo.getHabboInfo().getId());
|
statement.setInt(1, habbo.getHabboInfo().getId());
|
||||||
statement.setInt(2, Emulator.getIntUnixTimestamp() - 259200);
|
statement.setInt(2, Emulator.getIntUnixTimestamp() - 259200);
|
||||||
statement.setInt(3, (includeSelf ? 0 : habbo.getHabboInfo().getId()));
|
statement.setInt(3, (includeSelf ? 0 : habbo.getHabboInfo().getId()));
|
||||||
|
@ -115,8 +115,8 @@ public class RoomTile {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public double distance(RoomTile roomTile) {
|
public double distance(RoomTile roomTile) {
|
||||||
double x = this.x - roomTile.x;
|
double x = (double) this.x - roomTile.x;
|
||||||
double y = this.y - roomTile.y;
|
double y = (double) this.y - roomTile.y;
|
||||||
return Math.sqrt(x * x + y * y);
|
return Math.sqrt(x * x + y * y);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -186,7 +186,7 @@ public class RoomTile {
|
|||||||
|
|
||||||
public List<RoomUnit> getUnits() {
|
public List<RoomUnit> getUnits() {
|
||||||
synchronized (this.units) {
|
synchronized (this.units) {
|
||||||
return new ArrayList<RoomUnit>(this.units);
|
return new ArrayList<>(this.units);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@ public class WiredHandler {
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
long millis = System.currentTimeMillis();
|
long millis = System.currentTimeMillis();
|
||||||
THashSet<InteractionWiredEffect> effectsToExecute = new THashSet<InteractionWiredEffect>();
|
THashSet<InteractionWiredEffect> effectsToExecute = new THashSet<>();
|
||||||
|
|
||||||
List<RoomTile> triggeredTiles = new ArrayList<>();
|
List<RoomTile> triggeredTiles = new ArrayList<>();
|
||||||
for (InteractionWiredTrigger trigger : triggers) {
|
for (InteractionWiredTrigger trigger : triggers) {
|
||||||
@ -81,7 +81,7 @@ public class WiredHandler {
|
|||||||
if (triggeredTiles.contains(tile))
|
if (triggeredTiles.contains(tile))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
THashSet<InteractionWiredEffect> tEffectsToExecute = new THashSet<InteractionWiredEffect>();
|
THashSet<InteractionWiredEffect> tEffectsToExecute = new THashSet<>();
|
||||||
|
|
||||||
if (handle(trigger, roomUnit, room, stuff, tEffectsToExecute)) {
|
if (handle(trigger, roomUnit, room, stuff, tEffectsToExecute)) {
|
||||||
effectsToExecute.addAll(tEffectsToExecute);
|
effectsToExecute.addAll(tEffectsToExecute);
|
||||||
@ -244,7 +244,7 @@ public class WiredHandler {
|
|||||||
|
|
||||||
effect.activateBox(room, roomUnit, millis);
|
effect.activateBox(room, roomUnit, millis);
|
||||||
}
|
}
|
||||||
}, effect.getDelay() * 500);
|
}, effect.getDelay() * 500L);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -327,23 +327,23 @@ public class WiredHandler {
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (rewardReceived.type.equalsIgnoreCase("credits")) {
|
if (rewardReceived.type.equalsIgnoreCase("credits")) {
|
||||||
int credits = Integer.valueOf(rewardReceived.value);
|
int credits = Integer.parseInt(rewardReceived.value);
|
||||||
habbo.giveCredits(credits);
|
habbo.giveCredits(credits);
|
||||||
} else if (rewardReceived.type.equalsIgnoreCase("pixels")) {
|
} else if (rewardReceived.type.equalsIgnoreCase("pixels")) {
|
||||||
int pixels = Integer.valueOf(rewardReceived.value);
|
int pixels = Integer.parseInt(rewardReceived.value);
|
||||||
habbo.givePixels(pixels);
|
habbo.givePixels(pixels);
|
||||||
} else if (rewardReceived.type.startsWith("points")) {
|
} else if (rewardReceived.type.startsWith("points")) {
|
||||||
int points = Integer.valueOf(rewardReceived.value);
|
int points = Integer.parseInt(rewardReceived.value);
|
||||||
int type = 5;
|
int type = 5;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
type = Integer.valueOf(rewardReceived.type.replace("points", ""));
|
type = Integer.parseInt(rewardReceived.type.replace("points", ""));
|
||||||
} catch (Exception e) {
|
} catch (Exception ignored) {
|
||||||
}
|
}
|
||||||
|
|
||||||
habbo.givePoints(type, points);
|
habbo.givePoints(type, points);
|
||||||
} else if (rewardReceived.type.equalsIgnoreCase("furni")) {
|
} else if (rewardReceived.type.equalsIgnoreCase("furni")) {
|
||||||
Item baseItem = Emulator.getGameEnvironment().getItemManager().getItem(Integer.valueOf(rewardReceived.value));
|
Item baseItem = Emulator.getGameEnvironment().getItemManager().getItem(Integer.parseInt(rewardReceived.value));
|
||||||
if (baseItem != null) {
|
if (baseItem != null) {
|
||||||
HabboItem item = Emulator.getGameEnvironment().getItemManager().createItem(habbo.getHabboInfo().getId(), baseItem, 0, 0, "");
|
HabboItem item = Emulator.getGameEnvironment().getItemManager().createItem(habbo.getHabboInfo().getId(), baseItem, 0, 0, "");
|
||||||
|
|
||||||
@ -356,9 +356,9 @@ public class WiredHandler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (rewardReceived.type.equalsIgnoreCase("respect")) {
|
} else if (rewardReceived.type.equalsIgnoreCase("respect")) {
|
||||||
habbo.getHabboStats().respectPointsReceived += Integer.valueOf(rewardReceived.value);
|
habbo.getHabboStats().respectPointsReceived += Integer.parseInt(rewardReceived.value);
|
||||||
} else if (rewardReceived.type.equalsIgnoreCase("cata")) {
|
} else if (rewardReceived.type.equalsIgnoreCase("cata")) {
|
||||||
CatalogItem item = Emulator.getGameEnvironment().getCatalogManager().getCatalogItem(Integer.valueOf(rewardReceived.value));
|
CatalogItem item = Emulator.getGameEnvironment().getCatalogManager().getCatalogItem(Integer.parseInt(rewardReceived.value));
|
||||||
|
|
||||||
if (item != null) {
|
if (item != null) {
|
||||||
Emulator.getGameEnvironment().getCatalogManager().purchaseItem(null, item, habbo, 1, "", true);
|
Emulator.getGameEnvironment().getCatalogManager().purchaseItem(null, item, habbo, 1, "", true);
|
||||||
|
@ -41,11 +41,7 @@ public class ModAlertEvent extends MessageHandler {
|
|||||||
|
|
||||||
ModToolSanctionItem item = modToolSanctionItems.get(modToolSanctionItems.size() - 1);
|
ModToolSanctionItem item = modToolSanctionItems.get(modToolSanctionItems.size() - 1);
|
||||||
if (item == null) return;
|
if (item == null) return;
|
||||||
if (item.probationTimestamp > 0 && item.probationTimestamp >= Emulator.getIntUnixTimestamp()) {
|
|
||||||
modToolSanctions.run(userId, this.client.getHabbo(), item.sanctionLevel, cfhTopic, message, 0, false, 0);
|
modToolSanctions.run(userId, this.client.getHabbo(), item.sanctionLevel, cfhTopic, message, 0, false, 0);
|
||||||
} else {
|
|
||||||
modToolSanctions.run(userId, this.client.getHabbo(), item.sanctionLevel, cfhTopic, message, 0, false, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -66,12 +66,8 @@ public class ModBanEvent extends MessageHandler {
|
|||||||
|
|
||||||
ModToolSanctionItem item = modToolSanctionItems.get(modToolSanctionItems.size() - 1);
|
ModToolSanctionItem item = modToolSanctionItems.get(modToolSanctionItems.size() - 1);
|
||||||
if (item == null) return;
|
if (item == null) return;
|
||||||
|
modToolSanctions.run(userId, this.client.getHabbo(), item.sanctionLevel, cfhTopic, message, 0, false, 0);
|
||||||
|
|
||||||
if (item.probationTimestamp >= Emulator.getIntUnixTimestamp()) {
|
|
||||||
modToolSanctions.run(userId, this.client.getHabbo(), item.sanctionLevel, cfhTopic, message, 0, false, 0);
|
|
||||||
} else {
|
|
||||||
modToolSanctions.run(userId, this.client.getHabbo(), item.sanctionLevel, cfhTopic, message, 0, false, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -31,12 +31,8 @@ public class ModTradingLockEvent extends MessageHandler {
|
|||||||
|
|
||||||
if (modToolSanctionItems != null && !modToolSanctionItems.isEmpty()) {
|
if (modToolSanctionItems != null && !modToolSanctionItems.isEmpty()) {
|
||||||
ModToolSanctionItem item = modToolSanctionItems.get(modToolSanctionItems.size() - 1);
|
ModToolSanctionItem item = modToolSanctionItems.get(modToolSanctionItems.size() - 1);
|
||||||
|
modToolSanctions.run(userId, this.client.getHabbo(), item.sanctionLevel, cfhTopic, message, duration, false, 0);
|
||||||
|
|
||||||
if (item.probationTimestamp > 0 && item.probationTimestamp >= Emulator.getIntUnixTimestamp()) {
|
|
||||||
modToolSanctions.run(userId, this.client.getHabbo(), item.sanctionLevel, cfhTopic, message, duration, false, 0);
|
|
||||||
} else {
|
|
||||||
modToolSanctions.run(userId, this.client.getHabbo(), item.sanctionLevel, cfhTopic, message, duration, false, 0);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
modToolSanctions.run(userId, this.client.getHabbo(), 0, cfhTopic, message, duration, false, 0);
|
modToolSanctions.run(userId, this.client.getHabbo(), 0, cfhTopic, message, duration, false, 0);
|
||||||
}
|
}
|
||||||
|
@ -34,7 +34,7 @@ public class SetCustomStackingHeightEvent extends MessageHandler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
stackerHeight = Math.min(Math.max(stackerHeight, (long) itemTile.z * 100), Room.MAXIMUM_FURNI_HEIGHT * 100);
|
stackerHeight = Math.min(Math.max(stackerHeight, itemTile.z * 100.0), Room.MAXIMUM_FURNI_HEIGHT * 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
double height = 0;
|
double height = 0;
|
||||||
|
@ -69,6 +69,7 @@ public abstract class Server {
|
|||||||
this.bossGroup.shutdownGracefully(0, 0, TimeUnit.MILLISECONDS).sync();
|
this.bossGroup.shutdownGracefully(0, 0, TimeUnit.MILLISECONDS).sync();
|
||||||
} catch(InterruptedException e) {
|
} catch(InterruptedException e) {
|
||||||
LOGGER.error("Exception during {} shutdown... HARD STOP", this.name, e);
|
LOGGER.error("Exception during {} shutdown... HARD STOP", this.name, e);
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
}
|
}
|
||||||
LOGGER.info("GameServer Stopped!");
|
LOGGER.info("GameServer Stopped!");
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@ public class CameraClient {
|
|||||||
this.bootstrap.option(ChannelOption.SO_KEEPALIVE, false);
|
this.bootstrap.option(ChannelOption.SO_KEEPALIVE, false);
|
||||||
this.bootstrap.handler(new ChannelInitializer<SocketChannel>() {
|
this.bootstrap.handler(new ChannelInitializer<SocketChannel>() {
|
||||||
@Override
|
@Override
|
||||||
public void initChannel(SocketChannel ch) throws Exception {
|
public void initChannel(SocketChannel ch) {
|
||||||
ch.pipeline().addLast(new CameraDecoder());
|
ch.pipeline().addLast(new CameraDecoder());
|
||||||
ch.pipeline().addLast(new CameraHandler());
|
ch.pipeline().addLast(new CameraHandler());
|
||||||
}
|
}
|
||||||
@ -44,10 +44,6 @@ public class CameraClient {
|
|||||||
|
|
||||||
public void connect() {
|
public void connect() {
|
||||||
CameraClient.channelFuture = this.bootstrap.connect(host, port);
|
CameraClient.channelFuture = this.bootstrap.connect(host, port);
|
||||||
|
|
||||||
while (!CameraClient.channelFuture.isDone()) {
|
|
||||||
}
|
|
||||||
|
|
||||||
if (CameraClient.channelFuture.isSuccess()) {
|
if (CameraClient.channelFuture.isSuccess()) {
|
||||||
CameraClient.attemptReconnect = false;
|
CameraClient.attemptReconnect = false;
|
||||||
CameraClient.channel = channelFuture.channel();
|
CameraClient.channel = channelFuture.channel();
|
||||||
@ -68,7 +64,8 @@ public class CameraClient {
|
|||||||
channelFuture.channel().close().sync();
|
channelFuture.channel().close().sync();
|
||||||
channelFuture = null;
|
channelFuture = null;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
LOGGER.error("Caught Exception: ", e);
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ public class AchievementUpdater implements Runnable {
|
|||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
if (!Emulator.isShuttingDown) {
|
if (!Emulator.isShuttingDown) {
|
||||||
Emulator.getThreading().run(this, INTERVAL * 1000);
|
Emulator.getThreading().run(this, INTERVAL * 1000L);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Emulator.isReady) {
|
if (Emulator.isReady) {
|
||||||
@ -27,7 +27,7 @@ public class AchievementUpdater implements Runnable {
|
|||||||
if (habbo.getHabboInfo().getLastOnline() > this.lastExecutionTimestamp) {
|
if (habbo.getHabboInfo().getLastOnline() > this.lastExecutionTimestamp) {
|
||||||
timeOnlineSinceLastInterval = timestamp - habbo.getHabboInfo().getLastOnline();
|
timeOnlineSinceLastInterval = timestamp - habbo.getHabboInfo().getLastOnline();
|
||||||
}
|
}
|
||||||
AchievementManager.progressAchievement(habbo, onlineTime, (int) Math.floor((timeOnlineSinceLastInterval) / 60));
|
AchievementManager.progressAchievement(habbo, onlineTime, (int) Math.floor((timeOnlineSinceLastInterval) / 60.0));
|
||||||
}
|
}
|
||||||
|
|
||||||
this.lastExecutionTimestamp = timestamp;
|
this.lastExecutionTimestamp = timestamp;
|
||||||
|
@ -38,7 +38,7 @@ public class RoomUnitTeleportWalkToAction implements Runnable {
|
|||||||
} else {
|
} else {
|
||||||
if (tile.isWalkable()) {
|
if (tile.isWalkable()) {
|
||||||
this.habbo.getRoomUnit().setGoalLocation(tile);
|
this.habbo.getRoomUnit().setGoalLocation(tile);
|
||||||
Emulator.getThreading().run(this, this.habbo.getRoomUnit().getPath().size() + 2 * 510);
|
Emulator.getThreading().run(this, (long) this.habbo.getRoomUnit().getPath().size() + 2 * 510);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -37,7 +37,7 @@ public class RoomUnitVendingMachineAction implements Runnable {
|
|||||||
} else {
|
} else {
|
||||||
if (this.room.getLayout().getTile(tile.x, tile.y).isWalkable()) {
|
if (this.room.getLayout().getTile(tile.x, tile.y).isWalkable()) {
|
||||||
this.habbo.getRoomUnit().setGoalLocation(tile);
|
this.habbo.getRoomUnit().setGoalLocation(tile);
|
||||||
Emulator.getThreading().run(this, this.habbo.getRoomUnit().getPath().size() + 2 * 510);
|
Emulator.getThreading().run(this, (long) this.habbo.getRoomUnit().getPath().size() + 2 * 510);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -75,7 +75,7 @@ public class YouAreAPirate implements Runnable {
|
|||||||
public final Room room;
|
public final Room room;
|
||||||
|
|
||||||
private int index = 0;
|
private int index = 0;
|
||||||
private int oldEffect;
|
private final int oldEffect;
|
||||||
|
|
||||||
public YouAreAPirate(Habbo habbo, Room room) {
|
public YouAreAPirate(Habbo habbo, Room room) {
|
||||||
this.habbo = habbo;
|
this.habbo = habbo;
|
||||||
@ -97,7 +97,7 @@ public class YouAreAPirate implements Runnable {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Emulator.getThreading().run(this, iamapirate[this.index - 1].length() * 100);
|
Emulator.getThreading().run(this, iamapirate[this.index - 1].length() * 100L);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -28,6 +28,6 @@ public class YoutubeAdvanceVideo implements Runnable {
|
|||||||
room.updateItem(this.tv);
|
room.updateItem(this.tv);
|
||||||
room.sendComposer(new YoutubeDisplayVideoMessageComposer(tv.getId(), tv.currentVideo, true, 0).compose());
|
room.sendComposer(new YoutubeDisplayVideoMessageComposer(tv.getId(), tv.currentVideo, true, 0).compose());
|
||||||
|
|
||||||
tv.autoAdvance = Emulator.getThreading().run(new YoutubeAdvanceVideo(this.tv), tv.currentVideo.getDuration() * 1000);
|
tv.autoAdvance = Emulator.getThreading().run(new YoutubeAdvanceVideo(this.tv), tv.currentVideo.getDuration() * 1000L);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -90,7 +90,7 @@ class TeleportActionTwo implements Runnable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Emulator.getThreading().run(new HabboItemNewState(this.currentTeleport, this.room, "2"), delayOffset);
|
Emulator.getThreading().run(new HabboItemNewState(this.currentTeleport, this.room, "2"), delayOffset);
|
||||||
Emulator.getThreading().run(new HabboItemNewState(this.currentTeleport, this.room, "0"), delayOffset + 1000);
|
Emulator.getThreading().run(new HabboItemNewState(this.currentTeleport, this.room, "0"), delayOffset + 1000L);
|
||||||
Emulator.getThreading().run(new TeleportActionThree(this.currentTeleport, this.room, this.client), delayOffset);
|
Emulator.getThreading().run(new TeleportActionThree(this.currentTeleport, this.room, this.client), delayOffset);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user