
achillies
Members-
Posts
22 -
Credits
0 -
Joined
-
Last visited
Never -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by achillies
-
just what i have been looking for,thankyou for the share eve.
-
[Share] New Wyvern Collection [CT2.3]
achillies replied to CriticalError's topic in Client Development Discussion
loving the red wyvern. -
[Share] L2 FileEdit For Gracia Final / Gracia
achillies replied to mweinz's topic in Client Development Discussion
nice share...been looking for a tool for 2.3 that works for a while. -
[Share]L2 Patch Editor [C3-CT2]
achillies replied to CriticalError's topic in Client Development Discussion
nice....been looking for a good tool for ages. -
[Share]Batman Cap [CT2.3]
achillies replied to CriticalError's topic in Client Development Discussion
lmao...very nice work crit...must say im becoming a fan of your work. keep up the good work ;) -
[SHARE] L2Dream V25 Sponsor Version [Gracia Part 2]
achillies replied to Canon's topic in Server Development Discussion [L2J]
nice share...been looking for a pack with most of them fix's in it. -
[Share]Epic Wings [CT2.3]
achillies replied to CriticalError's topic in Client Development Discussion
i have the same problem. -
first i would like to say this is not my work,Credits go to OURO for working this out for me. this is for a custom transformation every time you pic up "Dragon Slayer Evil Spirit-Health" you will "transform into the Demonic Prince" just like when you pick up Zarich and Akmhana. i could not work it out untill i asked then OURO posted it. so i want to share it with you guys also. this is for L2J...might work on other's im not sure. This is the core patch(use eclipse): Index: C:/Documents and Settings/Ouro/Mis documentos/workspace/L2_GameServerPruebas/java/net/sf/l2j/gameserver/model/CursedWeapon.java =================================================================== --- C:/Documents and Settings/Ouro/Mis documentos/workspace/L2_GameServerPruebas/java/net/sf/l2j/gameserver/model/CursedWeapon.java (revision 3222) +++ C:/Documents and Settings/Ouro/Mis documentos/workspace/L2_GameServerPruebas/java/net/sf/l2j/gameserver/model/CursedWeapon.java (working copy) @@ -341,6 +341,10 @@ { transformationId = 301; } + else if(_itemId == 11097) + { + transformationId = 311; + } if (_player.isTransformed()) { Index: C:/Documents and Settings/Ouro/Mis documentos/workspace/L2_GameServerPruebas/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java =================================================================== --- C:/Documents and Settings/Ouro/Mis documentos/workspace/L2_GameServerPruebas/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (revision 3222) +++ C:/Documents and Settings/Ouro/Mis documentos/workspace/L2_GameServerPruebas/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (working copy) @@ -4672,7 +4672,8 @@ _transformationId = getTransformationId(); if (_transformationId == L2Transformation.TRANSFORM_AKAMANAH - || _transformationId == L2Transformation.TRANSFORM_ZARICHE) + || _transformationId == L2Transformation.TRANSFORM_ZARICHE + || _transformationId == L2Transformation.TRANSFORM_CUSTOM) return; Connection con = null; Index: C:/Documents and Settings/Ouro/Mis documentos/workspace/L2_GameServerPruebas/java/net/sf/l2j/gameserver/model/L2Transformation.java =================================================================== --- C:/Documents and Settings/Ouro/Mis documentos/workspace/L2_GameServerPruebas/java/net/sf/l2j/gameserver/model/L2Transformation.java (revision 3222) +++ C:/Documents and Settings/Ouro/Mis documentos/workspace/L2_GameServerPruebas/java/net/sf/l2j/gameserver/model/L2Transformation.java (working copy) @@ -33,6 +33,7 @@ public static final int TRANSFORM_ZARICHE = 301; public static final int TRANSFORM_AKAMANAH = 302; + public static final int TRANSFORM_CUSTOM = 311; private L2PcInstance _player; private long _startTime; and the next 3 files are for datapack: add to gameserver\data\cursedWeapons.xml , remenber change dropRate for test it easy. <item id="11097" skillId="24000" name="Dragon Slayer Evil Spirit-Heatlh"> <dropRate val="1" /> <!-- 100000 for 100% --> <duration val="300" /> <!-- in minutes --> <durationLost val="3" /> <!-- in minutes --> <disapearChance val="50" /> <!-- in % --> <stageKills val="10" /> <!-- Integer --> </item> change all on gameserver\data\scripts\transformations\DemonPrince.java for: package transformations; import net.sf.l2j.gameserver.model.L2Transformation; import net.sf.l2j.gameserver.instancemanager.TransformationManager; /** * This is currently only a test of the java script engine * * @author durgus * */ public class DemonPrince extends L2Transformation { public DemonPrince() { // id, duration (secs), colRadius, colHeight super(311, 1800, 33.0, 49.0); } public void onTransform() { // Set charachter name to transformed name getPlayer().getAppearance().setVisibleName("Demon Prince"); getPlayer().getAppearance().setVisibleTitle(""); } public void onUntransform() { // set character back to true name. getPlayer().getAppearance().setVisibleName(null); getPlayer().getAppearance().setVisibleTitle(null); } public static void main(String[] args) { TransformationManager.getInstance().registerTransformation(new DemonPrince()); } } and add new xml on gameserver\data\stats\skills, called 24000.xml <?xml version="1.0" encoding="UTF-8"?> <list> <skill id="24000" levels="10" name="Dragon Slayer Evil Spirit-Health"> <!-- Below is a copy of 3603 Demon Sword Zariche --> <table name="#maxCp"> 12 13 14 15 17 19 21 23 25 27 </table> <table name="#pAtk"> 3 4.5 6 7.5 9 10.5 11 11.5 12 12.5 </table> <table name="#mAtk"> 3 3.25 3.5 3.75 4 4.25 4.5 5 5.5 5.75 </table> <table name="#pDef"> 2.5 2.6 2.7 2.8 2.9 3 3.25 3.5 3.75 4 </table> <table name="#mDef"> 3 3.1 3.2 3.3 3.4 3.5 3.75 4 4.25 4.5 </table> <table name="#runSpd"> 4 6 8 10 12 14 16 18 19 20 </table> <table name="#accCombat"> 15 20 25 30 35 40 45 50 55 60 </table> <set name="target" val="TARGET_SELF"/> <set name="skillType" val="BUFF"/> <set name="operateType" val="OP_PASSIVE"/> <set name="isMagic" val="true"/> <set name="minPledgeClass" val="2"/> <for> <mul order="0x30" stat="maxCp" val="#maxCp"/> <mul order="0x30" stat="pAtk" val="#pAtk"/> <mul order="0x30" stat="mAtk" val="#mAtk"/> <mul order="0x30" stat="pDef" val="#pDef"/> <mul order="0x30" stat="mDef" val="#mDef"/> <add order="0x40" stat="accCombat" val="#accCombat"/> <add order="0x40" stat="runSpd" val="#runSpd"/> <add order="0x40" stat="absorbDam" val="100"/> <!-- absorb 100% HP from damage inflicted on enemies --> <mul order="0x30" stat="regCp" val="20"/> </for> </skill> </list> i would add some pics but i still have to patch my core(im learning how to patch it.lol). hope this works for all who want it. enjoy and give credits to OURO.
-
[help] itemname-dat and armourgrp.dat encripting problem
achillies replied to achillies's topic in [Request] Client Dev Help
kk...thank you guys i will try this later tonight :) -
[Share]Epic Wings [CT2.3]
achillies replied to CriticalError's topic in Client Development Discussion
afte adding to the armourgrp.dat and itemname.dat i now get a crash report on loading the game= General protection fault! History: FL2GameData::LoadL2DataBin <- FL2GameData::ArmorItemDataLoad <- FL2GameData::Load <- UGameEngine::Init <- InitEngine i made a backup of the originals so im ok. but i was wondering could it be the code i added to the armourgrp and itemname DAT files? -
hi. my server is for gracia final(the latest version of gracia,cant rember the number) i am trying to install some custom wings. the only problem i seem to be getting is with the itemname-dat and armourgrp.dat. i can decrypt them both to a TSV file but a cant re-encrypt them back to DAT file. i am using l2_encdec to decrypt but i cant seem encrypt the files once i have edited them. does anyone have a solution or know of a programme that can help?
-
[Share]Epic Wings [CT2.3]
achillies replied to CriticalError's topic in Client Development Discussion
i found the problem. there seems to be a value missing at the end. the end values end like this = '0-0', '0-0;'); the valuse in the SQL i downloaded only had this = '0-0;'); SQL works :) thankyou for the help. -
[Share]Epic Wings [CT2.3]
achillies replied to CriticalError's topic in Client Development Discussion
very nice. im having a little trouble installing the SQL for them though. im using L2J gracia final server and navicat. i keep getting this message from navicat= [Err] 1136 - Column count doesn't match value count at row 1 [Err] INSERT INTO `armor` VALUES ('40013', 'Valakas Wings', 'face', 'false', 'none', '10', 'wood', 'none', '0', '-1', '-1', '0', '0', '0', '500000', '0', 'true', 'true', 'true', 'true', '0-0;'); [Msg] Finished - Unsuccessfully -------------------------------------------------- does this meen i will have to create a SQL table manualy? -
[Guide]Add your own custom armor set stats.
achillies replied to Sуѕтємƒяєαк's topic in Server Development Discussion [L2J]
oops...sory my bad. i left this out = </skill> problem solved. **EDIT** well sorry nope that was not the solution...still have the same problem :( any know whats wrong? -
[Guide]Add your own custom armor set stats.
achillies replied to Sуѕтємƒяєαк's topic in Server Development Discussion [L2J]
this is a realy good guide. but i seem to have a problem. the gameserver.bat keeps saying= inventory.armoursetlistener: incorrect skill:10001. inventory.armoursetlistener: incorrect skill:10001. inventory.armoursetlistener: incorrect skill:10001. inventory.armoursetlistener: incorrect skill:10002. inventory.armoursetlistener: incorrect skill:10002. inventory.armoursetlistener: incorrect skill:10002. i am using gracia CT2.3 any ideas? -
i am trying to work out how to make a custom demonic weapon with custom transformation. i have so far managed to add the weapon to the list of demonic weapons found here= C;/server/gameserver/data(in here is a XML file called "cursed weapons" it works realy good on the server as a demonic weapon. but the problem is i cant work out how to give it the skill so when you pick up the weapon it transforms you just like zarich and akmana. i want it to give the translfomation of the demonic prince. does anyone know how its done?
-
[Share] = Joker Face = By.kside
achillies replied to abcwed's topic in Client Development Discussion
it can only be downloaded 10 times. can you re host the download so more poeple can download. -
nice work. problably a noob question but do the wings work for gracia final?
-
[Guide]How to make custom pets
achillies replied to Jimaras22's topic in Server Development Discussion [L2J]
i have been looking for a guide on this. thank you ;D this has been very usefull.