Addition of AttendancePopupStart configuration.
This commit is contained in:
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -153,6 +153,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean PLAYER_DELEVEL;
|
public static boolean PLAYER_DELEVEL;
|
||||||
public static int DELEVEL_MINIMUM;
|
public static int DELEVEL_MINIMUM;
|
||||||
@@ -1557,6 +1558,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -665,6 +665,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -153,6 +153,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean PLAYER_DELEVEL;
|
public static boolean PLAYER_DELEVEL;
|
||||||
public static int DELEVEL_MINIMUM;
|
public static int DELEVEL_MINIMUM;
|
||||||
@@ -1570,6 +1571,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -665,6 +665,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -153,6 +153,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean PLAYER_DELEVEL;
|
public static boolean PLAYER_DELEVEL;
|
||||||
public static int DELEVEL_MINIMUM;
|
public static int DELEVEL_MINIMUM;
|
||||||
@@ -1557,6 +1558,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -665,6 +665,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -154,6 +154,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean BALTHUS_KNIGHTS_ENABLED;
|
public static boolean BALTHUS_KNIGHTS_ENABLED;
|
||||||
public static int BALTHUS_KNIGHTS_LEVEL;
|
public static int BALTHUS_KNIGHTS_LEVEL;
|
||||||
@@ -1540,6 +1541,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -663,6 +663,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -154,6 +154,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean BALTHUS_KNIGHTS_ENABLED;
|
public static boolean BALTHUS_KNIGHTS_ENABLED;
|
||||||
public static int BALTHUS_KNIGHTS_LEVEL;
|
public static int BALTHUS_KNIGHTS_LEVEL;
|
||||||
@@ -1547,6 +1548,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -663,6 +663,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -154,6 +154,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean BALTHUS_KNIGHTS_ENABLED;
|
public static boolean BALTHUS_KNIGHTS_ENABLED;
|
||||||
public static int BALTHUS_KNIGHTS_LEVEL;
|
public static int BALTHUS_KNIGHTS_LEVEL;
|
||||||
@@ -1569,6 +1570,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -663,6 +663,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -155,6 +155,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean BALTHUS_KNIGHTS_ENABLED;
|
public static boolean BALTHUS_KNIGHTS_ENABLED;
|
||||||
public static int BALTHUS_KNIGHTS_LEVEL;
|
public static int BALTHUS_KNIGHTS_LEVEL;
|
||||||
@@ -1580,6 +1581,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -669,6 +669,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -155,6 +155,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean BALTHUS_KNIGHTS_ENABLED;
|
public static boolean BALTHUS_KNIGHTS_ENABLED;
|
||||||
public static int BALTHUS_KNIGHTS_LEVEL;
|
public static int BALTHUS_KNIGHTS_LEVEL;
|
||||||
@@ -1577,6 +1578,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -677,6 +677,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -154,6 +154,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean PLAYER_DELEVEL;
|
public static boolean PLAYER_DELEVEL;
|
||||||
public static int DELEVEL_MINIMUM;
|
public static int DELEVEL_MINIMUM;
|
||||||
@@ -1488,6 +1489,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -648,6 +648,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -154,6 +154,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean PLAYER_DELEVEL;
|
public static boolean PLAYER_DELEVEL;
|
||||||
public static int DELEVEL_MINIMUM;
|
public static int DELEVEL_MINIMUM;
|
||||||
@@ -1492,6 +1493,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -648,6 +648,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -154,6 +154,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean PLAYER_DELEVEL;
|
public static boolean PLAYER_DELEVEL;
|
||||||
public static int DELEVEL_MINIMUM;
|
public static int DELEVEL_MINIMUM;
|
||||||
@@ -1492,6 +1493,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -650,6 +650,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -154,6 +154,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean PLAYER_DELEVEL;
|
public static boolean PLAYER_DELEVEL;
|
||||||
public static int DELEVEL_MINIMUM;
|
public static int DELEVEL_MINIMUM;
|
||||||
@@ -1492,6 +1493,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -650,6 +650,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -154,6 +154,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean PLAYER_DELEVEL;
|
public static boolean PLAYER_DELEVEL;
|
||||||
public static int DELEVEL_MINIMUM;
|
public static int DELEVEL_MINIMUM;
|
||||||
@@ -1497,6 +1498,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -650,6 +650,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -155,6 +155,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean PLAYER_DELEVEL;
|
public static boolean PLAYER_DELEVEL;
|
||||||
public static int DELEVEL_MINIMUM;
|
public static int DELEVEL_MINIMUM;
|
||||||
@@ -1505,6 +1506,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -654,6 +654,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -155,6 +155,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean PLAYER_DELEVEL;
|
public static boolean PLAYER_DELEVEL;
|
||||||
public static int DELEVEL_MINIMUM;
|
public static int DELEVEL_MINIMUM;
|
||||||
@@ -1506,6 +1507,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -648,6 +648,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
+4
@@ -21,6 +21,10 @@ AttendanceRewardsShareAccount = False
|
|||||||
# Retail: 30
|
# Retail: 30
|
||||||
AttendanceRewardDelay = 30
|
AttendanceRewardDelay = 30
|
||||||
|
|
||||||
|
# Popup the reward window when player enters the game.
|
||||||
|
# Default: True
|
||||||
|
AttendancePopupStart = True
|
||||||
|
|
||||||
# Popup the reward window if reward is available 30 minutes after login.
|
# Popup the reward window if reward is available 30 minutes after login.
|
||||||
# Default: False
|
# Default: False
|
||||||
AttendancePopupWindow = False
|
AttendancePopupWindow = False
|
||||||
|
|||||||
@@ -155,6 +155,7 @@ public class Config
|
|||||||
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
public static boolean PREMIUM_ONLY_ATTENDANCE_REWARDS;
|
||||||
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
public static boolean ATTENDANCE_REWARDS_SHARE_ACCOUNT;
|
||||||
public static int ATTENDANCE_REWARD_DELAY;
|
public static int ATTENDANCE_REWARD_DELAY;
|
||||||
|
public static boolean ATTENDANCE_POPUP_START;
|
||||||
public static boolean ATTENDANCE_POPUP_WINDOW;
|
public static boolean ATTENDANCE_POPUP_WINDOW;
|
||||||
public static boolean PLAYER_DELEVEL;
|
public static boolean PLAYER_DELEVEL;
|
||||||
public static int DELEVEL_MINIMUM;
|
public static int DELEVEL_MINIMUM;
|
||||||
@@ -1505,6 +1506,7 @@ public class Config
|
|||||||
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
PREMIUM_ONLY_ATTENDANCE_REWARDS = Attandance.getBoolean("PremiumOnlyAttendanceRewards", false);
|
||||||
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
ATTENDANCE_REWARDS_SHARE_ACCOUNT = Attandance.getBoolean("AttendanceRewardsShareAccount", false);
|
||||||
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
ATTENDANCE_REWARD_DELAY = Attandance.getInt("AttendanceRewardDelay", 30);
|
||||||
|
ATTENDANCE_POPUP_START = Attandance.getBoolean("AttendancePopupStart", true);
|
||||||
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
ATTENDANCE_POPUP_WINDOW = Attandance.getBoolean("AttendancePopupWindow", false);
|
||||||
|
|
||||||
// Load AttributeSystem config file (if exists)
|
// Load AttributeSystem config file (if exists)
|
||||||
|
|||||||
+5
@@ -674,6 +674,11 @@ public class EnterWorld implements IClientIncomingPacket
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
}, Config.ATTENDANCE_REWARD_DELAY * 60 * 1000);
|
||||||
|
|
||||||
|
if (Config.ATTENDANCE_POPUP_START)
|
||||||
|
{
|
||||||
|
player.sendPacket(new ExVipAttendanceItemList(player));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config.HARDWARE_INFO_ENABLED)
|
if (Config.HARDWARE_INFO_ENABLED)
|
||||||
|
|||||||
Reference in New Issue
Block a user