L2JMobius

Recent Posts

21
General Discussion / Re: High Five and Grand Crusade (110) client
« Last post by the_coca_ on May 01, 2024, 11:47:26 PM »
Hello guys,
I'd like to adventure myself into porting the h5 server to the newer client grand crusade. This is probably something beyond my current capabilities but still I want to try to learn :D
What do you think is the easiest route? Downgrade GC server to H5 features or upgrade H5 server's network protocol to work with GC client? Or another path?

Thanks in advance!

Downgrade is more easy, maybe the hard part is adapt the login screen
22
General Discussion / Re: Problem with L2clientDat
« Last post by the_coca_ on May 01, 2024, 11:43:45 PM »
hi, I can't open interlude weapongrp.dat, report:

Code: [Select]
Open file: weapongrp.dat
File weapongrp.dat encrypted. Lineage2Ver413 decrypt ...
Decrypt weapongrp.dat file successfully by v413_encdec decrypter.
Read the file structure ...
Error while parsing variable NAME[rangeA] TYPE[UNICODE] in file NAME[weapongrp.dat]! Parsed data: item_begin tag=0 object_id=1 drop_type=1 drop_anim_type=1 drop_radius=7 drop_height=15 UNK_1=0 drop_mesh={[LineageWeapons.small_sword_m00_wp];[];[]} drop_texture={[LineageWeaponsTex.small_sword_t00_wp];[];[]} icon={[icon.weapon_small_sword_i00];[];[];[];[]} durability=-1 weight=1600 material_type=8 crystallizable=0 property_params=0 body_part=7 handness=1 wpn_mesh_cnt={[LineageWeapons.small_sword_m00_wp]} wpn_tex_cnt={[LineageWeaponsTex.small_sword_t00_wp]} item_sound={[ItemSound.sword_small_1];[ItemSound.sword_big_7];[ItemSound.sword_mid_6];[ItemSound.public_sword_shing_4]} drop_sound=[ItemSound.itemdrop_sword] equip_sound=[ItemSound.itemequip_sword] effect=[] random_damage=10 patt=8 matt=6 weapon_type=1 crystal_type=0 critical=8 hit_mod=0 avoid_mod=0 shield_pdef=0 shield_rate=0 speed=379 mp_consume=0 soulshot_count=1 spiritshot_count=1 curvature=1000 UNK_2=0 can_equip_hero=-1 UNK_3=0 effA=[] effB=[] junk1A={0.0;0.0;1.0;1.0;7.3E-44} junk1B={9.642834E-39;9.275539E-39;9.459192E-39;7.98983E-39;8.908185E-39} rangeA=
Unpacked not full 894/1796497 diff: 1795590
Completed.

I'm using L2ClientDat_20231106 revision


thanks in advance for any help

The mobius system is encrypted, you need download a clean system or a tool for remove encrypt of the files
23
General Discussion / Re: Valiance?
« Last post by the_coca_ on May 01, 2024, 11:36:19 PM »
24
General Discussion / Re: Class master alt b
« Last post by the_coca_ on May 01, 2024, 11:32:18 PM »
Pliz help
I can’t connect the profession and community manager My head is already spinning
You need the class master dialog on the community board???
25
General Discussion / Re: Valiance?
« Last post by Mobius on May 01, 2024, 11:27:25 PM »
Hello, does anyone know where I can get the necessary files to set up a valiance? I have the client but I don't have the system and the source

26
General Discussion / Valiance?
« Last post by the_coca_ on May 01, 2024, 10:46:14 PM »
Hello, does anyone know where I can get the necessary files to set up a valiance? I have the client but I don't have the system and the source
27
Shares/Contributions / Re: Admin Command to wipe target's inventory
« Last post by Mobius on May 01, 2024, 10:44:12 PM »
Thanks for sharing. It would be much better if you could add this in a config file, allowing the admin to edit the item whitelist (like 57, 97145, etc) and also create a seperate command that deletes all the equiped items too.
Or just use //destroy items for GMs.
28
Shares/Contributions / Re: Admin Command to wipe target's inventory
« Last post by G-hamsteR on May 01, 2024, 08:51:54 PM »
Thanks for sharing. It would be much better if you could add this in a config file, allowing the admin to edit the item whitelist (like 57, 97145, etc) and also create a seperate command that deletes all the equiped items too.
29
General Discussion / Re: Help connect the master class
« Last post by Bahik2009 on May 01, 2024, 08:33:48 PM »
Community board class manager so that in alt b you can buy a profession
30
Solved/Invalid Bug Reports / Re: set hero geting error ~~
« Last post by Mobius on May 01, 2024, 06:20:06 PM »
Try this.
Code: [Select]
Index: dist/game/data/scripts/handlers/dailymissionhandlers/OlympiadHeroDailyMissionHandler.java
===================================================================
--- dist/game/data/scripts/handlers/dailymissionhandlers/OlympiadHeroDailyMissionHandler.java (revision 13781)
+++ dist/game/data/scripts/handlers/dailymissionhandlers/OlympiadHeroDailyMissionHandler.java (working copy)
@@ -21,6 +21,7 @@
 import org.l2jmobius.gameserver.model.DailyMissionDataHolder;
 import org.l2jmobius.gameserver.model.DailyMissionPlayerEntry;
 import org.l2jmobius.gameserver.model.actor.Player;
+import org.l2jmobius.gameserver.model.clan.Clan;
 import org.l2jmobius.gameserver.model.events.Containers;
 import org.l2jmobius.gameserver.model.events.EventType;
 import org.l2jmobius.gameserver.model.events.impl.creature.player.OnPlayerTakeHero;
@@ -109,8 +110,14 @@
  return false;
  }
 
- final int clanMastery = player.getClan().hasMastery(14) ? 14 : player.getClan().hasMastery(15) ? 15 : player.getClan().hasMastery(16) ? 16 : 0;
- return ((player.getClan().getLevel() >= _minClanLevel) && (clanMastery >= _minClanMasteryLevel));
+ final Clan clan = player.getClan();
+ if (clan == null)
+ {
+ return false;
+ }
+
+ final int clanMastery = clan.hasMastery(14) ? 14 : clan.hasMastery(15) ? 15 : clan.hasMastery(16) ? 16 : 0;
+ return ((clan.getLevel() >= _minClanLevel) && (clanMastery >= _minClanMasteryLevel));
  }
 
  private boolean checkRequiredMission(Player player)