Initial commit.

This commit is contained in:
MobiusDevelopment 2021-03-03 22:27:36 +00:00
parent 96290a5bcd
commit 8f25f784c5
8 changed files with 84 additions and 20 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>L2J_Mobius_8.0_Homunculus</name>
<name>L2J_Mobius_9.0_ReturnOfTheQueenAnt</name>
<comment></comment>
<projects>
</projects>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xml>
<project name="L2J_Mobius_8.0_Homunculus" default="cleanup" basedir=".">
<project name="L2J_Mobius_9.0_ReturnOfTheQueenAnt" default="cleanup" basedir=".">
<description>
This file is part of the L2J Mobius project.
@ -132,15 +132,15 @@
</target>
<target name="adding-core" depends="jar" description="Adding the compiled jars to the Zip file.">
<zip destfile="${build}/L2J_Mobius_8.0_Homunculus.zip" basedir="${build.dist}" level="9" />
<zip destfile="${build}/L2J_Mobius_9.0_ReturnOfTheQueenAnt.zip" basedir="${build.dist}" level="9" />
</target>
<target name="adding-datapack" depends="adding-core" description="Updating the Zip file with datapack content.">
<zip destfile="${build}/L2J_Mobius_8.0_Homunculus.zip" basedir="${datapack}" excludes="**/*-sources.jar" update="true" level="9" />
<zip destfile="${build}/L2J_Mobius_9.0_ReturnOfTheQueenAnt.zip" basedir="${datapack}" excludes="**/*-sources.jar" update="true" level="9" />
</target>
<target name="adding-readme" depends="adding-datapack" description="Adding readme.txt to the Zip file.">
<zip destfile="${build}/L2J_Mobius_8.0_Homunculus.zip" basedir="." includes="readme.txt" update="true" level="9" />
<zip destfile="${build}/L2J_Mobius_9.0_ReturnOfTheQueenAnt.zip" basedir="." includes="readme.txt" update="true" level="9" />
</target>
<target name="cleanup" depends="adding-readme" description="Cleaning the build folder.">

View File

@ -101,8 +101,8 @@ MaximumOnlineUsers = 2000
# Numbers of protocol revisions that server allows to connect.
# Delimiter is ;
# WARNING: <u><b><font color="red">Changing the protocol revision may result in incompatible communication and many errors in game!</font></b></u>
# Homunculus Ch. 2: 286
AllowedProtocolRevisions = 286
# Return of the Queen Ant: 306
AllowedProtocolRevisions = 306
# Displays server type next to the server name on character selection.
# Notes:

View File

@ -1255,6 +1255,21 @@ public class EffectList
{
flags |= e.getEffectFlags();
}
// Add AbnormalVisualEffect flag.
final Skill skill = info.getSkill();
if (skill.hasAbnormalVisualEffects())
{
for (AbnormalVisualEffect ave : skill.getAbnormalVisualEffects())
{
abnormalVisualEffectFlags.add(ave);
_abnormalVisualEffects.add(ave);
}
if (broadcast)
{
_owner.updateAbnormalVisualEffects();
}
}
}
}

View File

@ -403,6 +403,49 @@ public enum AbnormalVisualEffect
H_B_ORC_HP_AVE(461),
V_ORC_IMMOLATION_BODY_AVE(462),
H_R_ORC_WAR_ROAR_AVE(463),
V_ORC_TOUCH_AVE(465),
H_B_PARTY_UNITEA_AVE(466),
V_ORC_DEBUFF_MASTER_AVE(468),
V_ORC_FLAME_BLAST_A_AVE(469),
V_ORC_FLAME_BLAST_B_AVE(470),
H_B_PARTY_UNITEB_AVE(471),
H_R_BLOOD_LINKA_AVE(472),
H_R_BLOOD_LINKB_AVE(473),
V_ORC_COLD_FLAME_A_AVE(474),
V_ORC_COLD_FLAME_B_AVE(475),
H_B_SPIRITWIND_AVE(477),
H_W_SEACREATURE_AVE(478),
V_EVENT_2020_SUMMER_AVE(479),
H_SY_BOARD_RANKER_DECO(481),
H_SY_BOARDD_DECO(482),
H_SY_BOARDC_DECO(483),
H_SY_BOARDB_DECO(484),
H_SY_BOARDA_DECO(485),
H_G_AFFINITYA_AVE(486),
H_G_AFFINITYB_AVE(487),
V_SY_ELE_GUARD_AVE(488),
H_SY_ELEMENTAL_STORM_AVE(489),
V_SY_ELE_TRANSITION_AVE(490),
H_SY_ELEMENTAL_RECOVERY_AVE(491),
H_SY_FREEZING_AVE(492),
V_SY_BURST_TIME_AVE(493),
S_MASS_SALVATION_BUFF_AVE(496),
H_B_EXPEL_AVE(497),
S_BANISH_DEBUFF_AVE(498),
H_B_PROTECTION_SHIELD_AVE(499),
H_R_PROTECTION_SHIELD_AVE(500),
H_B_PROTECTION_MANA_AVE(501),
H_Y_ROLLING_DICEA_AVE(502),
H_Y_ROLLING_DICEB_AVE(503),
H_Y_ROLLING_DICEC_AVE(504),
H_R_METEOR_AVE(505),
H_SY_ELEMENTAL_ROAR_AVE(507),
WH_HEAL_AVE(508),
H_SY_ELEMENTAL_DUST_AVE(509),
S_MENTOR_AVE(510),
RANKER_DECO_SYLPH(511),
H_SY_ELEMENTAL_MARK_AVE(513),
Z_ICE_SCREEN_F(514),
DRAGON_ULTIMATE(700),
CHANGE_HALLOWEEN(1000),
BR_Y_1_ACCESSORY_R_RING(10001),
@ -556,7 +599,10 @@ public enum AbnormalVisualEffect
S_TRANS_DECO_47(10159),
BR_TRANS_LV2_DECO_47(10160),
BR_TRANS_LV3_DECO_47(10161),
JDK_BODY_FIRE_2(10162);
JDK_BODY_FIRE_2(10162),
S_TRANS_DECO(10168),
BR_TRANS_LV2_DECO(10169),
BR_TRANS_LV3_DECO(10170);
private final int _clientId;

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
<listEntry value="/L2J_Mobius_8.0_Homunculus/java/org/l2jmobius/gameserver/GameServer.java"/>
<listEntry value="/L2J_Mobius_9.0_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/GameServer.java"/>
</listAttribute>
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
<listEntry value="1"/>
@ -12,7 +12,7 @@
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_CLASSPATH_ONLY_JAR" value="false"/>
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_START_ON_FIRST_THREAD" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.l2jmobius.gameserver.GameServer"/>
<stringAttribute key="org.eclipse.jdt.launching.MODULE_NAME" value="L2J_Mobius_8.0_Homunculus"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="L2J_Mobius_8.0_Homunculus"/>
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:L2J_Mobius_8.0_Homunculus}/dist/game/"/>
<stringAttribute key="org.eclipse.jdt.launching.MODULE_NAME" value="L2J_Mobius_9.0_ReturnOfTheQueenAnt"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="L2J_Mobius_9.0_ReturnOfTheQueenAnt"/>
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:L2J_Mobius_9.0_ReturnOfTheQueenAnt}/dist/game/"/>
</launchConfiguration>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
<listEntry value="/L2J_Mobius_8.0_Homunculus/java/org/l2jmobius/loginserver/LoginServer.java"/>
<listEntry value="/L2J_Mobius_9.0_ReturnOfTheQueenAnt/java/org/l2jmobius/loginserver/LoginServer.java"/>
</listAttribute>
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
<listEntry value="1"/>
@ -13,7 +13,7 @@
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_CLASSPATH_ONLY_JAR" value="false"/>
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_START_ON_FIRST_THREAD" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.l2jmobius.loginserver.LoginServer"/>
<stringAttribute key="org.eclipse.jdt.launching.MODULE_NAME" value="L2J_Mobius_8.0_Homunculus"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="L2J_Mobius_8.0_Homunculus"/>
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:L2J_Mobius_8.0_Homunculus}/dist/login/"/>
<stringAttribute key="org.eclipse.jdt.launching.MODULE_NAME" value="L2J_Mobius_9.0_ReturnOfTheQueenAnt"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="L2J_Mobius_9.0_ReturnOfTheQueenAnt"/>
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:L2J_Mobius_9.0_ReturnOfTheQueenAnt}/dist/login/"/>
</launchConfiguration>

View File

@ -1,10 +1,10 @@
L2J-Mobius Homunculus
Client: https://drive.google.com/u/0/uc?id=1Xlk2uzmxveJtrvaWXmZ6wBVFjd6E-ws7&export=download
System: https://mega.nz/file/xl1njaTY#BdVHadGs9bTDyrDE3QgBGvAqkmqSqPtn8hLpcCil1Fs
L2J-Mobius Return of the Queen Ant
Client:
System:
JDK: http://www.mediafire.com/file/cgh3zupv80qdwv4/bellsoft-jdk15.0.2%252B10-windows-amd64.msi
Eclipse: http://www.mediafire.com/file/h0gmazpv9hm6gjp/eclipse-java-2020-12-R-win32-x86_64.zip
Geodata: http://www.mediafire.com/file/muw8zo6v7cl7ujt/L2J_Mobius_8.0_Homunculus_Geodata.zip
Geodata:
Working features...
@ -115,6 +115,9 @@ Homunculus: https://eu.4game.com/patchnotes/lineage2/206/
Homunculus Ch. 2: https://eu.4game.com/patchnotes/lineage2/270/
-New augment system
Return of the Queen Ant: https://eu.4game.com/patchnotes/lineage2/293/
-Login support
Events:
-Birth of Draco
-Character Birthday