Jump to content
  • 0

Problem With Custom Donator/hero System


Question

Posted
Hi, i am using L2jFrozen and i tried to use this system but it seems that i cant get it to work :/


 

The donator item was causing troubles but i aplied the fix suggested on this topic and it solved the problem.

 

Now the problem is with hero item, let me explain...

if i use hero coin i get hero status etc just fine and i see the database update my hero end date as it should

when i relog i am no longer a hero BUT in database i can still see hero value 1 and my remaining time

also if i try to use hero coin again then donator coin in some point the data in DB get messed up, it set hero 0 and updates the donator end time and the opposit....

 

Did anyone have this problem or have any idea what can be the issue??

 

Thanks in advance!

3 answers to this question

Recommended Posts

  • 0
Posted (edited)

I didnt touch enterworld at all.

Plus that if hero_end_date is 0 (witch is forever) the character logs in as a hero normally no problem.

 

maybe there is something wrong here?

 

HeroCustomItem.java

 			if(player == null)
 				return;
 
-			con = L2DatabaseFactory.getInstance().getConnection(false);
-			PreparedStatement stmt = con.prepareStatement(INSERT_DATA);
-
+			con = L2DatabaseFactory.getInstance().getConnection(false);			
+			
+			PreparedStatement stmt = con.prepareStatement(INSERT_DATA);			
+			
 			stmt.setInt(1, player.getObjectId());
 			stmt.setString(2, player.getName());
 			stmt.setInt(3, 1);
 			stmt.setInt(4, player.isNoble() ? 1 : 0);
 			stmt.setInt(5, player.isDonator() ? 1 : 0);
-			stmt.setLong(6, heroTime == 0 ? 0 : System.currentTimeMillis() + heroTime);
+			
+			if (player.isHero())
+			{
+				stmt.setLong(6, player.getHeroDate(player.getObjectId()) + heroTime);
+			}
+			else
+			{
+				stmt.setLong(6, heroTime == 0 ? 0 : System.currentTimeMillis() + heroTime);
+			}
+			
+			stmt.setLong(7, player.isDonator() ? 0 : player.getDonatorDate(player.getObjectId()));
 			stmt.execute();
 			stmt.close();
 			stmt = null;

and here is the part for L2PcInstance.java

+	
 	/**
+	 * Gets Hero end time
+	 * 
+	 * @return time, 0 if time is infinitive, or -1 if error
+	 */
+	
+	public long getHeroDate(int obj_Id)
+	{
+		Connection con = null;
+		int out = -1;
+		
+		try
+		{
+			con = L2DatabaseFactory.getInstance().getConnection(false);
+			PreparedStatement stmt = con.prepareStatement("SELECT hero_end_date FROM characters_custom_data WHERE obj_Id=" + obj_Id);
+			ResultSet rs = stmt.executeQuery();
+			if (rs.next())
+			{
+				out = rs.getInt(1);
+			}
+			rs.close();
+			rs = null;
+			stmt.close();
+			stmt = null;
+		}
+		catch (Exception e) {
+			if(Config.ENABLE_ALL_EXCEPTIONS)
+				e.printStackTrace();
+			
+			_log.log(Level.SEVERE, "Error: could not get hero_end_date from database: ", e);
+		}
+		finally {
+			CloseUtil.close(con);			
+			con = null;
+		}
+		return out;
+	}
+	
+	/**

btw thanks for ur interest in this :)

Edited by satanoula

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • That's exactly how it’s designed — everything important is handled on the API server side, for example, processing requests to the game server. Each website has its own token/key for authentication; without it, there will be no interaction with the game server. Some data can be stored both on my side and on the server side to avoid making frequent requests to the server, which is logical.   Yes, there’s a lot of old, unused code that just needs to be cleaned up. It was used before, but after major rewrites it was left lying around. It doesn’t interfere with anything — it’s just there and doesn’t affect the system's operation.   Beaver meme kurwa is my favorite. Unfortunately, you don't know Russian — otherwise, you would’ve spotted even more Easter eggs. 😂   I said it’s been installed over 250 times on different domains. You can join my Telegram, there are almost 200 people there — and those are just the ones who entered the chat — and we’ll have a good laugh together at your doubts! 😂😂😂
    • Discord : utchiha_market Telegram : https://t.me/utchiha_market Auto Buy Store : https://utchihamkt.mysellauth.com/ Join our server for more products : https://discord.gg/qtkJASMbKV https://campsite.bio/utchihaamkt  
    • Discord : utchiha_market Telegram : https://t.me/utchiha_market Auto Buy Store : https://utchihamkt.mysellauth.com/ Join our server for more products : https://discord.gg/qtkJASMbKV https://campsite.bio/utchihaamkt  
    • i saw somewhere that: $var = (int) $_POST['some_id'] ?? string::error_class('text'); it was when i gave up and deleted the sources let him, he does not even understand what cross site or mitm means   still waiting for any client of yours so i can play with them     DUDE IM GONNA CALL YOU BoberKurwa FROM NOW ON!! rename your account aswell! BoberKurwa!   Note: what happend to your chatgpt answers boberkurwa did your subscription of $12.5/$20 ended?   it is PSR12 standard
    • if i was you i would check first argentinian developer team to learn and contribute then start my own project privatly and then practice in free coding for my self, then you would be ready to learn standards and code out of nothing, and if you fail means you are in good path, if you win you are in for higher level, whatever you do be persistent and focused, thats what i did when i had time.
  • Topics

×
×
  • Create New...