Jump to content
  • 0

Help. Vote Reward


Question

Posted

Hi all i have one lod vote reward. and he do't worck in tops i use freya pack and i don't know wha't i mush change to worck.

in hopzone/topzone some help what they change

11 answers to this question

Recommended Posts

  • 0
Posted (edited)

Your methods to get votes are outdated... just change this...

 

 

while ((inputLine = in.readLine()) != null)

{

     if(Config.VOTE_SYSTEM_HOPZONE == false){

     //TopZone

-     if(inputLine.contains("<tr><td><div align=\"center\"><b><font style=\"font-size:14px;color:#018BC1;\">")){

-     String i = inputLine.replace("<tr><td><div align=\"center\"><b><font style=\"font-size:14px;color:#018BC1;\">", "");

-     i = i.replace("</font></b></div></td></tr>", "");

-     i = i.trim();

-     int o = Integer.parseInt(i);

-     return Integer.valueOf(o);
+ if (inputLine.contains("class=\"votes2\">Votes:")){
+  return Integer.valueOf(inputLine.split(">")[3].replace("</div", ""));
     }

     } else {

     //for hopzone

-if (inputLine.contains("Anonymous User Votes"))
+ if (inputLine.contains("rank anonymous tooltip"))


}

}
Edited by ^Wyatt
Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..