Removed GoDVideoIntro configuration.
This commit is contained in:
parent
6d1027cf2e
commit
7bb8587bec
@ -745,9 +745,6 @@ ForbiddenNames = annou,ammou,amnou,anmou,anou,amou
|
||||
# The exclude list is cleared each time the character goes into silence mode.
|
||||
SilenceModeExclude = False
|
||||
|
||||
# Show Goddess of Destruction video introduction for newly created character
|
||||
# Default: True
|
||||
GoDVideoIntro = True
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Ability Settings:
|
||||
|
@ -298,7 +298,6 @@ public final class Config
|
||||
public static boolean STORE_UI_SETTINGS;
|
||||
public static String[] FORBIDDEN_NAMES;
|
||||
public static boolean SILENCE_MODE_EXCLUDE;
|
||||
public static boolean SHOW_GOD_VIDEO_INTRO;
|
||||
|
||||
// --------------------------------------------------
|
||||
// Castle Settings
|
||||
@ -1724,7 +1723,6 @@ public final class Config
|
||||
STORE_UI_SETTINGS = Character.getBoolean("StoreCharUiSettings", true);
|
||||
FORBIDDEN_NAMES = Character.getString("ForbiddenNames", "").split(",");
|
||||
SILENCE_MODE_EXCLUDE = Character.getBoolean("SilenceModeExclude", false);
|
||||
SHOW_GOD_VIDEO_INTRO = Character.getBoolean("GoDVideoIntro", true);
|
||||
PLAYER_MOVEMENT_BLOCK_TIME = Character.getInt("NpcTalkBlockingTime", 0) * 1000;
|
||||
ABILITY_MAX_POINTS = Character.getInt("AbilityMaxPoints", 16);
|
||||
ABILITY_POINTS_RESET_ADENA = Character.getLong("AbilityPointsResetAdena", 10_000_000);
|
||||
|
@ -330,10 +330,6 @@ public final class CharacterCreate implements IClientIncomingPacket
|
||||
EventDispatcher.getInstance().notifyEvent(new OnPlayerCreate(newChar, newChar.getObjectId(), newChar.getName(), client), Containers.Players());
|
||||
|
||||
newChar.setOnlineStatus(true, false);
|
||||
if (Config.SHOW_GOD_VIDEO_INTRO)
|
||||
{
|
||||
newChar.getVariables().set("intro_god_video", true);
|
||||
}
|
||||
Disconnection.of(client, newChar).storeMe().deleteMe();
|
||||
|
||||
final CharSelectionInfo cl = new CharSelectionInfo(client.getAccountName(), client.getSessionId().playOkID1);
|
||||
|
@ -28,7 +28,6 @@ import org.l2jmobius.gameserver.data.xml.impl.BeautyShopData;
|
||||
import org.l2jmobius.gameserver.data.xml.impl.ClanHallData;
|
||||
import org.l2jmobius.gameserver.data.xml.impl.SkillTreesData;
|
||||
import org.l2jmobius.gameserver.enums.ChatType;
|
||||
import org.l2jmobius.gameserver.enums.Race;
|
||||
import org.l2jmobius.gameserver.enums.SubclassInfoType;
|
||||
import org.l2jmobius.gameserver.instancemanager.CastleManager;
|
||||
import org.l2jmobius.gameserver.instancemanager.CursedWeaponsManager;
|
||||
@ -77,7 +76,6 @@ import org.l2jmobius.gameserver.network.serverpackets.ExPledgeWaitingListAlarm;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExQuestItemList;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExRotation;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExShowScreenMessage;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExShowUsm;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExStorageMaxCount;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExSubjobInfo;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExUnReadMailCount;
|
||||
@ -455,19 +453,6 @@ public class EnterWorld implements IClientIncomingPacket
|
||||
// Friend list
|
||||
client.sendPacket(new L2FriendList(player));
|
||||
|
||||
if (Config.SHOW_GOD_VIDEO_INTRO && player.getVariables().getBoolean("intro_god_video", false))
|
||||
{
|
||||
player.getVariables().remove("intro_god_video");
|
||||
if (player.getRace() == Race.ERTHEIA)
|
||||
{
|
||||
player.sendPacket(ExShowUsm.ERTHEIA_INTRO_FOR_ERTHEIA);
|
||||
}
|
||||
else
|
||||
{
|
||||
player.sendPacket(ExShowUsm.ERTHEIA_INTRO_FOR_OTHERS);
|
||||
}
|
||||
}
|
||||
|
||||
SystemMessage sm = new SystemMessage(SystemMessageId.YOUR_FRIEND_S1_JUST_LOGGED_IN);
|
||||
sm.addString(player.getName());
|
||||
for (int id : player.getFriendList())
|
||||
|
@ -745,9 +745,6 @@ ForbiddenNames = annou,ammou,amnou,anmou,anou,amou
|
||||
# The exclude list is cleared each time the character goes into silence mode.
|
||||
SilenceModeExclude = False
|
||||
|
||||
# Show Goddess of Destruction video introduction for newly created character
|
||||
# Default: True
|
||||
GoDVideoIntro = True
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Ability Settings:
|
||||
|
@ -298,7 +298,6 @@ public final class Config
|
||||
public static boolean STORE_UI_SETTINGS;
|
||||
public static String[] FORBIDDEN_NAMES;
|
||||
public static boolean SILENCE_MODE_EXCLUDE;
|
||||
public static boolean SHOW_GOD_VIDEO_INTRO;
|
||||
|
||||
// --------------------------------------------------
|
||||
// Castle Settings
|
||||
@ -1728,7 +1727,6 @@ public final class Config
|
||||
STORE_UI_SETTINGS = Character.getBoolean("StoreCharUiSettings", true);
|
||||
FORBIDDEN_NAMES = Character.getString("ForbiddenNames", "").split(",");
|
||||
SILENCE_MODE_EXCLUDE = Character.getBoolean("SilenceModeExclude", false);
|
||||
SHOW_GOD_VIDEO_INTRO = Character.getBoolean("GoDVideoIntro", true);
|
||||
PLAYER_MOVEMENT_BLOCK_TIME = Character.getInt("NpcTalkBlockingTime", 0) * 1000;
|
||||
ABILITY_MAX_POINTS = Character.getInt("AbilityMaxPoints", 16);
|
||||
ABILITY_POINTS_RESET_ADENA = Character.getLong("AbilityPointsResetAdena", 10_000_000);
|
||||
|
@ -330,10 +330,6 @@ public final class CharacterCreate implements IClientIncomingPacket
|
||||
EventDispatcher.getInstance().notifyEvent(new OnPlayerCreate(newChar, newChar.getObjectId(), newChar.getName(), client), Containers.Players());
|
||||
|
||||
newChar.setOnlineStatus(true, false);
|
||||
if (Config.SHOW_GOD_VIDEO_INTRO)
|
||||
{
|
||||
newChar.getVariables().set("intro_god_video", true);
|
||||
}
|
||||
Disconnection.of(client, newChar).storeMe().deleteMe();
|
||||
|
||||
final CharSelectionInfo cl = new CharSelectionInfo(client.getAccountName(), client.getSessionId().playOkID1);
|
||||
|
@ -28,7 +28,6 @@ import org.l2jmobius.gameserver.data.xml.impl.BeautyShopData;
|
||||
import org.l2jmobius.gameserver.data.xml.impl.ClanHallData;
|
||||
import org.l2jmobius.gameserver.data.xml.impl.SkillTreesData;
|
||||
import org.l2jmobius.gameserver.enums.ChatType;
|
||||
import org.l2jmobius.gameserver.enums.Race;
|
||||
import org.l2jmobius.gameserver.enums.SubclassInfoType;
|
||||
import org.l2jmobius.gameserver.instancemanager.CastleManager;
|
||||
import org.l2jmobius.gameserver.instancemanager.CursedWeaponsManager;
|
||||
@ -77,7 +76,6 @@ import org.l2jmobius.gameserver.network.serverpackets.ExPledgeWaitingListAlarm;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExQuestItemList;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExRotation;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExShowScreenMessage;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExShowUsm;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExStorageMaxCount;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExSubjobInfo;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExUnReadMailCount;
|
||||
@ -455,19 +453,6 @@ public class EnterWorld implements IClientIncomingPacket
|
||||
// Friend list
|
||||
client.sendPacket(new L2FriendList(player));
|
||||
|
||||
if (Config.SHOW_GOD_VIDEO_INTRO && player.getVariables().getBoolean("intro_god_video", false))
|
||||
{
|
||||
player.getVariables().remove("intro_god_video");
|
||||
if (player.getRace() == Race.ERTHEIA)
|
||||
{
|
||||
player.sendPacket(ExShowUsm.ERTHEIA_INTRO_FOR_ERTHEIA);
|
||||
}
|
||||
else
|
||||
{
|
||||
player.sendPacket(ExShowUsm.ERTHEIA_INTRO_FOR_OTHERS);
|
||||
}
|
||||
}
|
||||
|
||||
SystemMessage sm = new SystemMessage(SystemMessageId.YOUR_FRIEND_S1_JUST_LOGGED_IN);
|
||||
sm.addString(player.getName());
|
||||
for (int id : player.getFriendList())
|
||||
|
@ -745,9 +745,6 @@ ForbiddenNames = annou,ammou,amnou,anmou,anou,amou
|
||||
# The exclude list is cleared each time the character goes into silence mode.
|
||||
SilenceModeExclude = False
|
||||
|
||||
# Show Goddess of Destruction video introduction for newly created character
|
||||
# Default: True
|
||||
GoDVideoIntro = True
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Ability Settings:
|
||||
|
@ -298,7 +298,6 @@ public final class Config
|
||||
public static boolean STORE_UI_SETTINGS;
|
||||
public static String[] FORBIDDEN_NAMES;
|
||||
public static boolean SILENCE_MODE_EXCLUDE;
|
||||
public static boolean SHOW_GOD_VIDEO_INTRO;
|
||||
|
||||
// --------------------------------------------------
|
||||
// Castle Settings
|
||||
@ -1728,7 +1727,6 @@ public final class Config
|
||||
STORE_UI_SETTINGS = Character.getBoolean("StoreCharUiSettings", true);
|
||||
FORBIDDEN_NAMES = Character.getString("ForbiddenNames", "").split(",");
|
||||
SILENCE_MODE_EXCLUDE = Character.getBoolean("SilenceModeExclude", false);
|
||||
SHOW_GOD_VIDEO_INTRO = Character.getBoolean("GoDVideoIntro", true);
|
||||
PLAYER_MOVEMENT_BLOCK_TIME = Character.getInt("NpcTalkBlockingTime", 0) * 1000;
|
||||
ABILITY_MAX_POINTS = Character.getInt("AbilityMaxPoints", 16);
|
||||
ABILITY_POINTS_RESET_ADENA = Character.getLong("AbilityPointsResetAdena", 10_000_000);
|
||||
|
@ -330,10 +330,6 @@ public final class CharacterCreate implements IClientIncomingPacket
|
||||
EventDispatcher.getInstance().notifyEvent(new OnPlayerCreate(newChar, newChar.getObjectId(), newChar.getName(), client), Containers.Players());
|
||||
|
||||
newChar.setOnlineStatus(true, false);
|
||||
if (Config.SHOW_GOD_VIDEO_INTRO)
|
||||
{
|
||||
newChar.getVariables().set("intro_god_video", true);
|
||||
}
|
||||
Disconnection.of(client, newChar).storeMe().deleteMe();
|
||||
|
||||
final CharSelectionInfo cl = new CharSelectionInfo(client.getAccountName(), client.getSessionId().playOkID1);
|
||||
|
@ -28,7 +28,6 @@ import org.l2jmobius.gameserver.data.xml.impl.BeautyShopData;
|
||||
import org.l2jmobius.gameserver.data.xml.impl.ClanHallData;
|
||||
import org.l2jmobius.gameserver.data.xml.impl.SkillTreesData;
|
||||
import org.l2jmobius.gameserver.enums.ChatType;
|
||||
import org.l2jmobius.gameserver.enums.Race;
|
||||
import org.l2jmobius.gameserver.enums.SubclassInfoType;
|
||||
import org.l2jmobius.gameserver.instancemanager.CastleManager;
|
||||
import org.l2jmobius.gameserver.instancemanager.CursedWeaponsManager;
|
||||
@ -77,7 +76,6 @@ import org.l2jmobius.gameserver.network.serverpackets.ExPledgeWaitingListAlarm;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExQuestItemList;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExRotation;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExShowScreenMessage;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExShowUsm;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExStorageMaxCount;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExSubjobInfo;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExUnReadMailCount;
|
||||
@ -457,19 +455,6 @@ public class EnterWorld implements IClientIncomingPacket
|
||||
// Friend list
|
||||
client.sendPacket(new L2FriendList(player));
|
||||
|
||||
if (Config.SHOW_GOD_VIDEO_INTRO && player.getVariables().getBoolean("intro_god_video", false))
|
||||
{
|
||||
player.getVariables().remove("intro_god_video");
|
||||
if (player.getRace() == Race.ERTHEIA)
|
||||
{
|
||||
player.sendPacket(ExShowUsm.ERTHEIA_INTRO_FOR_ERTHEIA);
|
||||
}
|
||||
else
|
||||
{
|
||||
player.sendPacket(ExShowUsm.ERTHEIA_INTRO_FOR_OTHERS);
|
||||
}
|
||||
}
|
||||
|
||||
SystemMessage sm = new SystemMessage(SystemMessageId.YOUR_FRIEND_S1_JUST_LOGGED_IN);
|
||||
sm.addString(player.getName());
|
||||
for (int id : player.getFriendList())
|
||||
|
@ -745,9 +745,6 @@ ForbiddenNames = annou,ammou,amnou,anmou,anou,amou
|
||||
# The exclude list is cleared each time the character goes into silence mode.
|
||||
SilenceModeExclude = False
|
||||
|
||||
# Show Goddess of Destruction video introduction for newly created character
|
||||
# Default: True
|
||||
GoDVideoIntro = True
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Ability Settings:
|
||||
|
@ -298,7 +298,6 @@ public final class Config
|
||||
public static boolean STORE_UI_SETTINGS;
|
||||
public static String[] FORBIDDEN_NAMES;
|
||||
public static boolean SILENCE_MODE_EXCLUDE;
|
||||
public static boolean SHOW_GOD_VIDEO_INTRO;
|
||||
|
||||
// --------------------------------------------------
|
||||
// Castle Settings
|
||||
@ -1728,7 +1727,6 @@ public final class Config
|
||||
STORE_UI_SETTINGS = Character.getBoolean("StoreCharUiSettings", true);
|
||||
FORBIDDEN_NAMES = Character.getString("ForbiddenNames", "").split(",");
|
||||
SILENCE_MODE_EXCLUDE = Character.getBoolean("SilenceModeExclude", false);
|
||||
SHOW_GOD_VIDEO_INTRO = Character.getBoolean("GoDVideoIntro", true);
|
||||
PLAYER_MOVEMENT_BLOCK_TIME = Character.getInt("NpcTalkBlockingTime", 0) * 1000;
|
||||
ABILITY_MAX_POINTS = Character.getInt("AbilityMaxPoints", 16);
|
||||
ABILITY_POINTS_RESET_ADENA = Character.getLong("AbilityPointsResetAdena", 10_000_000);
|
||||
|
@ -330,10 +330,6 @@ public final class CharacterCreate implements IClientIncomingPacket
|
||||
EventDispatcher.getInstance().notifyEvent(new OnPlayerCreate(newChar, newChar.getObjectId(), newChar.getName(), client), Containers.Players());
|
||||
|
||||
newChar.setOnlineStatus(true, false);
|
||||
if (Config.SHOW_GOD_VIDEO_INTRO)
|
||||
{
|
||||
newChar.getVariables().set("intro_god_video", true);
|
||||
}
|
||||
Disconnection.of(client, newChar).storeMe().deleteMe();
|
||||
|
||||
final CharSelectionInfo cl = new CharSelectionInfo(client.getAccountName(), client.getSessionId().playOkID1);
|
||||
|
@ -28,7 +28,6 @@ import org.l2jmobius.gameserver.data.xml.impl.BeautyShopData;
|
||||
import org.l2jmobius.gameserver.data.xml.impl.ClanHallData;
|
||||
import org.l2jmobius.gameserver.data.xml.impl.SkillTreesData;
|
||||
import org.l2jmobius.gameserver.enums.ChatType;
|
||||
import org.l2jmobius.gameserver.enums.Race;
|
||||
import org.l2jmobius.gameserver.enums.SubclassInfoType;
|
||||
import org.l2jmobius.gameserver.instancemanager.CastleManager;
|
||||
import org.l2jmobius.gameserver.instancemanager.CursedWeaponsManager;
|
||||
@ -77,7 +76,6 @@ import org.l2jmobius.gameserver.network.serverpackets.ExPledgeWaitingListAlarm;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExQuestItemList;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExRotation;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExShowScreenMessage;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExShowUsm;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExStorageMaxCount;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExSubjobInfo;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExUnReadMailCount;
|
||||
@ -457,19 +455,6 @@ public class EnterWorld implements IClientIncomingPacket
|
||||
// Friend list
|
||||
client.sendPacket(new L2FriendList(player));
|
||||
|
||||
if (Config.SHOW_GOD_VIDEO_INTRO && player.getVariables().getBoolean("intro_god_video", false))
|
||||
{
|
||||
player.getVariables().remove("intro_god_video");
|
||||
if (player.getRace() == Race.ERTHEIA)
|
||||
{
|
||||
player.sendPacket(ExShowUsm.ERTHEIA_INTRO_FOR_ERTHEIA);
|
||||
}
|
||||
else
|
||||
{
|
||||
player.sendPacket(ExShowUsm.ERTHEIA_INTRO_FOR_OTHERS);
|
||||
}
|
||||
}
|
||||
|
||||
SystemMessage sm = new SystemMessage(SystemMessageId.YOUR_FRIEND_S1_JUST_LOGGED_IN);
|
||||
sm.addString(player.getName());
|
||||
for (int id : player.getFriendList())
|
||||
|
@ -745,9 +745,6 @@ ForbiddenNames = annou,ammou,amnou,anmou,anou,amou
|
||||
# The exclude list is cleared each time the character goes into silence mode.
|
||||
SilenceModeExclude = False
|
||||
|
||||
# Show Goddess of Destruction video introduction for newly created character
|
||||
# Default: True
|
||||
GoDVideoIntro = True
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Ability Settings:
|
||||
|
@ -298,7 +298,6 @@ public final class Config
|
||||
public static boolean STORE_UI_SETTINGS;
|
||||
public static String[] FORBIDDEN_NAMES;
|
||||
public static boolean SILENCE_MODE_EXCLUDE;
|
||||
public static boolean SHOW_GOD_VIDEO_INTRO;
|
||||
|
||||
// --------------------------------------------------
|
||||
// Castle Settings
|
||||
@ -1728,7 +1727,6 @@ public final class Config
|
||||
STORE_UI_SETTINGS = Character.getBoolean("StoreCharUiSettings", true);
|
||||
FORBIDDEN_NAMES = Character.getString("ForbiddenNames", "").split(",");
|
||||
SILENCE_MODE_EXCLUDE = Character.getBoolean("SilenceModeExclude", false);
|
||||
SHOW_GOD_VIDEO_INTRO = Character.getBoolean("GoDVideoIntro", true);
|
||||
PLAYER_MOVEMENT_BLOCK_TIME = Character.getInt("NpcTalkBlockingTime", 0) * 1000;
|
||||
ABILITY_MAX_POINTS = Character.getInt("AbilityMaxPoints", 16);
|
||||
ABILITY_POINTS_RESET_ADENA = Character.getLong("AbilityPointsResetAdena", 10_000_000);
|
||||
|
@ -330,10 +330,6 @@ public final class CharacterCreate implements IClientIncomingPacket
|
||||
EventDispatcher.getInstance().notifyEvent(new OnPlayerCreate(newChar, newChar.getObjectId(), newChar.getName(), client), Containers.Players());
|
||||
|
||||
newChar.setOnlineStatus(true, false);
|
||||
if (Config.SHOW_GOD_VIDEO_INTRO)
|
||||
{
|
||||
newChar.getVariables().set("intro_god_video", true);
|
||||
}
|
||||
Disconnection.of(client, newChar).storeMe().deleteMe();
|
||||
|
||||
final CharSelectionInfo cl = new CharSelectionInfo(client.getAccountName(), client.getSessionId().playOkID1);
|
||||
|
@ -28,7 +28,6 @@ import org.l2jmobius.gameserver.data.xml.impl.BeautyShopData;
|
||||
import org.l2jmobius.gameserver.data.xml.impl.ClanHallData;
|
||||
import org.l2jmobius.gameserver.data.xml.impl.SkillTreesData;
|
||||
import org.l2jmobius.gameserver.enums.ChatType;
|
||||
import org.l2jmobius.gameserver.enums.Race;
|
||||
import org.l2jmobius.gameserver.enums.SubclassInfoType;
|
||||
import org.l2jmobius.gameserver.instancemanager.CastleManager;
|
||||
import org.l2jmobius.gameserver.instancemanager.CursedWeaponsManager;
|
||||
@ -77,7 +76,6 @@ import org.l2jmobius.gameserver.network.serverpackets.ExPledgeWaitingListAlarm;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExQuestItemList;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExRotation;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExShowScreenMessage;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExShowUsm;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExStorageMaxCount;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExSubjobInfo;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.ExUnReadMailCount;
|
||||
@ -457,19 +455,6 @@ public class EnterWorld implements IClientIncomingPacket
|
||||
// Friend list
|
||||
client.sendPacket(new L2FriendList(player));
|
||||
|
||||
if (Config.SHOW_GOD_VIDEO_INTRO && player.getVariables().getBoolean("intro_god_video", false))
|
||||
{
|
||||
player.getVariables().remove("intro_god_video");
|
||||
if (player.getRace() == Race.ERTHEIA)
|
||||
{
|
||||
player.sendPacket(ExShowUsm.ERTHEIA_INTRO_FOR_ERTHEIA);
|
||||
}
|
||||
else
|
||||
{
|
||||
player.sendPacket(ExShowUsm.ERTHEIA_INTRO_FOR_OTHERS);
|
||||
}
|
||||
}
|
||||
|
||||
SystemMessage sm = new SystemMessage(SystemMessageId.YOUR_FRIEND_S1_JUST_LOGGED_IN);
|
||||
sm.addString(player.getName());
|
||||
for (int id : player.getFriendList())
|
||||
|
Loading…
Reference in New Issue
Block a user