Jump to content

Vote System Help! Not Working On Topzone After New Changes!


Recommended Posts

package com.l2jserver.gameserver.instancemanager.vote;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.text.SimpleDateFormat;
import java.util.Date;

import com.l2jserver.Config;
import com.l2jserver.L2DatabaseFactory;
import com.l2jserver.gameserver.ThreadPoolManager;
import com.l2jserver.gameserver.model.L2World;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.taskmanager.tasks.TaskMonthlyResetTask;
import com.l2jserver.gameserver.taskmanager.tasks.TaskTriesResetTask;

public class VoteMain
{
    private static boolean hasVotedHop;
    private static boolean hasVotedTop;
    
    public VoteMain()
    {
    }
    
    public static void load()
    {
        System.out.println("Vote Individual Reward System Started Successfully.");
        TaskTriesResetTask.getInstance();
        TaskMonthlyResetTask.getInstance();
    }
    
    protected 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(Config.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)
        {
            e.printStackTrace();
        }
        return votes;
    }
    
    protected 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(Config.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;
                    String votesLine = inputLine;// Author: chemanue fix
                    // votes = Integer.valueOf(votesLine.split(">")[3].replace("</div", ""));
                    votes = Integer.valueOf(votesLine.split(">")[3].replace("</div", ""));// Author: chemanue fix
                    // http://l2jpsproject.eu/forum/index.php?topic=1009.0
                    break;
                }
            }
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        return votes;
    }
    
    public static String hopCd(L2PcInstance player)
    {
        long hopCdMs = 0;
        long voteDelay = 43200000L;
        PreparedStatement statement = null;
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            statement = con.prepareStatement("SELECT lastVoteHopzone FROM characters WHERE charId=?");
            statement.setInt(1, player.getObjectId());
            
            ResultSet rset = statement.executeQuery();
            
            while (rset.next())
            {
                hopCdMs = rset.getLong("lastVoteHopzone");
            }
        }
        catch (Exception e)
        {
        }
        SimpleDateFormat sdf = new SimpleDateFormat("MMM dd,yyyy HH:mm");
        
        Date resultdate = new Date(hopCdMs + voteDelay);
        return sdf.format(resultdate);
    }
    
    public static String topCd(L2PcInstance player)
    {
        long topCdMs = 0;
        long voteDelay = 43200000L;
        PreparedStatement statement = null;
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            statement = con.prepareStatement("SELECT lastVoteTopzone FROM characters WHERE charId=?");
            statement.setInt(1, player.getObjectId());
            
            ResultSet rset = statement.executeQuery();
            
            while (rset.next())
            {
                topCdMs = rset.getLong("lastVoteTopzone");
            }
        }
        catch (Exception e)
        {
        }
        SimpleDateFormat sdf = new SimpleDateFormat("MMM dd,yyyy HH:mm");
        
        Date resultdate = new Date(topCdMs + voteDelay);
        return sdf.format(resultdate);
    }
    
    public static String whosVoting()
    {
        for (L2PcInstance voter : L2World.getInstance().getAllPlayersArray())
        {
            if (voter.isVoting())
            {
                return voter.getName();
            }
        }
        return "Yes";
    }
    
    public static void hopvote(final L2PcInstance player)
    {
        long lastVoteHopzone = 0L;
        long voteDelay = 43200000L;
        final int firstvoteshop;
        
        firstvoteshop = getHopZoneVotes();
        
        class hopvotetask implements Runnable
        {
            private final L2PcInstance p;
            
            public hopvotetask(L2PcInstance player)
            {
                p = player;
            }
            
            @Override
            public void run()
            {
                if (firstvoteshop < getHopZoneVotes())
                {
                    p.setIsVoting(false);
                    VoteMain.setHasVotedHop(player);
                    p.sendMessage("Thank you for voting for us!");
                    VoteMain.updateLastVoteHopzone(p);
                    VoteMain.updateVotes(p);
                }
                else
                {
                    p.setIsVoting(false);
                    p.sendMessage("You did not vote.Please try again.");
                    VoteMain.setTries(player, VoteMain.getTries(p) - 1);
                }
            }
            
        }
        
        PreparedStatement statement = null;
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            statement = con.prepareStatement("SELECT lastVoteHopzone FROM characters WHERE charId=?");
            statement.setInt(1, player.getObjectId());
            
            ResultSet rset = statement.executeQuery();
            
            while (rset.next())
            {
                lastVoteHopzone = rset.getLong("lastVoteHopzone");
            }
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        
        if (getTries(player) <= 0)
        {
            player.sendMessage("Due to your multiple failures in voting you lost your chance to vote today");
        }
        else if (((lastVoteHopzone + voteDelay) < System.currentTimeMillis()) && (getTries(player) > 0))
        {
            for (L2PcInstance j : L2World.getInstance().getAllPlayersArray())
            {
                if (j.isVoting())
                {
                    player.sendMessage("Someone is already voting.Wait for your turn please!");
                    return;
                }
            }
            
            player.setIsVoting(true);
            player.sendMessage("Go fast on the site and vote on the hopzone banner!");
            player.sendMessage("You have " + Config.SECS_TO_VOTE + " seconds.Hurry!");
            ThreadPoolManager.getInstance().scheduleGeneral(new hopvotetask(player), Config.SECS_TO_VOTE * 1000);
        }
        else if ((getTries(player) <= 0) && ((lastVoteHopzone + voteDelay) < System.currentTimeMillis()))
        {
            for (L2PcInstance j : L2World.getInstance().getAllPlayersArray())
            {
                if (j.isVoting())
                {
                    player.sendMessage("Someone is already voting.Wait for your turn please!");
                    return;
                }
            }
            
            player.setIsVoting(true);
            player.sendMessage("Go fast on the site and vote on the hopzone banner!");
            player.sendMessage("You have " + Config.SECS_TO_VOTE + " seconds.Hurry!");
            ThreadPoolManager.getInstance().scheduleGeneral(new hopvotetask(player), Config.SECS_TO_VOTE * 1000);
            
        }
        else
        {
            player.sendMessage("12 hours have to pass till you are able to vote again.");
        }
        
    }
    
    public static void topvote(final L2PcInstance player)
    {
        long lastVoteTopzone = 0L;
        long voteDelay = 43200000L;
        final int firstvotestop;
        
        firstvotestop = getTopZoneVotes();
        
        class topvotetask implements Runnable
        {
            private final L2PcInstance p;
            
            public topvotetask(L2PcInstance player)
            {
                p = player;
            }
            
            @Override
            public void run()
            {
                if (firstvotestop < getTopZoneVotes())
                {
                    p.setIsVoting(false);
                    VoteMain.setHasVotedTop(p);
                    p.sendMessage("Thank you for voting for us!");
                    VoteMain.updateLastVoteTopzone(p);
                    VoteMain.updateVotes(p);
                }
                else
                {
                    p.setIsVoting(false);
                    p.sendMessage("You did not vote.Please try again.");
                    VoteMain.setTries(p, VoteMain.getTries(p) - 1);
                }
            }
            
        }
        
        PreparedStatement statement = null;
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            statement = con.prepareStatement("SELECT lastVoteTopzone FROM characters WHERE charId=?");
            statement.setInt(1, player.getObjectId());
            
            ResultSet rset = statement.executeQuery();
            
            while (rset.next())
            {
                lastVoteTopzone = rset.getLong("lastVoteTopzone");
            }
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        
        if (getTries(player) <= 0)
        {
            player.sendMessage("Due to your multiple failures in voting you lost your chance to vote today");
        }
        else if ((getTries(player) <= 0) && ((lastVoteTopzone + voteDelay) < System.currentTimeMillis()))
        {
            for (L2PcInstance j : L2World.getInstance().getAllPlayersArray())
            {
                if (j.isVoting())
                {
                    player.sendMessage("Someone is already voting.Wait for your turn please!");
                    return;
                }
            }
            player.setIsVoting(true);
            player.sendMessage("Go fast on the site and vote on the topzone banner!");
            player.sendMessage((new StringBuilder()).append("You have ").append(Config.SECS_TO_VOTE).append(" seconds.Hurry!").toString());
            ThreadPoolManager.getInstance().scheduleGeneral(new topvotetask(player), Config.SECS_TO_VOTE * 1000);
        }
        else if (((lastVoteTopzone + voteDelay) < System.currentTimeMillis()) && (getTries(player) > 0))
        {
            for (L2PcInstance j : L2World.getInstance().getAllPlayersArray())
            {
                if (j.isVoting())
                {
                    player.sendMessage("Someone is already voting.Wait for your turn please!");
                    return;
                }
            }
            player.setIsVoting(true);
            player.sendMessage("Go fast on the site and vote on the topzone banner!");
            player.sendMessage((new StringBuilder()).append("You have ").append(Config.SECS_TO_VOTE).append(" seconds.Hurry!").toString());
            ThreadPoolManager.getInstance().scheduleGeneral(new topvotetask(player), Config.SECS_TO_VOTE * 1000);
        }
        else
        {
            player.sendMessage("12 hours have to pass till you are able to vote again.");
        }
        
    }
    
    public static void hasVotedHop(L2PcInstance player)
    {
        int hasVotedHop = -1;
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            PreparedStatement statement = con.prepareStatement("SELECT hasVotedHop FROM characters WHERE charId=?");
            statement.setInt(1, player.getObjectId());
            
            ResultSet rset = statement.executeQuery();
            
            while (rset.next())
            {
                hasVotedHop = rset.getInt("hasVotedHop");
            }
            
            if (hasVotedHop == 1)
            {
                setHasVotedHop(true);
            }
            else if (hasVotedHop == 0)
            {
                setHasVotedHop(false);
            }
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
    
    public static void hasVotedTop(L2PcInstance player)
    {
        int hasVotedTop = -1;
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            PreparedStatement statement = con.prepareStatement("SELECT hasVotedTop FROM characters WHERE charId=?");
            statement.setInt(1, player.getObjectId());
            
            ResultSet rset = statement.executeQuery();
            
            while (rset.next())
            {
                hasVotedTop = rset.getInt("hasVotedTop");
            }
            
            if (hasVotedTop == 1)
            {
                setHasVotedTop(true);
            }
            else if (hasVotedTop == 0)
            {
                setHasVotedTop(false);
            }
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
    
    public static void updateVotes(L2PcInstance activeChar)
    {
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            PreparedStatement statement = con.prepareStatement("UPDATE characters SET monthVotes=?, totalVotes=? WHERE charId=?");
            
            statement.setInt(1, getMonthVotes(activeChar) + 1);
            statement.setInt(2, getTotalVotes(activeChar) + 1);
            statement.setInt(3, activeChar.getObjectId());
            statement.execute();
            statement.close();
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
    
    public static void setHasVotedHop(L2PcInstance activeChar)
    {
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            PreparedStatement statement = con.prepareStatement("UPDATE characters SET hasVotedHop=? WHERE charId=?");
            
            statement.setInt(1, 1);
            statement.setInt(2, activeChar.getObjectId());
            statement.execute();
            statement.close();
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
    
    public static void setHasVotedTop(L2PcInstance activeChar)
    {
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            PreparedStatement statement = con.prepareStatement("UPDATE characters SET hasVotedTop=? WHERE charId=?");
            
            statement.setInt(1, 1);
            statement.setInt(2, activeChar.getObjectId());
            statement.execute();
            statement.close();
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
    
    public static void setHasNotVotedHop(L2PcInstance activeChar)
    {
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            PreparedStatement statement = con.prepareStatement("UPDATE characters SET hasVotedHop=? WHERE charId=?");
            
            statement.setInt(1, 0);
            statement.setInt(2, activeChar.getObjectId());
            statement.execute();
            statement.close();
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
    
    public static void setHasNotVotedTop(L2PcInstance activeChar)
    {
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            PreparedStatement statement = con.prepareStatement("UPDATE characters SET hasVotedTop=? WHERE charId=?");
            
            statement.setInt(1, 0);
            statement.setInt(2, activeChar.getObjectId());
            statement.execute();
            statement.close();
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
    
    public static int getTries(L2PcInstance player)
    {
        int tries = -1;
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            PreparedStatement statement = con.prepareStatement("SELECT tries FROM characters WHERE charId=?");
            statement.setInt(1, player.getObjectId());
            for (ResultSet rset = statement.executeQuery(); rset.next();)
            {
                tries = rset.getInt("tries");
            }
            
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        return tries;
    }
    
    public static void setTries(L2PcInstance player, int tries)
    {
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            PreparedStatement statement = con.prepareStatement("UPDATE characters SET tries=? WHERE charId=?");
            
            statement.setInt(1, tries);
            statement.setInt(2, player.getObjectId());
            statement.execute();
            statement.close();
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
    
    public static int getMonthVotes(L2PcInstance player)
    {
        int monthVotes = -1;
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            PreparedStatement statement = con.prepareStatement("SELECT monthVotes FROM characters WHERE charId=?");
            
            statement.setInt(1, player.getObjectId());
            for (ResultSet rset = statement.executeQuery(); rset.next();)
            {
                monthVotes = rset.getInt("monthVotes");
            }
            
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        return monthVotes;
    }
    
    public static int getTotalVotes(L2PcInstance player)
    {
        int totalVotes = -1;
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            PreparedStatement statement = con.prepareStatement("SELECT totalVotes FROM characters WHERE charId=?");
            
            statement.setInt(1, player.getObjectId());
            for (ResultSet rset = statement.executeQuery(); rset.next();)
            {
                totalVotes = rset.getInt("totalVotes");
            }
            
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        return totalVotes;
    }
    
    public static int getBigTotalVotes(L2PcInstance player)
    {
        int bigTotalVotes = -1;
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            PreparedStatement statement = con.prepareStatement("SELECT SUM(totalVotes) FROM characters");
            
            for (ResultSet rset = statement.executeQuery(); rset.next();)
            {
                bigTotalVotes = rset.getInt("SUM(totalVotes)");
            }
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        return bigTotalVotes;
    }
    
    public static int getBigMonthVotes(L2PcInstance player)
    {
        int bigMonthVotes = -1;
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            PreparedStatement statement = con.prepareStatement("SELECT SUM(monthVotes) FROM characters");
            
            for (ResultSet rset = statement.executeQuery(); rset.next();)
            {
                bigMonthVotes = rset.getInt("SUM(monthVotes)");
            }
            
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        return bigMonthVotes;
    }
    
    public static void updateLastVoteHopzone(L2PcInstance player)
    {
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            PreparedStatement statement = con.prepareStatement("UPDATE characters SET lastVoteHopzone=? WHERE charId=?");
            statement.setLong(1, System.currentTimeMillis());
            statement.setInt(2, player.getObjectId());
            statement.execute();
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
    
    public static void updateLastVoteTopzone(L2PcInstance player)
    {
        try (Connection con = L2DatabaseFactory.getInstance().getConnection())
        {
            PreparedStatement statement = con.prepareStatement("UPDATE characters SET lastVoteTopzone=? WHERE charId=?");
            statement.setLong(1, System.currentTimeMillis());
            statement.setInt(2, player.getObjectId());
            statement.execute();
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }
    
    public static boolean hasVotedHop()
    {
        return hasVotedHop;
    }
    
    public static void setHasVotedHop(boolean hasVotedHop)
    {
        VoteMain.hasVotedHop = hasVotedHop;
    }
    
    public static boolean hasVotedTop()
    {
        return hasVotedTop;
    }
    
    public static void setHasVotedTop(boolean hasVotedTop)
    {
        VoteMain.hasVotedTop = hasVotedTop;
    }
}

Link to comment
Share on other sites

Gods, use fcking [ code ] tag...

 

Make the topzone method like that

        try
        {
            URL url = new URL(Config.VOTE_LINK_TOPZONE);
            URLConnection 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;
                }
            }
        }
Edited by SweeTs
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


  • Posts

    • 2 Factor Authentication Code for 100% secure login. Account provided with full information (email, password, dob, gender, etc).
    • ready server for sale, also available for testing with ready and beautiful npc zone pvp with custom 2 epic core orfen lvl2 with all maps ready all quests work at 100% ready comm  board with buffer teleport gm shop service anyone interested send me a pm many more that I forget  Exp/Sp : x30 (Premium: x40)    Adena : x7 (Premium: x10)   Drop : x7 (Premium: 10)   Spoil : x7 (Premium: 10)   Seal Stones : x7 (Premium: 10)   Raid Boss EXP/SP : x10   Raid Boss Drop : x3 (Premium: x5)   Epic Boss Drop : x1 Enchants   Safe Enchant : +3   Max Enchant : +16   Normal Scroll of Enchant Chance : 55%   Blessed Scroll of Enchant Chance : 60% Game Features   GMShop (Max. B-Grade)   Mana Potions (1000 MP, 10 sec Cooldown)   NPC Buffer (Include all buffs, 2h duration)   Auto-learn skills (Except Divine Inspiration)   Global Gatekeeper   Skill Escape: 15 seconds or /unstuck   1st Class Transfer (Free)   2nd Class Transfer (Free)   3rd Class Transfer (700 halisha mark)   Subclass (Items required from Cabrio / Hallate / Kernon / Golkonda + Top B Weapon + 984 Cry B)   Subclass 5 Subclasses + Main (Previous subclasses to level 75 to add new one)   Noblesse (Full Retail Quest)   Buff Slots: 24 (28 with Divine Inspiration LVL 4)   Skill Sweeper Festival added (Scavenger level 36)   Skill Block Buff added   Maximum delevel to keep Skills: 10 Levels   Shift + Click to see Droplist   Global Shout & Trade Chat   Retail Geodata and Pathnodes   Seven Signs Retail   Merchant and Blacksmith of Mammon at towns   Dimensional Rift (Min. 3 people in party to enter - Instance)   Tyrannosaurus drop Top LS with fixed 50% chance   Fast Augmentation System (Using Life Stones from Inventory)   Chance of getting skills (Normal 1%, Mid 3%, High 5%, Top 10%)   Wedding System with 30 seconds teleport to husband/wife Olympiad & Siege   Olympiad circle 14 days. (Maximum Enchant +6)   Olympiads time 18:00 - 00:00 (GMT +3)   Non-class 5 minimum participants to begin   Class based disabled   Siege every week.   To gain the reward you need to keep the Castle 2 times. Clans, Alliances & Limits   Max Clients/PC: 2   Max Clan Members: 36   Alliances allowed (Max 1 Clans)   24H Clan Penalties   Alliance penalty reset at daily restart (3-5 AM)   To bid for a Clan Hall required Clan Level 6 Quests x3   Alliance with the Ketra Orcs   Alliance with the Varka Silenos   War with Ketra Orcs   War with the Varka Silenos   The Finest Food   A Powerful Primeval Creature   Legacy of Insolence   Exploration of Giants Cave Part 1   Exploration of Giants Cave Part 2   Seekers of the Holy Grail   Guardians of the Holy Grail   Hunt of the Golden Ram Mercenary Force   The Zero Hour   Delicious Top Choice Meat   Heart in Search of Power   Rise and Fall of the Elroki Tribe   Yoke of the Past     Renegade Boss (Monday to Friday 20:00)   All Raid Boss 18+1 hours random respawn   Core (Jewel +1 STR +1 DEX) Monday, Wednesday and Friday 20:00 - 21:00 (Maximum level allowed to enter Cruma Tower: 80)   Orfen (Jewel +1 INT +1 WIT) Monday to Friday, 20:00 - 21:00 (Maximum level allowed to enter Sea of Spores: 80)   Ant Queen Monday and Friday 21:00 - 22:00 (Maximum level allowed to enter Ant Nest: 80)   Zaken Monday,Wednesday,Friday 22:00 - 23:00 (Maximum level allowed to enter Devil's Isle: 80)   Frintezza Tuesday, Thursday and Sunday 22:00 – 23:00 (Need CC of 4 party and 7 people in each party min to join the lair, max is 8 party of 9 people each)   Baium (lvl80) Saturday 22:00 – 23:00   Antharas Every 2 Saturdays 22:00 - 23:00 Every 2 Sundays (alternating with Valakas) 22:00 – 23:00   Valakas Every 2 Saturdays 22:00 - 23:00 Every 2 Sundays (alternating with Antharas) 22:00 – 23:00   Subclass Raids (Cabrio, Kernon, Hallate, Golkonda) 18hours + 1 random   Noblesse Raid (Barakiel) 6 hours + 15min random   Varka’s Hero Shadith 8 hours + 30 mins random (4th lvl of alliance with Ketra)   Ketra’s Hero Hekaton 8 hours + 30 mins random (4th lvl of alliance with Varka)   Varka’s Commander Mos 8 hours + 30 mins random (5th lvl of alliance with Ketra)   Ketra’s Commander Tayr 8 hours + 30 mins random (5th lvl of alliance with Varka)
    • Have a great day! Unfortunately, we can not give you the codes at the moment, but they will be distributed as soon as trial is back online, thanks for understanding! Other users also can reply there for codes, we will send them out some time after.
    • Ok mates i would like to play a pridestyle server (interluide, gracie w/ever) Is there any such server online and worth playing?
  • 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