Jump to content
  • 0

Question

Posted (edited)

So I adapted a code from l2jbrasil into my pack, however since it was old as shit I decided to remake it.

 

So i did

 

 

in config.java

+      public static boolean ENABLE_LEVEL_REWARD;
+      public static int LEVEL_REWARD_ITEM;
+      public static int LEVEL_REWARD_COUNT;
+      public static int LEVEL_TO_REWARD;
+ENABLE_LEVEL_REWARD = Boolean.parseBoolean(L2JHellasSettings.getProperty("AllowLevelRewardSystem", "False"));
+LEVEL_REWARD_ITEM = Integer.parseInt(L2JHellasSettings.getProperty("LevelewardItemID", "57"));
+LEVEL_REWARD_COUNT = Integer.parseInt(L2JHellasSettings.getProperty("LevelRewardAmount", "1"));
+LEVEL_TO_REWARD = Integer.parseInt(L2JHellasSettings.getProperty("PlayerLevel", "20"));


+if (USE_SAY_FILTER)

then in L2PCinstance.java

+              
+              // Level Reward System
+              if (Config.ENABLE_LEVEL_REWARD && getLevel() == Config.LEVEL_TO_REWARD)
+              {
+                      // Item Level Reward System
+                      addItem("Level Reward", Config.LEVEL_REWARD_ITEM, Config.LEVEL_REWARD_COUNT, this, true);
+                      sendMessage("Make sure you reach your level first. " +Config.LEVEL_TO_REWARD+ " .");
+                      NpcHtmlMessage html = new NpcHtmlMessage(getObjectId());
+                      html.setFile(new StringBuilder("data/html/mods/LevelReward/level.htm").toString());
+                      html.replace("%objectId%", String.valueOf(getObjectId()));
+                      sendPacket(html);
+              }

Its just a simple code in order to reward players once they reach level 80.

 

I have added everything into l2jhellas.ini, and I have made the html file in the correct order

 

when I start the server I get informed that the level rewarder is enabled in the console. But when my player reachers level 80 he gets no reward. What am I missing here?

Edited by ExtreameR

Recommended Posts

  • 0
Posted

Try adding the code @ rewardSkill() method, before

 

 

if (Config.AUTO_LEARN_SKILLS)

 

Also, how could that work while you put your code @ doPickupItem() method which has nothing to do with that case :happyforever:

  • 0
Posted

aha right, so at which sector do i have to put it at, I pretty much have the same problem with my other code that I reworked, I am still mildly confused what goes where

  • 0
Posted

yeah so, what is wrong then, thats what I am wondering, the html does not pop up, but at the console everything seems stable and smooth. Same for the Kill streak feature.

  • 0
Posted

Show your addLevel method, once you moved the custom inside it.

 

And verify your ini properties names match with your Config.java, otherwise the default values are used (false, 20, 57, 1).

  • 0
Posted (edited)

Check to the first point

 

Check to the second point

 

However I am still receiving the same shit, I think being on a lot of medial drugs killed my brain heh.

 

 

 

Edit: I am getting no errors in eclipse, no errors in console, I also checked the ini files by disabling, enabling the mod, and it works perfectly fine.

 

so its either I am partially brain dead and I am doing something wrong in regards to player hitting the level and receiving the reward and the html popping up (none of which occours) or I am just missing something simple.

Edited by ExtreameR
  • 0
Posted (edited)

When you reach the desired lvl, does you get the msg ? Or nothing from the code is working ?

sendMessage("Make sure you reach your level first. " +Config.LEVEL_TO_REWARD+ " .");
Edited by SweeTs
  • 0
Posted

 

### Eclipse Workspace Patch 1.0
#P aCis_gameserver
Index: java/net/sf/l2j/gameserver/model/actor/stat/PcStat.java
===================================================================
--- java/net/sf/l2j/gameserver/model/actor/stat/PcStat.java (revision 10)
+++ java/net/sf/l2j/gameserver/model/actor/stat/PcStat.java (working copy)
@@ -23,6 +23,8 @@
 import net.sf.l2j.gameserver.model.base.Experience;
 import net.sf.l2j.gameserver.model.quest.QuestState;
 import net.sf.l2j.gameserver.network.SystemMessageId;
+import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;
+import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;
 import net.sf.l2j.gameserver.network.serverpackets.PledgeShowMemberListUpdate;
 import net.sf.l2j.gameserver.network.serverpackets.SocialAction;
 import net.sf.l2j.gameserver.network.serverpackets.StatusUpdate;
@@ -196,6 +198,19 @@
  su.addAttribute(StatusUpdate.MAX_MP, getMaxMp());
  getActiveChar().sendPacket(su);
  
+ boolean allowReward = true;
+ int level = 80;
+ 
+ if (allowReward && getActiveChar().getLevel() == level)
+ {
+ getActiveChar().addItem("", 57, 1, getActiveChar(), true);
+ getActiveChar().sendMessage("Make sure you reach your level first. " +level+ " .");
+ NpcHtmlMessage html = new NpcHtmlMessage(0);
+ html.setFile("data/html/mods/yourHtml.htm");
+ getActiveChar().sendPacket(html);
+ getActiveChar().sendPacket(ActionFailed.STATIC_PACKET);
+ }
+ 
  // Update the overloaded status of the L2PcInstance
  getActiveChar().refreshOverloaded();
  // Update the expertise status of the L2PcInstance
  • 0
Posted (edited)

Sweeets you're my hero! topic solved !

 

@devlin there was no need of adding the an extra boolean in PcStat.java

Edited by ExtreameR
Guest
This topic is now closed to further replies.


  • Posts

    • Hello everyone,   A long time ago I was also a Lucera customer. After all these years, I started wondering why the source code was never offered publicly, even as a paid option, while customers were still depending on monthly updates, extensions and closed binaries.   Because of that, I decided to start researching the project deeper from a technical point of view. I spent a lot of time analyzing how Lucera was structured, how the protections and bindings were implemented, how the core communicates with the scripts/extensions, and how everything is connected internally.   After a long process of analysis, cleanup and reconstruction, I managed to create my own decompiled Lucera based source environment. This means I can now work directly inside the source, modify core logic, change systems, fix bugs, rewrite scripts, remove limitations and develop features without depending only on external extensions or closed compiled files.   I know that some people already had access to private source versions, but for most customers the answer was always the same: “we do not sell source code.” So I decided to take a different path and build my own working source base from what I had.   This is not just a random claim or forum drama. I have already been working directly with the source, rebuilding parts of it, fixing decompilation issues, compiling scripts, correcting runtime errors and testing everything in-game.   The goal is simple: full control, full customization and the ability to continue development independently.   For anyone who doubts whether this is real or not, I will include a video demonstration showing the project, the source structure, the build process and in-game results..    
    • HOT NEWS: Gemini Spark BETA LAUNCHED! Google has officially released the Beta version of Gemini Spark, its highly anticipated modular AI workspace. Access to the new interface is currently exclusive to Google AI Ultra subscribers located within the United States. The groundbreaking update shifts the Gemini experience from a standard chat window to a clean, real-time code editor and dynamic canvas. ------------------------------------------- CONTACT Order Here: BUY GEMINI PRO Email: support@klouditem.com Telegram Channel: @klouditemcom Telegram Support: klouditem All Contact: https://linktr.ee/klouditem Website: https://klouditem.com Hours: 24/7 -- Always online SHOP NOW: klouditem.com  Gemini Pro can be useful for many daily online tasks, especially if you work with content, marketing, or websites. Some practical use cases:   ✅ Writing product descriptions ✅ Creating ad copy ideas ✅ Summarizing long documents ✅ Rewriting emails professionally ✅ Planning blog content ✅ Creating social media captions ✅ Explaining technical topics in simple words ✅ Brainstorming business ideas ✅ Checking grammar and tone ✅ Creating step-by-step guides   Best tip: don’t use AI output directly every time. Use it as a first draft, then edit it with your own experience. That gives much better and more natural results. ------------------------------------------- CONTACT Order Here: BUY GEMINI PRO Email: support@klouditem.com Telegram Channel: @klouditemcom Telegram Support: klouditem All Contact: https://linktr.ee/klouditem Website: https://klouditem.com Hours: 24/7 -- Always online SHOP NOW: klouditem.com
  • Topics

×
×
  • 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..