Jump to content
  • 0

Just Wondering...


Extreamer

Question

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
Link to comment
Share on other sites

Recommended Posts

  • 0

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:

Link to comment
Share on other sites

  • 0

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

Link to comment
Share on other sites

  • 0

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.

Link to comment
Share on other sites

  • 0

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).

Link to comment
Share on other sites

  • 0

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
Link to comment
Share on other sites

  • 0

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
Link to comment
Share on other sites

  • 0

 

### 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
Link to comment
Share on other sites

  • 0

Sweeets you're my hero! topic solved !

 

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

Edited by ExtreameR
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...