i got this error when i spawned fake player(elfo system) and trying to vote from vote manager api based. i added client null check but again the same..
api based get ip and client code
public void retrieve(Player player)
{
if (player.getClient() == null)
return;
try (Connection con = L2DatabaseFactory.getInstance().getConnection(); PreparedStatement ps = con.prepareStatement("SELECT * FROM character_vote WHERE ip=?"))
{
ps.setString(1, player.getIP());
try (ResultSet rs = ps.executeQuery())
{
while (rs.next())
player.getVoteData().put(VoteSite.valueOf(rs.getString("site")), rs.getLong("time"));
}
}
catch (Exception e)
{
_log.warning("Couldn't load vote data for player " + player.getName());
}
}
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.
I just had another 2-hour chat with the support team, and my group has finally been restored.
They confirmed that my profile had been hacked. After months of waiting there is finally some justice.
I’m looking for this guy. Come out,
Lendel Lindemberg
Selling L2-Kandra Gold Style PvP Server Files!
Files include:
Demonic and Angelic Wings
Dynasty and Apella sets
Custom Gold Weapons
Custom zones
And much more!
Selling for a symbolic price of €25, as I want to try other packs in the future.
For details and purchase, contact me via message.
Question
cicos
i got this error when i spawned fake player(elfo system) and trying to vote from vote manager api based. i added client null check but again the same..
api based get ip and client code
public void retrieve(Player player)
{
if (player.getClient() == null)
return;
try (Connection con = L2DatabaseFactory.getInstance().getConnection(); PreparedStatement ps = con.prepareStatement("SELECT * FROM character_vote WHERE ip=?"))
{
ps.setString(1, player.getIP());
try (ResultSet rs = ps.executeQuery())
{
while (rs.next())
player.getVoteData().put(VoteSite.valueOf(rs.getString("site")), rs.getLong("time"));
}
}
catch (Exception e)
{
_log.warning("Couldn't load vote data for player " + player.getName());
}
}
1 answer to this question
Recommended Posts
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.