Jump to content

Alex13xD

Members
  • Posts

    61
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Alex13xD

  1. what you suggest me to do? start from zero with Etheria server or it's a way to make my server multi-client?
  2. Hello guys, at the moment I have a Freya server with some Grand Crusade equipment and maps and ofc using a Freya client. I want to use the new interface from official and if it's possible it run under the ready server I had made. I searched over the internet and I found a lot of ways (hard or just time draining). So I'm asking for your help what's the best way doing it, I'm about to start making an Ertheia server and I think it's working with classic client or something like that. :poker face:
  3. Hello guys, I want to make Grand Crusade interface for my Freya client (I own a freya server). So I found a H5 patch and I want to transfer the script packet to my freya file. This is the H5 file and I want to take ExpBarWnd and add it to my freya one, is it possible to do it? Or is there another way? (Like I said, I just want most of Grand Crusade's interface items)
  4. What about if I want to transfer a packet from H5 to Freya Interface.u Like this: I just want grand crusade interface for my freya client if it's possible (I own a freya server)
  5. Hello guys I want to change name and disable the mini map for one region. I'm trying to add a name to 26_20 region by editing zonename-e.dat but I failed Here is what I did: I added this line at the end of the file 510 255 26 20 30000.00000000 -30000.00000000 a,Darkario\0 -1 -1 -1 -1 -1 -1 0.00000000 a, 0 Maybe I have to change something else because this doesn't do anything. Also I want to add some more stuff: Is there a way to show dmg on screen, client or server side? (Freya client) (systemmsg-e.dat method doesn't work with numbers on screen) How to add hp bar over players heads and would be public viewed (like the hp bar on latest official client) And last I was wondering if I can make a real time ping meter (like in league of legends) It would be great if someone know some special client editing stuff and wants to share with me :D
  6. Hello, I'm trying to make an item that when you own it or activate it, like you activate your soulshots (if it's posible) to give some stats on the player. Here is what I have done so far and still not working: Item xml: <item id="60000" type="EtcItem" name="Pandora's Item"> <set name="icon" val="icon.etc_armor_soul_i00" /> <set name="immediate_effect" val="1" /> <set name="default_action" val="soulshot" /> <set name="material" val="paper" /> <set name="price" val="0" /> <set name="is_tradable" val="false" /> <set name="is_dropable" val="false" /> <set name="is_sellable" val="false" /> <set name="time" val="1440" /> <set name="handler" val="Cactive" /> <set name="item_skill" val="30412-1" /> </item> Skill xml: <skill id="30412" levels="1" name="Pandora's Item"> <set name="target" val="TARGET_SELF" /> <set name="skillType" val="SOULSHOT" /> <set name="operateType" val="OP_ACTIVE" /> <for> <mul order="0x40" stat="rExp" val="2" /> <mul order="0x30" stat="regMp" val="1.20" /> <mul order="0x30" stat="runSpd" val="1.05" /> <add order="0x40" stat="maxHp" val="1000" /> </for> </skill> Cactive handler (toke it from L2J_DataPack/dist/game/data/scripts/handlers/itemhandlers/SoulShot.java: I wanted to make the item active with right-click and shine like soulshot and get the stats package handlers.itemhandlers; import com.l2jserver.gameserver.handler.IItemHandler; import com.l2jserver.gameserver.model.L2ItemInstance; import com.l2jserver.gameserver.model.actor.L2Playable; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; public class Cactive implements IItemHandler { /** * * @see com.l2jserver.gameserver.handler.IItemHandler#useItem(com.l2jserver.gameserver.model.actor.L2Playable, com.l2jserver.gameserver.model.L2ItemInstance, boolean) */ public void useItem(L2Playable playable, L2ItemInstance item, boolean forceUse) { if (!(playable instanceof L2PcInstance)) return; L2PcInstance activeChar = (L2PcInstance) playable; int itemId = item.getItemId(); activeChar.soulShotLock.lock(); try { } finally { activeChar.soulShotLock.unlock(); } @SuppressWarnings("unused") int skillId = 0; switch (itemId) { case 60000: skillId=30412; break; case 60001: skillId=30413; break; } } } What I have done wrong and how to fix it or if it's a way to get the stats just the item to be inside inventory or something like that. Thanks for your time :)
  7. I had almost same issues with the latest version of H5, I tried latest Freya and I'm about to finish my project. So I'm okay using this but I wanted some H5 Client features, maybe I'll find a way around like I did with everything.
  8. is this possible to convert Interface.xdat for freya? when I try to use it the client crash
  9. tnx for the share, @ericvini you should change the link with this one
  10. Hello guys I'm looking for 2 codes: VIP access lvl: players with this lvl will get double exp/sp for 30 days and a way admin to add/remove or see the remaining days on the admin panel (I checked this code but it doesn't work on my project it has many errors that need convert from acis to freya and I only need a simple vip system only for exp/sp) Double EXP/SP on Friday-Sunday: well I can't find out what I should change to make it work
  11. tnx for the share man I'll use it for my server :good sir:
  12. Hello guys my problem is that I can't work with the latest release of L2J HF that is the master branch. What I mean is I can't convert some codes from this forum to the project and I can't transfer my npcs from my old pack (that was pre-compiled [old H5 ver of 2012] Why I can't transfer my npcs? Because with the latest changes they made npcs run inside some java files and not from the database that I was used to work. Not only those two are my problem but inside eclipse with the H5 pack I can't see on my code if I made mistakes, this happens only with this project when I use older packs eclipse can read the java files without any problem. So I guess I'll download the freya client and start with it from the start because the files are similar like my old H5 pack and I think I can transfer all my work I had done and add the custom codes I want and doing all this to make it happen. If you have a different opinion I would love to hear it (or see it) Thanks for your time by reading this, have a nice day ^-^
  13. h5 ofc :you serious?:
  14. Hello guys, I'm not new here but I never introduced myself on this forum. First of all I joined here for Lineage2, I wanted to create a server since 2014. I didn't have any clue about programming back there, so I decided to use a recompiled pack of L2J. After some years I made a lot of changes on that project, I learned how the emulator works and made the pack like I wanted. But now it's not enough and the pack had some bugs too, so I came back here to learn more and get some answers. First I downloaded the source (master branch) from L2J HF [stable version and develop is the beta version] I toke a look on the pack a bit and then I saw that build.xml wasn't exist and I was trying to compile with gradle but I wasn't lucky. So the next day I downloaded this pack and I could compile fine. Now I have more problems to solve.. When I run the GameServer with GeoData and PathFinding the console run out of memory, I need to find how to change the limit of the console for at least 4GB ram. Then I saw that npc tables doesn't exist on this version, someone said that they are on java now, but I still can't find it. The big problem is that I need to transfer all the npc/html/multisell/stats/armorsets/weapons all my work from the previous project to the new, I get so many errors on the eclipse console and I'm trying to solve them alone because I didn't find any guide for this new version of High Five server, I can't see my armors/weapons/npc I can't see anything and I have to start over again and make everything from zero. Thanks for your time by reading this short story of me :poker face:
  15. Darkbash boosting and selling Pokemon Go account service Do you have already your own account and you want to get some lvls on it? Then try one of our boosting packs.. Contact me on my FB Page or on my Email with your account info and the service you want to use. Are you interested in buying a fresh account that contains 60+ Pokedex Pokemon and over 60k stardust & lots of lures/lucky eggs/incense/PokeBalls? Then get one stock account from here FAQ 1) I didn't get my account details? -> Double Check your email and spam as well. If there is still nothing email me or PM here. (I will respond in max 12h) 2) Where are account details? ->you should see account details in email like [username][:][password] [=] example: littlekalista:pass123 = user@majorleaguemail.com 3) I can't log-in (can't authenticate to server) Check server status in this link! http://ispokemongodownornot.com/ ToS - the accounts come with no guarantee, after purchase of account. It is your responsibility to not use any exploits or anything that could get you banned. Once you purchase an account means you agree to this term. Email: bastasalex@gmail.com FB Page:
  16. New lineage 2 high five(H5) server! It's a part time open server because I open it from my computer, if it's going well I will host it on dedicated server. Server running with hamachi for extra security you can't login without it. Server rates: Status PvP All x5 Safe +16 Max +30 Server languages: Greek English For more information pm me on Facebook: http://facebook.com/bastasalex1 Lineage 2 H5 client download link: https://kickass.so/lineage-ii-the-chaotic-throne-high-five-client-t5184531.html Server patch: http://www.4shared.com/rar/kw3Oj-Cuce/L2_SoulBreakeR_patch_9-12-14_.html Hamachi download link and notes: http://www.4shared.com/office/__bvVvGnba/hamachi.html
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock