-
Posts
408 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by i˚Ozõ
-
[Share]L2 Base Translated Configs
i˚Ozõ replied to Loren's topic in Server Development Discussion [L2J]
very old rev without protections ..:/ and you can make config translation with google translator loled + is la2base not l2base -
Web Online: 2 not on gameserver
-
dokimase afto! : Index: other.properties ================================================ # These controls the chance to get a glow effect in the augmentation process # Note: # No/Mid Grade Life Stone can not have glow effect # if you do not get a skill or Base Stat Modifier # On Retail you can not get glow effect with NoGrade LS # Retail: 0, 40, 70, 100 AugmentationNGGlowChance = 0 AugmentationMidGlowChance = 40 AugmentationHighGlowChance = 70 AugmentationTopGlowChance = 100 + +# Classes balance +# Note: +# Weapons type: DAGGER; BOW; BLUNT; DUALFIST; DUAL; SWORD; POLE +# Class: Too long... +# Damage: Current damage emperor to 2 +# ClassID 90 = Phoenix Knight +ClassID = 90 +WeaponType = DAGGER +Damage = 1.5 Index: net.sf.l2j.Config.java ================================================ public static int AUGMENTATION_TOP_SKILL_CHANCE; public static int AUGMENTATION_TOP_GLOW_CHANCE; public static int AUGMENTATION_BASESTAT_CHANCE; + public static int ALT_CLASSID; + public static float ALT_DAMAGE; + + public static boolean ALT_DAGGER; + public static boolean ALT_BOW; + public static boolean ALT_BLUNT; + public static boolean ALT_DUALFIST; + public static boolean ALT_DUAL; + public static boolean ALT_SWORD; + public static boolean ALT_POLE; @@ AUGMENTATION_TOP_SKILL_CHANCE = Integer.parseInt(otherSettings.getProperty("AugmentationTopSkillChance", "60")); AUGMENTATION_TOP_GLOW_CHANCE = Integer.parseInt(otherSettings.getProperty("AugmentationTopGlowChance", "100")); AUGMENTATION_BASESTAT_CHANCE = Integer.parseInt(otherSettings.getProperty("AugmentationBaseStatChance", "1")); + + ALT_CLASSID = Integer.parseInt(otherSettings.getProperty("ClassID", "90")); + ALT_DAMAGE = Float.parseFloat(otherSettings.getProperty("Damage", "1.5")); + ALT_DAGGER = otherSettings.getProperty("WeaponType", "DAGGER").equalsIgnoreCase("DAGGER"); + ALT_BOW = otherSettings.getProperty("WeaponType", "DAGGER").equalsIgnoreCase("BOW"); + ALT_BLUNT = otherSettings.getProperty("WeaponType", "DAGGER").equalsIgnoreCase("BLUNT"); + ALT_DUALFIST = otherSettings.getProperty("WeaponType", "DAGGER").equalsIgnoreCase("DUALFIST"); + ALT_DUAL = otherSettings.getProperty("WeaponType", "DAGGER").equalsIgnoreCase("DUAL"); + ALT_SWORD = otherSettings.getProperty("WeaponType", "DAGGER").equalsIgnoreCase("SWORD"); + ALT_POLE = otherSettings.getProperty("WeaponType", "DAGGER").equalsIgnoreCase("POLE"); @@ else if (pName.equalsIgnoreCase("GlobalChat")) DEFAULT_GLOBAL_CHAT = pValue; else if (pName.equalsIgnoreCase("TradeChat")) DEFAULT_TRADE_CHAT = pValue; else if (pName.equalsIgnoreCase("AutoannouncementsDelay")) AUTOANNOUNCEMENT_DELAY = Integer.parseInt(pValue); else if (pName.equalsIgnoreCase("MenuStyle")) GM_ADMIN_MENU_STYLE = pValue; + else if (pName.equalsIgnoreCase("WeaponType")) + { + ALT_DAGGER = pValue.equalsIgnoreCase("DAGGER"); + ALT_BOW = pValue.equalsIgnoreCase("BOW"); + ALT_BLUNT = pValue.equalsIgnoreCase("BLUNT"); + ALT_DUALFIST = pValue.equalsIgnoreCase("DUALFIST"); + ALT_DUAL = pValue.equalsIgnoreCase("DUAL"); + ALT_SWORD = pValue.equalsIgnoreCase("SWORD"); + ALT_POLE = pValue.equalsIgnoreCase("POLE"); + } Index: net.sf.l2j.gameserver.skills.Formulas.java ================================================ // Dmg bonusses in PvP fight if((attacker instanceof L2PcInstance || attacker instanceof L2Summon) && (target instanceof L2PcInstance || target instanceof L2Summon)) { if(skill == null) damage *= attacker.calcStat(Stats.PVP_PHYSICAL_DMG, 1, null, null); else damage *= attacker.calcStat(Stats.PVP_PHYS_SKILL_DMG, 1, null, null); } + if (attacker instanceof L2PcInstance) + { + L2PcInstance pcInst = (L2PcInstance)attacker; + if (pcInst.getClassId().getId() == Config.ALT_CLASSID) + { + if (Config.ALT_DAGGER) + { + L2Weapon wpn = pcInst.getActiveWeaponItem(); + if (wpn != null && wpn.getItemType() == L2WeaponType.DAGGER) + damage /= (int) (damage / Config.ALT_DAMAGE); + }else if (Config.ALT_BOW) + { + L2Weapon wpn = pcInst.getActiveWeaponItem(); + if (wpn != null && wpn.getItemType() == L2WeaponType.BOW) + damage /= (int) (damage / Config.ALT_DAMAGE); + }else if (Config.ALT_BLUNT) + { + L2Weapon wpn = pcInst.getActiveWeaponItem(); + if (wpn != null && wpn.getItemType() == L2WeaponType.BLUNT) + damage /= (int) (damage / Config.ALT_DAMAGE); + }else if (Config.ALT_DUALFIST) + { + L2Weapon wpn = pcInst.getActiveWeaponItem(); + if (wpn != null && wpn.getItemType() == L2WeaponType.DUALFIST) + damage /= (int) (damage / Config.ALT_DAMAGE); + }else if (Config.ALT_DUAL) + { + L2Weapon wpn = pcInst.getActiveWeaponItem(); + if (wpn != null && wpn.getItemType() == L2WeaponType.DUAL) + damage /= (int) (damage / Config.ALT_DAMAGE); + }else if (Config.ALT_SWORD) + { + L2Weapon wpn = pcInst.getActiveWeaponItem(); + if (wpn != null && wpn.getItemType() == L2WeaponType.SWORD) + damage /= (int) (damage / Config.ALT_DAMAGE); + }else if (Config.ALT_POLE) + { + L2Weapon wpn = pcInst.getActiveWeaponItem(); + if (wpn != null && wpn.getItemType() == L2WeaponType.POLE) + damage /= (int) (damage / Config.ALT_DAMAGE); + } + } + } Index: Classes ================================================ -- HUMANS -- 0=Human Fighter | 1=Human Warrior | 2=Gladiator | 3=Warlord | 4=Human Knight -- 5=Paladin | 6=Dark Avenger | 7=Rogue | 8=Treasure Hunter | 9=Hawkeye -- 10=Human Mage | 11=Human Wizard | 12=Sorcerer/ss | 13=Necromancer | 14=Warlock -- 15=Cleric | 16=Bishop | 17=Prophet -- ELVES -- 18=Elven Fighter | 19=Elven Knight | 20=Temple Knight | 21=Swordsinger | 22=Elven Scout -- 23=Plainswalker | 24=Silver Ranger | 25=Elven Mage | 26=Elven Wizard | 27=Spellsinger -- 28=Elemental Summoner | 29=Elven Oracle | 30=Elven Elder -- DARK ELVES -- 31=Dark Elven Fighter | 32=Palus Knight | 33=Shillien Knight | 34=Bladedancer | 35=Assassin -- 36=Abyss Walker | 37=Phantom Ranger | 38=Dark Elven Mage | 39=Dark Wizard | 40=Spellhowler -- 41=Phantom Summoner | 42=Shillien Oracle | 43=Shillien Elder -- ORCS -- 44=Orc Fighter | 45=Orc Raider | 46=Destroyer | 47=Monk | 48=Tyrant -- 49=Orc Mage | 50=Orc Shaman | 51=Overlord | 52=Warcryer -- DWARVES -- 53=Dwarven Fighter | 54=Scavenger | 55=Bounty Hunter | 56=Artisan | 57=Warsmith -- HUMANS 3rd Professions -- 88=Duelist | 89=Dreadnought | 90=Phoenix Knight | 91=Hell Knight | 92=Sagittarius -- 93=Adventurer | 94=Archmage | 95=Soultaker | 96=Arcana Lord | 97=Cardinal -- 98=Hierophant -- ELVES 3rd Professions -- 99=Evas Templar | 100=Sword Muse | 101=Wind Rider | 102=Moonlight Sentinel -- 103=Mystic Muse | 104=Elemental Master | 105=Evas Saint -- DARK ELVES 3rd Professions -- 106=Shillien Templar | 107=Spectral Dancer | 108=Ghost Hunter | 109=Ghost Sentinel -- 110=Storm Screamer | 111=Spectral Master | 112=Shillien Saint -- ORCS 3rd Professions -- 113=Titan | 114=Grand Khavatari -- 115=Dominator | 116=Doomcryer -- DWARVES 3rd Professions -- 117=Fortune Seeker | 118=Maestro
-
[Share][+PSD] Vote/Enter - New
i˚Ozõ replied to Lelouch's topic in Website Templates & Themes (Free)
wow bro thnx . im gonna use this on my domain. thnx again -
WTS [Wts]The Best Interlude Pack[Updated]
i˚Ozõ replied to i˚Ozõ's topic in Marketplace [L2Packs & Files]
yes ofcourse. source code too -
gomenes - pornes
-
WTS [Wts]The Best Interlude Pack[Updated]
i˚Ozõ replied to i˚Ozõ's topic in Marketplace [L2Packs & Files]
bump -
bump means bring up my post. thats not your post
-
yes but very useful share and one of the best shares on the section
-
[Share]L2J Donation Manager [Finished Project]
i˚Ozõ replied to Stealth's topic in Server Development Discussion [L2J]
i have the same question! same error . i send him pm sry for bring up that topic because its old but its really useful ! -
[Help] Major Heal and Major Group Heal
i˚Ozõ replied to glyook's question in Request Server Development Help [L2J]
just delete it! edit: now i saw it addytzu answer you before me. anyway soz -
[Project] L2JEqual Interlude
i˚Ozõ replied to JustVirus's topic in Server Development Discussion [L2J]
yes is the old l2jequal . how do i know? because the old developer is on the team too and if you download sources you will see that they are the same -
relax is still alive?
-
l2donate.com here is your answer
-
re file ti na s pw dominator / titan / paladin /"""""doomcryer?""""" dominator k doomcryer to idio pragma omg ti na pw. adi gia doomcryer kane prophet kai des diafora
-
sry next time i will use the correct page to post it. anyway in my opinion the dekarma was unfair
-
WTS [Wts]The Best Interlude Pack[Updated]
i˚Ozõ replied to i˚Ozõ's topic in Marketplace [L2Packs & Files]
bring it up -
Best AntiHack Protection for Interlude Servers
i˚Ozõ replied to CorLeoNe's topic in Marketplace [L2Packs & Files]
i log with l2phx using only the .ini on my own system :) so the bypass is too easy bro . and if you mean that the protections against l2j attackrers the fixes are only 2-3 lines . -
http://www.maxcheaters.com/forum/index.php?topic=21356.0 look this topic. its good to bump useful topics. and if i mention that capaji is member for 2-3 weeks now and have only 18 post's. i think he is spammer . also he is sharing useful sources . please fix his karma.
-
[Project] L2JEqual Interlude
i˚Ozõ replied to JustVirus's topic in Server Development Discussion [L2J]
the team of l2equal are members in mxc forum? -
useless for me . anyway thnx for sharing it!
-
motion - thetiki energia