diff --git a/src/main/java/com/eu/habbo/habbohotel/users/Habbo.java b/src/main/java/com/eu/habbo/habbohotel/users/Habbo.java index 019b5abe..29278f25 100644 --- a/src/main/java/com/eu/habbo/habbohotel/users/Habbo.java +++ b/src/main/java/com/eu/habbo/habbohotel/users/Habbo.java @@ -468,9 +468,23 @@ public class Habbo implements Runnable public int noobStatus() { + /* if (this.firstVisit) + { + return 2; + } + int accountAge = Emulator.getIntUnixTimestamp() - this.habboInfo.getAccountCreated(); + if (accountAge < (86400)) + { */ + return 1; + /* } + + if (accountAge < (3 * 86400)) + { return 1; + } + return 0; */ } public void clearCaches() @@ -514,4 +528,4 @@ public class Habbo implements Runnable this.client.getHabbo().getHabboInfo().getCurrentRoom().unIdle(this.client.getHabbo()); } } -} +} \ No newline at end of file