Trance
Global Moderator-
Posts
3,924 -
Joined
-
Last visited
-
Days Won
70 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Trance
-
agree.
-
sal. ;d
-
[Request]Skill Status Augment Ritual
Trance replied to Stive's question in Request Server Development Help [L2J]
<skill id="3213" levels="10" name="Item Skill: Ritual"> <table name="#chance">1 1 2 2 3 3 4 4 5 5</table> <table name="#triggeredLevel">1 2 3 4 5 6 7 8 9 10</table> <set name="triggeredId" val="5152"/> <set name="triggeredLevel" val="#triggeredLevel"/> <set name="target" val="TARGET_SELF"/> <set name="skillType" val="BUFF"/> <set name="operateType" val="OP_CHANCE"/> <set name="chanceType" val="ON_ATTACKED"/> <set name="activationChance" val="#chance"/> <set name="castRange" val="-1"/> <set name="effectRange" val="-1"/> </skill> -
Ioane, editeaza avatarul punei cv intre picioare.
-
[Help] Help Witch Config + java
Trance replied to [Geo]Sky's question in Request Server Development Help [L2J]
Np. warning... message, if server can't load this file, u can see it in gameserver. -
[Help] Help Witch Config + java
Trance replied to [Geo]Sky's question in Request Server Development Help [L2J]
Index: Trance-Core/java/net/sf/l2j/Config.java =================================================================== --- Trance-Core/java/net/sf/l2j/Config.java (revision 11) +++ Trance-Core/java/net/sf/l2j/Config.java (working copy) @@ -44,6 +44,7 @@ public static final String PHYSICS_CONFIG_FILE = "./config/General/Balance.ini"; public static final String DEVELOPER_CONFIG_FILE = "./config/Protection/Developer.ini"; public static final String TRANCE_CONFIG_FILE = "./config/Custom/TRANCECustom.ini"; + public static final String BY_SKY_CONFIG_FILE = "./config/Custom/BySky.ini"; public static final String TRANCEMODS_CONFIG_FILE = "./config/Custom/TRANCEMods.ini"; public static final String BUFF_FILE = "./config/Custom/Buffs.ini"; public static final String INTERNAL_FILE = "./config/Network/Networks.ini"; @@ -1026,6 +1027,11 @@ public static boolean ALT_DEV_NO_QUESTS; public static boolean ALT_DEV_NO_SPAWNS; public static boolean ALT_DEV7; + + public static float ALT_DAGGER_DMG_VS_HEAVY; + public static float ALT_DAGGER_DMG_VS_ROBE; + public static float ALT_DAGGER_DMG_VS_LIGHT; @@ -1750,6 +1756,23 @@ e.printStackTrace(); throw new Error("Failed to Load "+TRANCE_CONFIG_FILE+" File."); } + _log.info("Loading " +BY_SKY_CONFIG_FILE); + try + { + Properties BySkySettings = new Properties(); + InputStream is = new FileInputStream(new File(BY_SKY_CONFIG_FILE)); + BySkySettings.load(is); + is.close(); + ALT_DAGGER_DMG_VS_HEAVY = Float.parseFloat(BySkySettings.getProperty("DaggerVSHeavy", "2.50")); + ALT_DAGGER_DMG_VS_ROBE = Float.parseFloat(BySkySettings.getProperty("DaggerVSRobe", "1.80")); + ALT_DAGGER_DMG_VS_LIGHT = Float.parseFloat(BySkySettings.getProperty("DaggerVSLight", "2.00")); + } + catch (Exception e) + { + e.printStackTrace(); + throw new Error("Failed to Load "+BY_SKY_CONFIG_FILE+" File."); + } _log.info("Loading " +TRANCEMODS_CONFIG_FILE); try { Index: Trance-Core/java/config/Custom/BySky.ini =================================================================== --- Trance-Core/java/config/Custom/BySky.ini (revision 0) +++ Trance-Core/java/config/Custom/BySky.ini (revision 0) @@ -0,0 +1,18 @@ +#---------------------------------------------------------------------# +# BySky # +#---------------------------------------------------------------------# + +# Alternative damage for dagger skills. +DaggerVSHeavy = 2.50 +DaggerVSRobe = 1.80 +DaggerVSLight = 2.00 + +#---------------------------- End Of List ----------------------------# Index: java/net/sf/l2j/gameserver/skills/Formulas.java =================================================================== @@ -1231,4 +1231,20 @@ } + + if (target instanceof L2PcInstance && weapon != null && weapon.getItemType() == L2WeaponType.DAGGER && skill != null) + { + L2Armor armor = ((L2PcInstance) target).getActiveChestArmorItem(); + if (armor != null) + { + if (((L2PcInstance) target).isWearingHeavyArmor()) + damage /= Config.ALT_DAGGER_DMG_VS_HEAVY; + if (((L2PcInstance) target).isWearingLightArmor()) + damage /= Config.ALT_DAGGER_DMG_VS_LIGHT; + if (((L2PcInstance) target).isWearingMagicArmor()) + damage /= Config.ALT_DAGGER_DMG_VS_ROBE; + } + } + + if (attacker instanceof L2NpcInstance) { -
http://www.maxcheaters.com/forum/index.php?topic=186933.0
-
[Help] Help Witch Config + java
Trance replied to [Geo]Sky's question in Request Server Development Help [L2J]
1s. You know insult members and then u need help ? 2nd. You want BySky.ini but created by another member ? You're pathetic. Do it.. something like that: Index: Trance-Core/java/net/sf/l2j/Config.java =================================================================== --- Trance-Core/java/net/sf/l2j/Config.java (revision 11) +++ Trance-Core/java/net/sf/l2j/Config.java (working copy) @@ -44,6 +44,7 @@ public static final String PHYSICS_CONFIG_FILE = "./config/General/Balance.ini"; public static final String DEVELOPER_CONFIG_FILE = "./config/Protection/Developer.ini"; public static final String TRANCE_CONFIG_FILE = "./config/Custom/TRANCECustom.ini"; + public static final String BY_SKY_CONFIG_FILE = "./config/Custom/BySky.ini"; public static final String TRANCEMODS_CONFIG_FILE = "./config/Custom/TRANCEMods.ini"; public static final String BUFF_FILE = "./config/Custom/Buffs.ini"; public static final String INTERNAL_FILE = "./config/Network/Networks.ini"; @@ -1026,6 +1027,11 @@ public static boolean ALT_DEV_NO_QUESTS; public static boolean ALT_DEV_NO_SPAWNS; public static boolean ALT_DEV7; + + public static boolean SKY_IS_PATHETIC; @@ -1750,6 +1756,23 @@ e.printStackTrace(); throw new Error("Failed to Load "+TRANCE_CONFIG_FILE+" File."); } + _log.info("Loading " +BY_SKY_CONFIG_FILE); + try + { + Properties BySkySettings = new Properties(); + InputStream is = new FileInputStream(new File(BY_SKY_CONFIG_FILE)); + BySkySettings.load(is); + is.close(); + SKY_IS_PATHETIC = Boolean.parseBoolean(BySkySettings.getProperty("SkyIsPathetic", "True")); + } + catch (Exception e) + { + e.printStackTrace(); + throw new Error("Failed to Load "+BY_SKY_CONFIG_FILE+" File."); + } _log.info("Loading " +TRANCEMODS_CONFIG_FILE); try { Index: Trance-Core/java/config/Custom/BySky.ini =================================================================== --- Trance-Core/java/config/Custom/BySky.ini (revision 0) +++ Trance-Core/java/config/Custom/BySky.ini (revision 0) @@ -0,0 +1,18 @@ +#---------------------------------------------------------------------# +# BySky - Trance Team # +#---------------------------------------------------------------------# + +# What do you think ? +SkyIsPathetic = True + +#---------------------------- End Of List ----------------------------# \ No newline at end of file -
-
All web's already exist shared. Last: http://l2support.lt/web-reikmenys/html/page/11/ I can find all, but I do not have too much free time. Anyway it's fwcking pathetic.
-
a
-
nici nu`mi mai vine sa potez pe forum, misa acrit...
-
[Guide]How to add your own custom item
Trance replied to TheMentaL's topic in Client Development Discussion
-
[Share]Berphes (Vesper) Armor for interlude
Trance replied to kali's topic in Client Development Discussion
-
.
-
Take it: http://www.maxcheaters.com/forum/index.php?topic=81843.0
-
[Help] How make a Server online?
Trance replied to CraZy*™*'s question in Request Server Development Help [L2J]
You already have here guides for this, use search ;d. -
: )) eh si u.
-
ale draq pariuri a ? ;d
-
hello guys ;d
-
voi / u. : ))
-
ce fac fetele >.< ?
-
Dai foc ! bft
-
bft am plecat la liceu o ora in vizita.
-
yy
