Jump to content

Trance

Global Moderator
  • Posts

    3,924
  • Joined

  • Last visited

  • Days Won

    70
  • Feedback

    0%

Everything posted by Trance

  1. <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>
  2. Ioane, editeaza avatarul punei cv intre picioare.
  3. Np. warning... message, if server can't load this file, u can see it in gameserver.
  4. 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) {
  5. http://www.maxcheaters.com/forum/index.php?topic=186933.0
  6. 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
  7. 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.
  8. nici nu`mi mai vine sa potez pe forum, misa acrit...
  9. Take it: http://www.maxcheaters.com/forum/index.php?topic=81843.0
  10. You already have here guides for this, use search ;d.
  11. : )) eh si u.
  12. ale draq pariuri a ? ;d
  13. hello guys ;d
  14. voi / u. : ))
  15. ce fac fetele >.< ?
  16. Dai foc ! bft
  17. bft am plecat la liceu o ora in vizita.
×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..