Hello. I have little problem with code which is getting votes count from hopzone website. It worked perfectly but now it doesn't work at all. I'm using aCis files.
/*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.sf.l2j.gameserver.votereward;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
import java.util.Map;
import net.sf.l2j.Config;
public class Hopzone extends VoteSystem
{
public Hopzone(int votesDiff, boolean allowReport, int boxes, Map<Integer, Integer> rewards, int checkMins)
{
super(votesDiff, allowReport, boxes, rewards, checkMins);
}
@Override
public void run()
{
reward();
}
@Override
public int getVotes()
{
InputStreamReader isr = null;
BufferedReader br = null;
try
{
URLConnection con = new URL(Config.HOPZONE_SERVER_LINK).openConnection();
con.addRequestProperty("User-Agent", "Mozilla/4.76");
isr = new InputStreamReader(con.getInputStream());
br = new BufferedReader(isr);
String line;
while ((line = br.readLine()) != null)
{
if (line.contains("<li><span class=\"rank tooltip\" title"))
{
int votes = Integer.valueOf(line.split(">")[2].replace("</span", ""));
return votes;
}
}
br.close();
isr.close();
}
catch (Exception e)
{
e.printStackTrace();
System.out.println("Error while getting server vote count from "+getSiteName()+".");
}
return -1;
}
@Override
public String getSiteName()
{
return "Hopzone";
}
}
Then wtf do You even do there?
That's the issue. You think I only have those customers with negative experiance. I don't beg my customers to "post positive review in my topic at MXC's". 80% of them don't even have an account here. I don't care.
But for TIME TO TIME, someone post a bad experiance review, because he had to wait and got refunded becausae of that...oh...now no-lifers like Cuntw0lf have something to do with their life. None of You were my customer so...You can fuck off 😎✌️
Where did I mention that you scam people? I was mentioning that people have to wait every now and then and to be honest that shouldn't happen.
And I am not talking about these cases when your city get flooded.
However, do what u think is appropriate, I really can't care enough.
I sell 20-30 launchers and logo designs per every 1 report about DELAY. Not scamm. DELAY.
I don't have to feed Your croocked curiosity. If You don't know what "custom" means, I won't waste more time on You. Go spread Your conspiracy theories in other topics.
Doesn't matter. Just funny that staff would ban your account for false accusations.
There's just too much controversial topics regarding your name, I wouldn't trust that if I were a new customer.
But huh, glad I am not one of them. Crazy to think about that people sometimes have to wait 2-3 weeks for a recycled launcher.
Question
devil12pl
Hello. I have little problem with code which is getting votes count from hopzone website. It worked perfectly but now it doesn't work at all. I'm using aCis files.
40 answers to this question
Recommended Posts