Jump to content
  • 0

Prob With Vote System


blademarios

Question

there is no prob with consoles....

i want give reward every 5 votes at hopzone and topzone .. can some1 help me? :)

 

 

 

 

 

 

 

package vortextengine;

 

import java.io.BufferedReader;

import java.io.InputStream;

import java.io.InputStreamReader;

import java.net.URL;

import java.net.URLConnection;

 

import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;

import com.l2jfrozen.gameserver.network.clientpackets.Say2;

import com.l2jfrozen.gameserver.network.serverpackets.CreatureSay;

import com.l2jfrozen.gameserver.thread.ThreadPoolManager;

 

import vortextengine.datatables.PlayerTable;

import vortextengine.tasks.HopzoneVoteDelay;

import vortextengine.tasks.MonthlyResetTask;

import vortextengine.tasks.TopzoneVoteDelay;

import vortextengine.tasks.TriesResetTask;

 

import javolution.util.FastList;

 

 

public class VoteMain

{

public static FastList<String> voterList = new FastList<String>();

private static boolean isVoting;

public static int firstvoteshop;

public static int firstvotestop;

public static long lastVoteCheck = 0L;

public static long voteDelay = 43200000L;

 

public VoteMain()

{

}

 

public static void load()

{

System.out.println("Vote Reward System Started Successfully.");

VoteConfig.loadConfigs();

TriesResetTask.getInstance();

MonthlyResetTask.getInstance();

}

 

public static int getHopZoneVotes()

{

int votes = -1;

URL url = null;

URLConnection con = null;

InputStream is = null;

InputStreamReader isr = null;

BufferedReader in = null;

try

{

url = new URL(VoteConfig.VOTE_LINK_HOPZONE);

con = url.openConnection();

con.addRequestProperty("User-Agent", "Mozilla/4.76");

is = con.getInputStream();

isr = new InputStreamReader(is);

in = new BufferedReader(isr);

String inputLine;

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

{

if (inputLine.contains("rank anonymous tooltip"))

{

votes = Integer.valueOf(inputLine.split(">")[2].replace("</span", ""));

break;

}

}

}

catch (Exception e)

{

System.out.println("VortexEngine: Server HOPZONE is offline or something is wrong in link.");

}

return votes;

}

 

public static int getTopZoneVotes()

{

int votes = -1;

URL url = null;

URLConnection con = null;

InputStream is = null;

InputStreamReader isr = null;

BufferedReader in = null;

try

{

url = new URL(VoteConfig.VOTE_LINK_TOPZONE);

con = url.openConnection();

con.addRequestProperty("User-Agent", "Mozilla/4.76");

is = con.getInputStream();

isr = new InputStreamReader(is);

in = new BufferedReader(isr);

String inputLine;

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

{

if (inputLine.contains("Votes"))

{

String votesLine = inputLine;

 

votes = Integer.valueOf(votesLine.split(">")[3].replace("</div", ""));

break;

}

}

}

catch (Exception e)

{

System.out.println("VortexEngine: Server TOPZONE is offline or something is wrong in link.");

}

 

return votes;

}

 

public static void hopvote(final L2PcInstance player)

{

if (isVoting())

{

player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Someone is already voting.Wait for your turn please!"));

return;

}

 

if (VoteConfig.ENABLE_TRIES)

{

if (PlayerTable.getTries(player) <= 0)

{

player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Due to your multiple failures in voting you lost your chance to vote today"));

return;

}

}

 

setFirstvoteshop(getHopZoneVotes());

PlayerTable.loadLastVoteHopzone(player);

 

if ((getLastVoteCheck() + getVoteDelay()) < System.currentTimeMillis())

{

activateVoting(player, "hopzone");

ThreadPoolManager.getInstance().scheduleGeneral(new HopzoneVoteDelay(player), VoteConfig.SECS_TO_VOTE * 1000);

}

else

{

player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "12 hours have to pass till you are able to vote again."));

}

}

 

public static void topvote(final L2PcInstance player)

{

if (isVoting())

{

player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Someone is already voting.Wait for your turn please!"));

return;

}

 

if (VoteConfig.ENABLE_TRIES)

{

if (PlayerTable.getTries(player) <= 0)

{

player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Due to your multiple failures in voting you lost your chance to vote today"));

return;

}

}

 

setFirstvotestop(getTopZoneVotes());

PlayerTable.loadLastVoteTopzone(player);

 

if ((getLastVoteCheck() + getVoteDelay()) < System.currentTimeMillis())

{

activateVoting(player, "topzone");

ThreadPoolManager.getInstance().scheduleGeneral(new TopzoneVoteDelay(player), VoteConfig.SECS_TO_VOTE * 1000);

}

else

{

player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "12 hours have to pass till you are able to vote again."));

}

}

 

public static String whosVoting()

{

String voterName = "None";

if (!voterList.isEmpty())

{

voterName = voterList.getFirst();

}

return voterName;

}

 

private static void activateVoting(L2PcInstance player, String banner)

{

setisVoting(true);

player.sendPacket(new CreatureSay(0, Say2.TELL, "Server", "Go fast on the site and vote on the " + banner + " banner!"));

}

 

// Getters and Setters

public static boolean isVoting()

{

return isVoting;

}

 

public static void setisVoting(boolean _isVoting)

{

VoteMain.isVoting = _isVoting;

}

 

public static int getFirstvoteshop()

{

return firstvoteshop;

}

 

public static void setFirstvoteshop(int firstvoteshop)

{

VoteMain.firstvoteshop = firstvoteshop;

}

 

public static int getFirstvotestop()

{

return firstvotestop;

}

 

public static void setFirstvotestop(int firstvotestop)

{

VoteMain.firstvotestop = firstvotestop;

}

 

public static long getLastVoteCheck()

{

return lastVoteCheck;

}

 

public static void setLastVoteCheck(long lastVoteCheck)

{

VoteMain.lastVoteCheck = lastVoteCheck;

}

 

public static long getVoteDelay()

{

return voteDelay;

}

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

 

there is no prob with consoles....
i want give reward every 5 votes at hopzone and topzone .. can some1 help me? :)

I guess is on your config....

Take a look there...

Link to comment
Share on other sites

  • 0

u mean here? :)

 

 

 

I guess is on your config....

Take a look there...

package vortextengine;
 
import java.io.File;
import java.io.FileInputStream;
import java.util.Properties;
 
public class VoteConfig
{
public static boolean ENABLE_TRIES;
public static String VOTE_LINK_HOPZONE;
public static String VOTE_LINK_TOPZONE;
public static int SERVER_ID;
public static int VOTE_REWARD_ID1;
public static int VOTE_REWARD_AMOUNT1;
public static int SECS_TO_VOTE;
public static int EXTRA_REW_VOTE_AM;
 
public static void loadConfigs()
{
try
{
Properties prop = new Properties();
prop.load(new FileInputStream(new File("config/custom/VortexEngine.properties")));
 
ENABLE_TRIES = Boolean.parseBoolean(prop.getProperty("EnableTries", "true"));
VOTE_LINK_HOPZONE = prop.getProperty("HopzoneUrl", "null");
VOTE_LINK_TOPZONE = prop.getProperty("TopzoneUrl", "null");
SERVER_ID = Integer.parseInt(prop.getProperty("ServerId", "1"));
VOTE_REWARD_ID1 = Integer.parseInt(prop.getProperty("VoteRewardId1", "300"));
VOTE_REWARD_AMOUNT1 = Integer.parseInt(prop.getProperty("VoteRewardAmount1", "300"));
SECS_TO_VOTE = Integer.parseInt(prop.getProperty("SecondsToVote", "60"));
EXTRA_REW_VOTE_AM = Integer.parseInt(prop.getProperty("ExtraRewVoteAm", "20"));
}
catch (Exception e)
{
System.out.println("Error while loading Vortex Engine settings!");
}
}
}
Edited by blademarios
Link to comment
Share on other sites

  • 0

You must to edit this from gameserver files/config
No inside on eclipse..

 

Also, this is the amount of vote. But you have to change it from config of gameserver files.

VOTE_REWARD_AMOUNT1 = Integer.parseInt(prop.getProperty("VoteRewardAmount1", "300"));

 

Go at Workspace/Your server name/gameserver/config and find the vote property.

You had already this code in your pack?

If you put this code, then you have to pass and config.

Edited by 'Baggos'
Link to comment
Share on other sites

  • 0

You must to edit this from gameserver files/config

No inside on eclipse..

 

Also, this is the amount of vote. But you have to change it from config of gameserver files.

VOTE_REWARD_AMOUNT1 = Integer.parseInt(prop.getProperty("VoteRewardAmount1", "300"));

 

Go at Workspace/Your server name/gameserver/config and find the vote property.

You had already this code in your pack?

If you put this code, then you have to pass and config.

 

maybe you can add me one min at skype to help me? xristosmpou@hotmail.com

Link to comment
Share on other sites

  • 0

maybe you can add me one min at skype to help me? xristosmpou@hotmail.com

I can't to give you help for something like this... Because this is not problem.. You just must to understand some things...

It is easy... I'll talk you in greek..

 

[GR]

Τι project χρησιμοποιείς?

Επίσης, ο κώδικας ήταν ήδη στο project σου ή εσύ τον πέρασες?

Αν ήταν ήδη, τότε θα πρέπει να υπάρχει κάποιο config με το όνομα "prob".

Εκεί μέσα θα υπάρχει το "VoteRewardAmount1". Απλά βάλε τα πόσα Votes θες να δίνει...

Link to comment
Share on other sites

  • 0

I can't to give you help for something like this... Because this is not problem.. You just must to understand some things...

It is easy... I'll talk you in greek..

 

[GR]

Τι project χρησιμοποιείς?

Επίσης, ο κώδικας ήταν ήδη στο project σου ή εσύ τον πέρασες?

Αν ήταν ήδη, τότε θα πρέπει να υπάρχει κάποιο config με το όνομα "prob".

Εκεί μέσα θα υπάρχει το "VoteRewardAmount1". Απλά βάλε τα πόσα Votes θες να δίνει...

 

 

ekana oti mou eipes  alla den douleuei :) an mporouses ligo na me kaneis add sto skype na mou deikseis na ma8w kai egw tha sou eixa upoxrewsei :)

Link to comment
Share on other sites

  • 0

ma pos na dulepsi? :O oute to code tou hopzone oute t topzone dn ine sosto pia.. exoun allaksi.

 

dokimase afto

package vortextengine;
 
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
 
import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
import com.l2jfrozen.gameserver.network.clientpackets.Say2;
import com.l2jfrozen.gameserver.network.serverpackets.CreatureSay;
import com.l2jfrozen.gameserver.thread.ThreadPoolManager;
 
import vortextengine.datatables.PlayerTable;
import vortextengine.tasks.HopzoneVoteDelay;
import vortextengine.tasks.MonthlyResetTask;
import vortextengine.tasks.TopzoneVoteDelay;
import vortextengine.tasks.TriesResetTask;
 
import javolution.util.FastList;
 
 
public class VoteMain
{
public static FastList<String> voterList = new FastList<String>();
private static boolean isVoting;
public static int firstvoteshop;
public static int firstvotestop;
public static long lastVoteCheck = 0L;
public static long voteDelay = 43200000L;
 
public VoteMain()
{
}
 
public static void load()
{
System.out.println("Vote Reward System Started Successfully.");
VoteConfig.loadConfigs();
TriesResetTask.getInstance();
MonthlyResetTask.getInstance();
}
 
public static int getHopZoneVotes()
{
InputStreamReader isr = null;
BufferedReader br = null;

try
{
if(!VoteConfig.VOTE_LINK_HOPZONE.endsWith(".html"))
VoteConfig.VOTE_LINK_HOPZONE+=".html";

URLConnection con = new URL(VoteConfig.VOTE_LINK_HOPZONE).openConnection();


con.addRequestProperty("User-L2Hopzone", "Mozilla/4.76");
isr = new InputStreamReader(con.getInputStream());
br = new BufferedReader(isr);

String line;
while ((line = br.readLine()) != null)
{
if (line.contains("no steal make love")||line.contains("no votes here")||line.contains("bang, you don't have votes")|| line.contains("la vita e bella"))
{
int votes = Integer.valueOf(line.split(">")[2].replace("</span", ""));

return votes;
}
}

br.close();
isr.close();
}
catch (Exception e)
{
System.out.println("[VoteRewardManager]: Problem occured while getting Hopzone votes. Error Trace: " + e.getMessage());
}
return -1;
}
 
public static int getTopZoneVotes()
{
int votes = -1;
URL url = null;
URLConnection con = null;
InputStream is = null;
InputStreamReader isr = null;
BufferedReader in = null;
try
{
url = new URL(VoteConfig.VOTE_LINK_TOPZONE);
con = url.openConnection();
con.addRequestProperty("User-Agent", "L2TopZone");
is = con.getInputStream();
isr = new InputStreamReader(is);
in = new BufferedReader(isr);
String inputLine;
while ((inputLine = in.readLine()) != null)
{
if (inputLine.contains("Votes"))
{
String votesLine = inputLine;
 
votes = Integer.valueOf(votesLine.split(">")[3].replace("</div", ""));
break;
}
}
}
catch (Exception e)
{
System.out.println("VortexEngine: Server TOPZONE is offline or something is wrong in link.");
}
 
return votes;
}
 
public static void hopvote(final L2PcInstance player)
{
if (isVoting())
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Someone is already voting.Wait for your turn please!"));
return;
}
 
if (VoteConfig.ENABLE_TRIES)
{
if (PlayerTable.getTries(player) <= 0)
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Due to your multiple failures in voting you lost your chance to vote today"));
return;
}
}
 
setFirstvoteshop(getHopZoneVotes());
PlayerTable.loadLastVoteHopzone(player);
 
if ((getLastVoteCheck() + getVoteDelay()) < System.currentTimeMillis())
{
activateVoting(player, "hopzone");
ThreadPoolManager.getInstance().scheduleGeneral(new HopzoneVoteDelay(player), VoteConfig.SECS_TO_VOTE * 1000);
}
else
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "12 hours have to pass till you are able to vote again."));
}
}
 
public static void topvote(final L2PcInstance player)
{
if (isVoting())
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Someone is already voting.Wait for your turn please!"));
return;
}
 
if (VoteConfig.ENABLE_TRIES)
{
if (PlayerTable.getTries(player) <= 0)
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Due to your multiple failures in voting you lost your chance to vote today"));
return;
}
}
 
setFirstvotestop(getTopZoneVotes());
PlayerTable.loadLastVoteTopzone(player);
 
if ((getLastVoteCheck() + getVoteDelay()) < System.currentTimeMillis())
{
activateVoting(player, "topzone");
ThreadPoolManager.getInstance().scheduleGeneral(new TopzoneVoteDelay(player), VoteConfig.SECS_TO_VOTE * 1000);
}
else
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "12 hours have to pass till you are able to vote again."));
}
}
 
public static String whosVoting()
{
String voterName = "None";
if (!voterList.isEmpty())
{
voterName = voterList.getFirst();
}
return voterName;
}
 
private static void activateVoting(L2PcInstance player, String banner)
{
setisVoting(true);
player.sendPacket(new CreatureSay(0, Say2.TELL, "Server", "Go fast on the site and vote on the " + banner + " banner!"));
}
 
// Getters and Setters
public static boolean isVoting()
{
return isVoting;
}
 
public static void setisVoting(boolean _isVoting)
{
VoteMain.isVoting = _isVoting;
}
 
public static int getFirstvoteshop()
{
return firstvoteshop;
}
 
public static void setFirstvoteshop(int firstvoteshop)
{
VoteMain.firstvoteshop = firstvoteshop;
}
 
public static int getFirstvotestop()
{
return firstvotestop;
}
 
public static void setFirstvotestop(int firstvotestop)
{
VoteMain.firstvotestop = firstvotestop;
}
 
public static long getLastVoteCheck()
{
return lastVoteCheck;
}
 
public static void setLastVoteCheck(long lastVoteCheck)
{
VoteMain.lastVoteCheck = lastVoteCheck;
}
 
public static long getVoteDelay()
{
return voteDelay;
}

Link to comment
Share on other sites

  • 0

re c se pio java na to perasw eksigise mou ligo gt eimai new ston xwro :)



package vortextengine;
 
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
 
import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
import com.l2jfrozen.gameserver.network.clientpackets.Say2;
import com.l2jfrozen.gameserver.network.serverpackets.CreatureSay;
import com.l2jfrozen.gameserver.thread.ThreadPoolManager;
 
import vortextengine.datatables.PlayerTable;
import vortextengine.tasks.HopzoneVoteDelay;
import vortextengine.tasks.MonthlyResetTask;
import vortextengine.tasks.TopzoneVoteDelay;
import vortextengine.tasks.TriesResetTask;
 
import javolution.util.FastList;
 
 
public class VoteMain
{
public static FastList<String> voterList = new FastList<String>();
private static boolean isVoting;
public static int firstvoteshop;
public static int firstvotestop;
public static long lastVoteCheck = 0L;
public static long voteDelay = 43200000L;
 
public VoteMain()
{
}
 
public static void load()
{
System.out.println("Vote Reward System Started Successfully.");
VoteConfig.loadConfigs();
TriesResetTask.getInstance();
MonthlyResetTask.getInstance();
}
 
public static int getHopZoneVotes()
{
InputStreamReader isr = null;
BufferedReader br = null;

try
{
if(!VoteConfig.VOTE_LINK_HOPZONE.endsWith(".html"))
VoteConfig.VOTE_LINK_HOPZONE+=".html";

URLConnection con = new URL(VoteConfig.VOTE_LINK_HOPZONE).openConnection();


con.addRequestProperty("User-L2Hopzone", "Mozilla/4.76");
isr = new InputStreamReader(con.getInputStream());
br = new BufferedReader(isr);

String line;
while ((line = br.readLine()) != null)
{
if (line.contains("no steal make love")||line.contains("no votes here")||line.contains("bang, you don't have votes")|| line.contains("la vita e bella"))
{
int votes = Integer.valueOf(line.split(">")[2].replace("</span", ""));

return votes;
}
}

br.close();
isr.close();
}
catch (Exception e)
{
System.out.println("[VoteRewardManager]: Problem occured while getting Hopzone votes. Error Trace: " + e.getMessage());
}
return -1;
}
 
public static int getTopZoneVotes()
{
int votes = -1;
URL url = null;
URLConnection con = null;
InputStream is = null;
InputStreamReader isr = null;
BufferedReader in = null;
try
{
url = new URL(VoteConfig.VOTE_LINK_TOPZONE);
con = url.openConnection();
con.addRequestProperty("User-Agent", "L2TopZone");
is = con.getInputStream();
isr = new InputStreamReader(is);
in = new BufferedReader(isr);
String inputLine;
while ((inputLine = in.readLine()) != null)
{
if (inputLine.contains("Votes"))
{
String votesLine = inputLine;
 
votes = Integer.valueOf(votesLine.split(">")[3].replace("</div", ""));
break;
}
}
}
catch (Exception e)
{
System.out.println("VortexEngine: Server TOPZONE is offline or something is wrong in link.");
}
 
return votes;
}
 
public static void hopvote(final L2PcInstance player)
{
if (isVoting())
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Someone is already voting.Wait for your turn please!"));
return;
}
 
if (VoteConfig.ENABLE_TRIES)
{
if (PlayerTable.getTries(player) <= 0)
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Due to your multiple failures in voting you lost your chance to vote today"));
return;
}
}
 
setFirstvoteshop(getHopZoneVotes());
PlayerTable.loadLastVoteHopzone(player);
 
if ((getLastVoteCheck() + getVoteDelay()) < System.currentTimeMillis())
{
activateVoting(player, "hopzone");
ThreadPoolManager.getInstance().scheduleGeneral(new HopzoneVoteDelay(player), VoteConfig.SECS_TO_VOTE * 1000);
}
else
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "12 hours have to pass till you are able to vote again."));
}
}
 
public static void topvote(final L2PcInstance player)
{
if (isVoting())
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Someone is already voting.Wait for your turn please!"));
return;
}
 
if (VoteConfig.ENABLE_TRIES)
{
if (PlayerTable.getTries(player) <= 0)
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Due to your multiple failures in voting you lost your chance to vote today"));
return;
}
}
 
setFirstvotestop(getTopZoneVotes());
PlayerTable.loadLastVoteTopzone(player);
 
if ((getLastVoteCheck() + getVoteDelay()) < System.currentTimeMillis())
{
activateVoting(player, "topzone");
ThreadPoolManager.getInstance().scheduleGeneral(new TopzoneVoteDelay(player), VoteConfig.SECS_TO_VOTE * 1000);
}
else
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "12 hours have to pass till you are able to vote again."));
}
}
 
public static String whosVoting()
{
String voterName = "None";
if (!voterList.isEmpty())
{
voterName = voterList.getFirst();
}
return voterName;
}
 
private static void activateVoting(L2PcInstance player, String banner)
{
setisVoting(true);
player.sendPacket(new CreatureSay(0, Say2.TELL, "Server", "Go fast on the site and vote on the " + banner + " banner!"));
}
 
// Getters and Setters
public static boolean isVoting()
{
return isVoting;
}
 
public static void setisVoting(boolean _isVoting)
{
VoteMain.isVoting = _isVoting;
}
 
public static int getFirstvoteshop()
{
return firstvoteshop;
}
 
public static void setFirstvoteshop(int firstvoteshop)
{
VoteMain.firstvoteshop = firstvoteshop;
}
 
public static int getFirstvotestop()
{
return firstvotestop;
}
 
public static void setFirstvotestop(int firstvotestop)
{
VoteMain.firstvotestop = firstvotestop;
}
 
public static long getLastVoteCheck()
{
return lastVoteCheck;
}
 
public static void setLastVoteCheck(long lastVoteCheck)
{
VoteMain.lastVoteCheck = lastVoteCheck;
}
 
public static long getVoteDelay()
{
return voteDelay;
}

Link to comment
Share on other sites

  • 0

 

re c se pio java na to perasw eksigise mou ligo gt eimai new ston xwro :)

 

package vortextengine;
 
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
 
import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
import com.l2jfrozen.gameserver.network.clientpackets.Say2;
import com.l2jfrozen.gameserver.network.serverpackets.CreatureSay;
import com.l2jfrozen.gameserver.thread.ThreadPoolManager;
 
import vortextengine.datatables.PlayerTable;
import vortextengine.tasks.HopzoneVoteDelay;
import vortextengine.tasks.MonthlyResetTask;
import vortextengine.tasks.TopzoneVoteDelay;
import vortextengine.tasks.TriesResetTask;
 
import javolution.util.FastList;
 
 
public class VoteMain
{
public static FastList<String> voterList = new FastList<String>();
private static boolean isVoting;
public static int firstvoteshop;
public static int firstvotestop;
public static long lastVoteCheck = 0L;
public static long voteDelay = 43200000L;
 
public VoteMain()
{
}
 
public static void load()
{
System.out.println("Vote Reward System Started Successfully.");
VoteConfig.loadConfigs();
TriesResetTask.getInstance();
MonthlyResetTask.getInstance();
}
 
public static int getHopZoneVotes()
{
InputStreamReader isr = null;
BufferedReader br = null;

try
{
if(!VoteConfig.VOTE_LINK_HOPZONE.endsWith(".html"))
VoteConfig.VOTE_LINK_HOPZONE+=".html";

URLConnection con = new URL(VoteConfig.VOTE_LINK_HOPZONE).openConnection();


con.addRequestProperty("User-L2Hopzone", "Mozilla/4.76");
isr = new InputStreamReader(con.getInputStream());
br = new BufferedReader(isr);

String line;
while ((line = br.readLine()) != null)
{
if (line.contains("no steal make love")||line.contains("no votes here")||line.contains("bang, you don't have votes")|| line.contains("la vita e bella"))
{
int votes = Integer.valueOf(line.split(">")[2].replace("</span", ""));

return votes;
}
}

br.close();
isr.close();
}
catch (Exception e)
{
System.out.println("[VoteRewardManager]: Problem occured while getting Hopzone votes. Error Trace: " + e.getMessage());
}
return -1;
}
 
public static int getTopZoneVotes()
{
int votes = -1;
URL url = null;
URLConnection con = null;
InputStream is = null;
InputStreamReader isr = null;
BufferedReader in = null;
try
{
url = new URL(VoteConfig.VOTE_LINK_TOPZONE);
con = url.openConnection();
con.addRequestProperty("User-Agent", "L2TopZone");
is = con.getInputStream();
isr = new InputStreamReader(is);
in = new BufferedReader(isr);
String inputLine;
while ((inputLine = in.readLine()) != null)
{
if (inputLine.contains("Votes"))
{
String votesLine = inputLine;
 
votes = Integer.valueOf(votesLine.split(">")[3].replace("</div", ""));
break;
}
}
}
catch (Exception e)
{
System.out.println("VortexEngine: Server TOPZONE is offline or something is wrong in link.");
}
 
return votes;
}
 
public static void hopvote(final L2PcInstance player)
{
if (isVoting())
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Someone is already voting.Wait for your turn please!"));
return;
}
 
if (VoteConfig.ENABLE_TRIES)
{
if (PlayerTable.getTries(player) <= 0)
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Due to your multiple failures in voting you lost your chance to vote today"));
return;
}
}
 
setFirstvoteshop(getHopZoneVotes());
PlayerTable.loadLastVoteHopzone(player);
 
if ((getLastVoteCheck() + getVoteDelay()) < System.currentTimeMillis())
{
activateVoting(player, "hopzone");
ThreadPoolManager.getInstance().scheduleGeneral(new HopzoneVoteDelay(player), VoteConfig.SECS_TO_VOTE * 1000);
}
else
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "12 hours have to pass till you are able to vote again."));
}
}
 
public static void topvote(final L2PcInstance player)
{
if (isVoting())
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Someone is already voting.Wait for your turn please!"));
return;
}
 
if (VoteConfig.ENABLE_TRIES)
{
if (PlayerTable.getTries(player) <= 0)
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "Due to your multiple failures in voting you lost your chance to vote today"));
return;
}
}
 
setFirstvotestop(getTopZoneVotes());
PlayerTable.loadLastVoteTopzone(player);
 
if ((getLastVoteCheck() + getVoteDelay()) < System.currentTimeMillis())
{
activateVoting(player, "topzone");
ThreadPoolManager.getInstance().scheduleGeneral(new TopzoneVoteDelay(player), VoteConfig.SECS_TO_VOTE * 1000);
}
else
{
player.sendPacket(new CreatureSay(0, Say2.ALLIANCE, "Server", "12 hours have to pass till you are able to vote again."));
}
}
 
public static String whosVoting()
{
String voterName = "None";
if (!voterList.isEmpty())
{
voterName = voterList.getFirst();
}
return voterName;
}
 
private static void activateVoting(L2PcInstance player, String banner)
{
setisVoting(true);
player.sendPacket(new CreatureSay(0, Say2.TELL, "Server", "Go fast on the site and vote on the " + banner + " banner!"));
}
 
// Getters and Setters
public static boolean isVoting()
{
return isVoting;
}
 
public static void setisVoting(boolean _isVoting)
{
VoteMain.isVoting = _isVoting;
}
 
public static int getFirstvoteshop()
{
return firstvoteshop;
}
 
public static void setFirstvoteshop(int firstvoteshop)
{
VoteMain.firstvoteshop = firstvoteshop;
}
 
public static int getFirstvotestop()
{
return firstvotestop;
}
 
public static void setFirstvotestop(int firstvotestop)
{
VoteMain.firstvotestop = firstvotestop;
}
 
public static long getLastVoteCheck()
{
return lastVoteCheck;
}
 
public static void setLastVoteCheck(long lastVoteCheck)
{
VoteMain.lastVoteCheck = lastVoteCheck;
}
 
public static long getVoteDelay()
{
return voteDelay;
}

 

ti na s po dn ksero pos ine to code s..

diegrapse to file p mas anevases emas k perase afto

Link to comment
Share on other sites

  • 0

 

re c se pio java na to perasw eksigise mou ligo gt eimai new ston xwro :)

 

Τον κώδικα που ανέβασες εδώ, τον έχεις περάσει? ή απλά θέλεις να τον περάσεις?

Επίσης, μήπως χρησιμοποιείς l2jfrozen? Επειδή έχει ήδη μέσα Vote reward system.

Link to comment
Share on other sites

  • 0

Τον κώδικα που ανέβασες εδώ, τον έχεις περάσει? ή απλά θέλεις να τον περάσεις?

Επίσης, μήπως χρησιμοποιείς l2jfrozen? Επειδή έχει ήδη μέσα Vote reward system.

l2jfrozen einai to pack alla den kserw akrivws pos na to kanw to vote system :)

Link to comment
Share on other sites

  • 0

l2jfrozen einai to pack alla den kserw akrivws pos na to kanw to vote system :)

Πήγαινε gameserver/config/powerpak και άνοιξε με επεξεργασία το powerpak.properties

Εκεί μέσα θα δεις:

 

# Automatic Vote Reward System
VoteRewardSystem= False
VotesRequiredForReward = 50
VotesSystemInitialDelay= 60000
VotesSystemStepDelay= 1800000
VotesRewards= 6392,20;

# Leave empty to disable one site
#
# Hopzone: http://l2.hopzone.net
VotesSiteHopZoneUrl =
# Topzone: http://l2topzone.com
VotesSiteTopZoneUrl =
# L2Network: http://l2network.eu
VotesSiteL2NetworkUrl =
# Put your website url
ServerWebSite = http://www.l2jfrozen.com

Και αρχίζεις,

VoteRewardSystem= False το κάνεις True

VotesRequiredForReward = 50 βάζεις στα πόσα votes θες να δίνει reward

VotesRewards= 6392,20; το id από το item που θες στην θέση του 6392 και το πόσα τέτοια να πετάει στη θέση του 20

 

# Hopzone: http://l2.hopzone.net

VotesSiteHopZoneUrl = το link σου από το hopzone

# Topzone: http://l2topzone.com

VotesSiteTopZoneUrl = το link σου από το topzone

# L2Network: http://l2network.eu

VotesSiteL2NetworkUrl = το link σου από το l2network

 

ServerWebSite = http://www.l2jfrozen.comεδώ βάζεις το link της σελίδας σου.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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

    • WTB Site Developer services.
    • @TZANEEN BUY UNIVERSAL SSD CHEMICAL SOLUTION  +27833928661 in South Africa, Gauteng, KwaZulu-Natal, Limpopo, Free State, Mpumalanga, North West, Western Cape, Eastern Cape, Northern Cape, Benoni, Boksburg, Brakpan, Carletonville, Germiston, Johannesburg, Krugersdorp, Mafikeng, Pretoria, Randburg, Randfontein, Roodepoort, Soweto, Springs, Vanderbijlpark, Vereeniging, Durban,  +27833928661Empangeni, Ladysmith, Newcastle, Pietermaritzburg, Pinetown, Ulundi, Umlazi, Bethlehem, Bloemfontein, Jagersfontein, Kroonstad, Odendaalsrus, Parys, Phuthaditjhaba, Sasolburg, Virginia, Welkom, Giyani, Lebowakgomo, Musina, Phalaborwa, Polokwane, Seshego, Sibasa, Emalahleni, Nelspruit, Secunda, Standerton, Klerksdorp, Mahikeng, Mmabatho, Potchefstroom, Rustenburg, Bellville, Cape Town, Constantia, George, Hopefield, Oudtshoorn, Paarl, Simon’s Town, Stellenbosch, Swellendam, Worcester, Alice, Butterworth, East London, Graaff-Reinet, Grahamstown, King William’s Town, Mthatha, Port Elizabeth, Queenstown, Uitenhage, Zwelitsha. +27833928661 Call For Ssd Chemical Solution for Cleaning All Notes +27833928661. Please inform us immediately on Email: Kennroger77@gmail.com Or Call: +27833928661. https://Kennroger7.Blogspot.com/website https://Kennroger7.Blogspot.com/techniciankenn https://Kennroger7.blogspot.com/   We Clean all types of Currencies call  +27833928661 Ssd Solution Chemical for Cleaning Black Money Notes Call +27833928661 Ssd Solution Used to Clean all type of Blackened +27833928661, Tainted and Defaced Bank Notes  +27833928661. We Sell Ssd Chemical Solution Used to Clean All type of Black Money and any Color Currency, Stain and Defaced Bank Notes with any others equipment being bad. Our technicians are highly qualified and are always ready to handle the cleaning perfectly. Our chemical is 100% Pure. Automatic Ssd Solution for Sale +27833928661 Rustenburg, Mafikeng, Polokwane Durban/east London, Pretoria, Johannesburg, Mpumalanga. Ssd chemical Solution for Sale in Johannesburg  +27833928661 in Zimbabwe, Mozambique, Angola, Namibia, Botswana, Lesotho and Swaziland Call and Buy Ssd Chemical Solution for Defaced Banknotes +27833928661 in Mozambique, South Africa, Lesotho, Swaziland, Namibia, Angola, Botswana, Mauritius, Zambia, Zimbabwe, Mauritania, Mauritius, Congo Call For 100% Pure Ssd Chemical Solution +27833928661 in Finland and USA.   Ssd Chemical Solution for all Defaced Bank Notes in Bloemfontein +27833928661 in Johannesburg, Cape town, Polokwane, Rustenburg, Kimberley, Durban, Pietermaritzburg, Klerksdorp, Mafikeng, Belgium, Honduras, Brazil, Argentina.  +27833928661 We are Specialized in Chemistry for anti-breeze Bank Notes. We also do Chemicals Melting and Recovering of all type of bad money from black to white Call +27833928661. We also sale chemicals like tourmaline,  +27833928661 Ssd Chemical solution and many other activation powder. About Ssd Solution for cleaning black money chemical and allied product incorporated is a major manufacturer of industrial and pharmaceutical products with key specialization in the production of ssd automatic solution used in the cleaning of black money and defaced money and stained bank notes with anti -breeze quality. The ssd solution in it's full range is the best chemical in the market for cleaning anti breeze bank notes, defaced currency and marked notes. Others for damaged notes. +27833928661 Please inform us immediately on Email: Kennroger77@gmail.com or Call: +27833928661. https://Kennroger7.Blogspot.com/website https://Kennroger7.Blogspot.com/techniciankenn https://Kennroger7.blogspot.com/
    • @ (3 IN 1, WORKING 100%) SSD CHEMICAL SOLUTIONS +27833928661 AND ACTIVATION POWDER FOR CLEANING OF BLACK NOTES @BUY SSD CHEMICAL SOLUTIONS ON GOOD PRICE +27833928661, +27833928661 @ CLEANING BLACK NOTES WITH SSD CHEMICALUTUTIONS @BEST SUPPLIERS OF SSD CHEMICAL SOLUTIONS +27833928661 IN Qatar, New York, Limpopo, London, Venezuela, Chile, Sweden, Denmark, Rwanda, Oman ,, Dubai, Poland New Castle, Namibia, Botswana, Mozambique, South Africa, Limpo¬po, JORDAN, Turkey, Belgium, Saudi Arabia, Australia, Malaysia, to Johannesbu Zambia, Swaziland, Madagascar, Zimbabwe, Lesotho, Uganda, rg, Lebanon, Berhrain USA, California, Dallas, England, German, Spain, Jamaica, Brazil, Germany, Austria, Vancouver, Denmark, Hong Kong, China ,, Pretoria, Durban, Australia, Wales, France, Cairo, Namibia, Botswana, China, Norway, Sweden, Capet own, Tanzania, Northern Cape, Canada ,, Soshanguve, Pietermaritzburg Pinetown, Vaal, Polokwane Pretoria Randburg Roodepoort Rustenburg Sebokeng Soweto Springbok Stellenbosch Thohoyandou Umlazi Upington Vanderbijlpark Vereeniging Welkom Tembisa Kempton Park Port Elizabeth Bellville Boksburg Benoni Bloemfontein Cape Town Centurion Durban East London George Empangeni Katlehong Germiston Johannesburg Port Elizabeth Khayelitsha Kimberley Klerksdorp Mamelodi Mitchells Plain Mthatha Nelspruit Newcastle Witbank Eastern cape, Free State Gauteng KwaZulu-Natal Limpopo Mpumalanga Do you have black currency in form of Dollars, Pounds or Euros or any other currency? I have the most powerful and Universal cleaning chemical you are looking for. I sell SSD automatic solution, Vetrol paste 0.2A and so many others. I also have a variety of Powders needed when doing the large cleanings such as Activation powder. We specialize in cleaning all types of defaced notes, black notes, anti-breeze bank notes, stamp coated and stained currency. We melt and re-activate frozen chemicals and offer 100% cleaning for bills like dollar, euro, pounds, RANDS and transferring of colors from used note to new white bills. We offer machines for large cleaning and also deliver products to any location desired by buyers. Laboratory staff are available to demonstrate to clients how the work is done. Are you looking for: — call+27833928661 SSD Chemical Solution Chemical Solution for Cleaning Black Money call+27833928661 SSD Chemical Company SSD Chemical Solution for Cleaning Black Money SSD Preserving Company SSD Chemical Solution for Cleaning Black Money Activation Powder SSD Chemical Solution for Cleaning Black notes Active Powder Activation Powder for Cleaning Black Notes Black Money Cleaning Clean Black Money Best SSD Solution Clean Black Notes Cleaning Black Notes Cleaning Black Money PLEASE NOTE: WE ONLY DEAL IN HIGH QUALITY SSD CHEMICALS SOLUTION FOR CLEANING BLACK MONEY We are manufacturers and sellers of all sort of chemicals like SUPER AUTOMATIC SSD SOLUTION ZWV8 MODEL ACTIVATION POWDER AND REACTIVATION POWDER, ANTI AIR POWDER, MERCURY POWDER, AUTOMATED MONEY DEVELOPER MACHINES CONGEAL CHEMICAL MELTING EQUIPMENT, TEMPERATURE CONTROLLERS AND AUTOMATIC CLEANING MACHINE. WE ARE SELLING SSD CHEMICAL SOLUTION FOR CLEANING BLACK MONEY AND POWDER CALL+27833928661 purchase Best SSD Solution Clean Black Notes Dollars WE ALSO SELL CHEMICALS LIKE SSD AUTOMATIC SOLUTION FORM CLEANING BLACK DOLLARS CURRENCIES We clean all black and green money and stamped money Infinity labs pty (since 2000) *: We can help you clean your money, (+27833928661) *, we supply a high quality of the ssd solution with machi * ne and it comes with a full package of instructions and accessories. It is the ultimate anti- * breeze solution used in cleaning defaced currency. It can be referred to as black dollar etc… *. or bank stained currency. PRODUCTS AVAILABLE: * SSD SOLUTION SSD Supreme Solution SSD universal solution SSD Tourmaline solution SSD SOLUTION PK 58 SSD Topix solution SSD Castro X Oxide solution D6 SSD universal Solution D7 SSD SOLUTION PK 58 SSD MECURY DIOSINE AUTOMATIC SOLUTION SSD NSERVATION, ACTIVATION AND RE-ACTIVATION, PARACIENT POWDER, VECTROL PASTE, ZUTA S4, CASTROX OXIDE AUTOMATED MONEY DEVELOPER MACHINES CONGEAL CHEMICAL MELTING EQUIPMENTS * TEMPERATURE CONTROLLERS Our agent will meet with you in any part of the world. CALL OR WATSUPP US @+27833928661 Email: Kennroger77@gmail.com
    • World’s Best Technician for Supplying Universal Ssd Chemical Solution in Limpopo,Sasolburg,Witbank,Standarton,Secunda,Middelburg,Vanderbijlpark,Johannesburg,Secunda,Cape Town,Burgersfort, Polokwane, Thohoyandou, phalaborwa, mokopane, bochum, +27833928661lebowakgomo, mankweng, Seshego, dendron, Giyani, Lephalale, musina,Alexandra +27833928661Johannesburg Lenasia Midrand Randburg+27833928661 Roodepoort Sandton Soweto Alberton Germiston Benoni Boksburg ,rakpan Daveyton,Duduza ,edenvale ,germiston Impumelelo Isando Katlehong Kempton Park KwaThema Nigel Reiger Park Springs Tembisa Thokoza Tsakane Vosloorus Wattville Atteridgaeville Centurion Hammanskraal Irene Mamelodi Pretoria Soshanguve Boipatong Bophelong Evaton Sebokeng Sharpeville, Vereeniging,Meyerton Heidelberg Ratanda Bronkhorstspruit Ekangala Kungwini Bronberg,Cullinan Refilwe,Zithobeni ,Carletonville,Khutsong Kagiso Kromdraai KrugersdorpMagaliesburg Muldersdrift Mohlaken,Randfontein Bekkersdal,testonaria Kimberley Upington Kuruman Sprinbok Kathu Ritchie Postmasburg,Bellville Bloemfontein.+27833928661 To purchase Best SSD Chemical Solution to Clean Black Notes Dollars.WE ALSO SALE +27833928661CHEMICALS LIKE SSD AUTOMATIC SOLUTION FORM CLEANING BLACK DOLLARS CURRENCIES. I hereby use this media to inform you, that our company can clean out black deface currency, (stained money) bank notes, We have all kinds of chemicals used for cleaning of black money or stained money in currencies such as U.S Dollars, Euro, Pound, and all local currencies, even if your defaced note is 25 years old. WE SALE CHEMICALS LIKE TOURMALINE, S.S.D. Chemical / Solution , CASTRO X OXIDE, A4 AND MANY Like ACTIVATION POWDER & SSD SOLUTION FOR CLEANING BLACK MONEY Chemical and Allied product incorporated is a major manufacturer of industrial and pharmaceutical products with key specialization in the production of S.S.D Automatic solution used in the cleaning of black money , defaced money and stained bank notes with anti-breeze quality. OTHERS FOR DAMAGED NOTES, BILLS LIKE USD,EURO, POUNDS, Contact Dr.Elvis+27833928661 OR Email Kennroger77@gmail.com for more Information…Chemical Solution in Limpopo,Sasolburg,Witbank,Standarton,Secunda,Middelburg,Vanderbijlpark,Johannesburg,Secunda,Cape Town,Burgersfort, Polokwane, Thohoyandou, phalaborwa, mokopane, bochum, lebowakgomo, mankweng, Seshego, dendron, Giyani, Lephalale, musina,Alexandra Johannesburg Lenasia Midrand Randburg Roodepoort Sandton Soweto Alberton Germiston Benoni Boksburg ,rakpan Daveyton,Duduza ,edenvale ,germiston Impumelelo Isando Katlehong Kempton Park KwaThema Nigel Reiger Park Springs Tembisa Thokoza Tsakane Vosloorus Wattville Atteridgaeville Centurion Hammanskraal Irene Mamelodi Pretoria Soshanguve Boipatong Bophelong Evaton Sebokeng Sharpeville, Vereeniging,Meyerton Heidelberg Ratanda Bronkhorstspruit Ekangala Kungwini Bronberg,Cullinan Refilwe,Zithobeni ,Carletonville,Khutsong Kagiso Kromdraai KrugersdorpMagaliesburg Muldersdrift Mohlaken,Randfontein Bekkersdal,testonaria Kimberley Upington Kuruman Sprinbok Kathu Ritchie Postmasburg,Bellville Bloemfontein. To purchase Best SSD Chemical Solution to Clean Black Notes Dollars.WE ALSO SALE CHEMICALS LIKE SSD AUTOMATIC SOLUTION FORM CLEANING BLACK DOLLARS CURRENCIES. I hereby use this media to inform you, that our company can clean out black deface currency, (stained money) bank notes, We have all kinds of chemicals used for cleaning of black money or stained money in currencies such as U.S Dollars, Euro, Pound, and all local currencies, even if your defaced note is 25 years old. WE SALE CHEMICALS LIKE TOURMALINE, S.S.D. Chemical / Solution , CASTRO X OXIDE, A4 AND MANY Like ACTIVATION POWDER & SSD SOLUTION FOR CLEANING BLACK MONEY Chemical and Allied product incorporated is a major manufacturer of industrial and pharmaceutical products with key specialization in the production of S.S.D Automatic solution used in the cleaning of black money , defaced money and stained bank notes with anti-breeze quality. OTHERS FOR DAMAGED NOTES, BILLS LIKE USD,EURO, POUNDS, Contact Dr.Elvis+27833928661 OR Email Kennroger77@gmail.com for more Information… in Limpopo,Sasolburg,Witbank,Standarton,Secunda,Middelburg,Vanderbijlpark,Johannesburg,Secunda,Cape Town,Burgersfort, Polokwane, Thohoyandou, phalaborwa, mokopane, bochum, lebowakgomo, mankweng, Seshego, dendron, Giyani, Lephalale, musina,Alexandra Johannesburg Lenasia Midrand Randburg Roodepoort Sandton Soweto Alberton Germiston Benoni Boksburg ,rakpan Daveyton,Duduza ,edenvale ,germiston Impumelelo Isando Katlehong Kempton Park KwaThema Nigel Reiger Park Springs Tembisa Thokoza Tsakane Vosloorus Wattville Atteridgaeville Centurion Hammanskraal Irene Mamelodi Pretoria Soshanguve Boipatong Bophelong Evaton Sebokeng Sharpeville, Vereeniging,Meyerton Heidelberg Ratanda Bronkhorstspruit Ekangala Kungwini Bronberg,Cullinan Refilwe,Zithobeni ,Carletonville,Khutsong Kagiso Kromdraai KrugersdorpMagaliesburg Muldersdrift Mohlaken,Randfontein +27833928661Bekkersdal,testonaria Kimberley Upington Kuruman Sprinbok Kathu Ritchie Postmasburg,Bellville Bloemfontein.+27833928661 To purchase Best SSD Chemical Solution to Clean Black Notes Dollars.WE ALSO SALE CHEMICALS LIKE SSD AUTOMATIC SOLUTION FORM CLEANING BLACK DOLLARS CURRENCIES. I hereby use this media to inform you, that our company can clean out black deface currency, +27833928661(stained money) bank notes, We have all kinds of chemicals used for cleaning of black money or stained money in currencies such as U.S Dollars, Euro, Pound, and all local currencies, even if your defaced note is 25 years old.+27833928661 WE SALE CHEMICALS LIKE TOURMALINE, S.S.D. Chemical / Solution , CASTRO X OXIDE, A4 AND MANY Like ACTIVATION POWDER & SSD SOLUTION FOR CLEANING BLACK MONEY Chemical and Allied product incorporated is a major manufacturer of industrial and pharmaceutical products with key specialization in the production of S.S.D Automatic solution used in the cleaning of black money , defaced money and stained bank notes with anti-breeze quality. OTHERS FOR DAMAGED NOTES, BILLS LIKE USD,EURO, POUNDS,+27833928661 Contact Dr.Elvis +27833928661 OR Email Kennroger77@gmail.com for more Information…
    • Cleaning black money +27833928661 with ssd chemical solution  +27 833928661  vanderbijlpark- nairobi, East London Tembisa ,Cape Town Durban Johannesburg Soweto Pretoria Port Elizabeth Pietermaritzburg Benoni Vereeniging Bloemfontein Boksburg Welkom Newcastle Krugersdorp Diepsloot Botshabelo Brakpan Witbank Richards Bay Vanderbijlpark Centurion Uitenhage Roodepoort Paarl Springs Carletonville Klerksdorp Midrand Westonaria Middelburg Vryheid Orkney Kimberley eMbalenhle Nigel Mpumalanga Bhisho Randfontein DR MBONYE has powerful lottery spells to help you win the lottery jackpot and make you rich beyond your wildest dreams I have used lottery spells and won in my personal capacity.Money Spells to eradicat Change your life For information CONTACTWhatsapp +27 833928661 EMAIL: kennrogger77@gmail.com cleaning black money with ssd chemical solution in Uganda,South sudan,Kemya,South Africa,Dubai,UAE,Kuwait,Tanzanai +27 833928661 Our vision to be the leading premier high-value and high security chemicals producer in the world and offering our services to everyone who knocks at our door step. SSD CHEMICAL SOLUTIONS LTD is uniquely positioned to consistently provide high-value solutions and world-changing chemicals and services to our clients. +27 833928661 WE ARE SPECIALIZED IN CHEMISTRY FOR ANTI-BREEZE BANK NOTES. WE ALSO DO CHEMICALS MELTING AND RECOVERING OF ALL TYPE OF BAD MONEY FROM BLACK TO WHITE AS YOU CAN SEE BELOW. Anti-freezing Preparations and Prepared De-icing Fluids, SSD Solution. Vectrol paste, Tebi-Manetic solution, Defaced currency, Cleaning chemical. Darkened currency, Black coated notes, Cleaning black money, super automatic SSD solution, anti-breeze bank notes. please contact Linda for more information on +27 833928661
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock