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.
Hello !
I have a problem when connecting to the pack with the Salvation client, it blocks my IP, I see that the account is created in the database but it remains logged in.
Any idea what it could be? ALso with H5 CLient !
Thank you !
From Salvation onwards I think you need a patched nwindow.dll that allows such modifications, try to see if you get what you need here:
https://drive.google.com/drive/u/1/folders/1LLbQFGf8KlR-O0Iv5umfF-pwZgrDh9bd
hello everyone!
I am wanting to save the files (Ini. - Data - ) of the EP5 Client: Salvation... But they generate the error "corrupt files"... I tried several versions of L2FileEditor without good results.
I need help! Thank you!
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.