Jump to content

Recommended Posts

Posted

Ok guys lets say some things about that topic http://maxcheaters.com/forum/index.php?topic=239078.msg2160044;topicseen#msg2160044

fofas is leacher that casino is coded by Ovenus if any one know him so take the code...

 

first html's create 1 folder with name in \data\html\casino

 

1 html) "name of that html casino.htm"

<html><title>%npcname%</title>
<body><font color="FF0000">Double Or Nothing</font><br>
<font color ="LEVEL">Hello! I am the Casino Manager of "Server Name"</font><br>
<font color ="LEVEL">You have to bet 20 Vote Rewards!!! You have</font> <font color="6655FF">50%</font> <font color ="LEVEL">Chance to Double and</font> <font color="6655FF">50%</font> <font color ="LEVEL">to loose them.</font><br>
<font color ="LEVEL">But if you are Lucky and you will win the</font> <font color="6655FF">Jackpot</font> <font color ="LEVEL">You will win a lot of Vote Reward Items.</font><br><br><br><br>
<center><font color="LEVEL">Play 20 Vote Reward's:</font>
<br><center><button value="20 Reward's" action="bypass -h npc_%objectId%_votereward" width=75 height=21 back="L2UI_ch3.Btn1_normalOn" fore="L2UI_ch3.Btn1_normal">
<font color="FF0000">Jackpot of Vote Reward's: %voterewardjackpot%</font></center><br>
<center><font color="LEVEL">Play 20 Farm Item:</font>
<br><center><button value="20 Farm Item" action="bypass -h npc_%objectId%_votereward" width=75 height=21 back="L2UI_ch3.Btn1_normalOn" fore="L2UI_ch3.Btn1_normal">
<font color="FF0000">Jackpot of Farm Item's: %farmjackpot%</font><br><br></center>
</body></html>

 

2 html) "name of that html casino-lowfarmitem.htm"

<html><title>Casino Manager:</title>
<body>Sorry but i want <font color="FF0000">20</font> Farm Item's, to let you to play.<br>
Come back when you will got them Good Luck Traveller.<br>
</body></html>

 

3 html) "name of that html casino-lowvoterewarditem.htm"

<html><title>Casino Manager:</title>
<body>Sorry but i want <font color="FF0000">20</font> Reward's Item's, to let you to play.<br>
Come back when you will got them Good Luck Traveller.<br>
</body></html>

 

package com.l2jprim.gameserver.model.actor.instance;

import com.l2jprim.Config;
import com.l2jprim.gameserver.ThreadPoolManager;
import com.l2jprim.gameserver.ai.CtrlIntention;
import com.l2jprim.gameserver.model.L2World;
import com.l2jprim.gameserver.model.actor.L2Npc;
import com.l2jprim.gameserver.network.clientpackets.Say2;
import com.l2jprim.gameserver.network.serverpackets.ActionFailed;
import com.l2jprim.gameserver.network.serverpackets.CreatureSay;
import com.l2jprim.gameserver.network.serverpackets.ExShowScreenMessage;
import com.l2jprim.gameserver.network.serverpackets.L2GameServerPacket;
import com.l2jprim.gameserver.network.serverpackets.MagicSkillUse;
import com.l2jprim.gameserver.network.serverpackets.NpcHtmlMessage;
import com.l2jprim.gameserver.network.serverpackets.SetupGauge;
import com.l2jprim.gameserver.network.serverpackets.SocialAction;
import com.l2jprim.gameserver.templates.actor.L2NpcTemplate;
import com.l2jprim.gameserver.util.Broadcast;
import com.l2jprim.gameserver.util.Rnd;

/**
* @author Ovenus
*/
public class L2CasinoInstance extends L2Npc
{
    protected int _ammount = 20;
    protected int _voterewardItemsJackpot = 0;
    protected int _farmItemsJackpot = 0;
    protected int _jacpot = 0;
public static final String CASINO_HTML_PATH = "data/html/casino/";

    public L2CasinoInstance(int objectId, L2NpcTemplate template)
    {
        super(objectId, template);
    }

    


@Override
public void showChatWindow(L2PcInstance player)
{
	player.sendPacket(ActionFailed.STATIC_PACKET);
	String filename = "data/html/casino/casino.htm";
	NpcHtmlMessage html = new NpcHtmlMessage(getObjectId());
	html.setFile(player.getHtmlPrefix(), filename);
	html.replace("%objectId%", String.valueOf(getObjectId()));
	html.replace("%npcname%", getName());
	html.replace("%jackpot%",String.valueOf(_jacpot));
	html.replace("%voterewardjackpot%",String.valueOf(_voterewardItemsJackpot));
	html.replace("%farmjackpot%",String.valueOf(_farmItemsJackpot));
	player.sendPacket(html);
}

@Override
public void onBypassFeedback(L2PcInstance player, String command)
{
	if (command.startsWith("votereward")) 
	{
		sendCasinoVoteReardChat("casino-playvotereward.htm",player);
		PlayCasinoVoteRewardItem(player,20);
		return;

	}
	else if (command.startsWith("farmitem")) 
	{
		sendCasinoVoteReardChat("casino-playvotereward.htm",player);
		PlayCasinoFarmItem(player,20);
		return;
	}
	super.onBypassFeedback(player,command);
}

public static void autoannounceToOnlinePlayers(String text)
{
		CreatureSay cs = new CreatureSay(0, Say2.CRITICAL_ANNOUNCE, "", text);
		toAllOnlinePlayers(cs);

}

public static void toAllOnlinePlayers(L2GameServerPacket mov)
{
	if (Config.DEBUG)
		_log.fine("Players to notify: " + L2World.getInstance().getAllPlayersCount() + " (with packet " + mov.getType() + ")");

	L2World.getInstance().forEachPlayer(new Broadcast.ForEachPlayerBroadcastPacket(mov));
}

public void announceToAll(String text)
{
	Broadcast.autoannounceToOnlinePlayers(text);
}

    public void displayCongrats(L2PcInstance player,int ammount)
    {
        player.broadcastPacket(new SocialAction(player, 3));
        MagicSkillUse  MSU = new MagicSkillUse(player, player, 2024, 1, 1, 0);
        player.broadcastPacket(MSU);
        ExShowScreenMessage screen = new ExShowScreenMessage("Congratulations "+player.getName()+"! You won!", 15000);
        player.sendMessage("Congratulations "+player.getName()+"! You won!");
        player.sendPacket(screen);
    }

    public void displayCongratsLostVoteRewardItem(L2PcInstance player,int ammount)
    {
        ExShowScreenMessage screen = new ExShowScreenMessage("Try next Time "+ player.getName() +", now you lost "+ _ammount +" of Vote Reward's!", 15000);
        player.sendPacket(screen);
    }
    
    public void displayCongratsLostFarmItem(L2PcInstance player,int ammount)
    {
        ExShowScreenMessage screen = new ExShowScreenMessage("Try next Time "+ player.getName() +", now you lost "+ _ammount +" of Farm Item's!", 15000);
        player.sendPacket(screen);
    }

    public void PlayCasinoFarmItem(L2PcInstance player,int ammount)
    {
       
    	if(player.getInventory().getInventoryItemCount(7217, 0) < 20)
        {
		sendCasinoFarmItemChat("casino-lowfarmitem.htm",player);
		return;
        }
    	int unstuckTimer = (1 * 1000);
        player.setTarget(player);
        player.getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
        player.disableAllSkills();
        MagicSkillUse msk = new MagicSkillUse(player, 361, 1, unstuckTimer, 0);
        Broadcast.toSelfAndKnownPlayersInRadius(player, msk, 810000);
        SetupGauge sg = new SetupGauge(0, unstuckTimer);
        player.sendPacket(sg);
        CasinoFarmItem ef = new CasinoFarmItem(player,20);
        player.setSkillCast(ThreadPoolManager.getInstance().scheduleGeneral(ef, unstuckTimer));
    }
    
    public void PlayCasinoVoteRewardItem(L2PcInstance player,int ammount)
    {
    	if(player.getInventory().getInventoryItemCount(7542, 0) < 20)
        {
		sendCasinoVoteReardChat("casino-lowvoterewarditem.htm",player);
		return;
        }
    	int unstuckTimer = (1 * 1000);
        player.setTarget(player);
        player.getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
        player.disableAllSkills();
        MagicSkillUse msk = new MagicSkillUse(player, 361, 1, unstuckTimer, 0);
        Broadcast.toSelfAndKnownPlayersInRadius(player, msk, 810000);
        SetupGauge sg = new SetupGauge(0, unstuckTimer);
        player.sendPacket(sg);
        CasinoVoteRewardItem ef = new CasinoVoteRewardItem(player,20);
        player.setSkillCast(ThreadPoolManager.getInstance().scheduleGeneral(ef, unstuckTimer));
    }

     class CasinoVoteRewardItem implements Runnable
    {
        private L2PcInstance _player;
	private int _ammount;
	CasinoVoteRewardItem(L2PcInstance player,int ammount)
        {	
		_ammount= ammount;
            _player = player;
        }
        public void run()
        {
            if(_player.isDead())
                return;
            _player.setIsIn7sDungeon(false);
            _player.enableAllSkills();
            
            if( _player.getInventory().getInventoryItemCount(7542, 0) >= 20)
            {   
            switch(Rnd.get(16))
            {
            case 0:
            	 displayCongrats(_player, _ammount);
			_player.addItem("Gift",7542,_ammount,_player,true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 1:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 2:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 3:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 4:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 5:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 6:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 7:
            	RewardJacpotVoteReward(_player);
            	if(RewardJacpotVoteReward(_player) == 11)
            	{
            		return;
            	}
            	else
            	 displayCongrats(_player, _ammount);
			_player.addItem("Gift",7542,_ammount,_player,true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 8:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 9:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 10:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 11:
            	 displayCongrats(_player, _ammount);
				_player.addItem("Gift",7542,_ammount,_player,true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
            	break;
            case 12:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 13:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 14:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
                break;
            case 15:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
                break;
               } 
             }
            else
            {
            	sendCasinoVoteReardChat("casino-lowvoterewarditem.htm",_player);
            }
        }
    }
     
     
     class CasinoFarmItem implements Runnable
     {
         private L2PcInstance _player;
		private int _ammount;
		CasinoFarmItem(L2PcInstance player,int ammount)
         {	
			_ammount= ammount;
             _player = player;
         }
         public void run()
         {
             if(_player.isDead())
                 return;
             _player.setIsIn7sDungeon(false);
             _player.enableAllSkills();
             
             if( _player.getInventory().getInventoryItemCount(7217, 0) >= 20)
             {   
             switch(Rnd.get(16))
             {
             case 0:
             	 displayCongrats(_player, _ammount);
				_player.addItem("Gift",7542,_ammount,_player,true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 1:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 2:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 3:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 4:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 5:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 6:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 7:
            	 RewardJacpotFarmItem(_player);
             	if(RewardJacpotFarmItem(_player) == 11)
             	{
             		return;
             	}
             	else
             	 displayCongrats(_player, _ammount);
				_player.addItem("Gift",7217,_ammount,_player,true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 8:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 9:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 10:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 11:
             	 displayCongrats(_player, _ammount);
					_player.addItem("Gift",7217,_ammount,_player,true);
					_player.broadcastUserInfo();
					_voterewardItemsJackpot += _ammount;
             	break;
             case 12:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 13:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 14:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
                 break;
             case 15:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
                 break;
                } 
              }
             else
             {
             	sendCasinoFarmItemChat("casino-lowfarmitem.htm",_player);
             }
         }
     }
     
     public final int RewardJacpotVoteReward(L2PcInstance player)
     {
    	 int reward = 30;
    	 switch(Rnd.get(reward))
         {
         case 0:
         	break;
         case 1:
         	break;
         case 2:
         	break;
         case 3:
         	break;
         case 4:
         	break;
         case 5:
         	break;
         case 6:
         	break;
         case 7:
         	break;
         case 8:
         	break;
         case 9:
         	break;
         case 10:
         	break;
         case 11:
        	 displayCongrats(player, _ammount);
         	player.addItem("Gift",7542,_ammount + _voterewardItemsJackpot,player,true);
         	player.broadcastUserInfo();
		autoannounceToOnlinePlayers("Congratulations "+ player.getName() +" he won "+ _voterewardItemsJackpot +" Jackpot of Vote Reward's Item's!");
		_voterewardItemsJackpot = 0;
         	break;
         case 12:
         	break;
         case 13:
         	break;
         case 14:
             break;
         case 15:
             break;
         case 16:
             break;
         case 17:
             break;
         case 18:
             break;
         case 19:
             break;
         case 20:
             break;
         case 21:
             break;
         case 22:
             break;
         case 23:
             break;
         case 24:
             break;
         case 25:
             break;
         case 26:
             break;
         case 27:
             break;
         case 28:
             break;
         case 29:
             break;
             
             
         }
	return reward;
	}
     
     public final int RewardJacpotFarmItem(L2PcInstance player)
     {
    	 int reward = 30;
    	 switch(Rnd.get(reward))
         {
         case 0:
         	break;
         case 1:
         	break;
         case 2:
         	break;
         case 3:
         	break;
         case 4:
         	break;
         case 5:
         	break;
         case 6:
         	break;
         case 7:
         	break;
         case 8:
         	break;
         case 9:
         	break;
         case 10:
         	break;
         case 11:
        	 displayCongrats(player, _ammount);
         	player.addItem("Gift",7217,_ammount + _farmItemsJackpot,player,true);
         	player.broadcastUserInfo();
		autoannounceToOnlinePlayers("Congratulations "+ player.getName() +" he won "+ _farmItemsJackpot +" Jackpot of Farm Item's!");
		_voterewardItemsJackpot = 0;
         	break;
         case 12:
         	break;
         case 13:
         	break;
         case 14:
             break;
         case 15:
             break;
         case 16:
             break;
         case 17:
             break;
         case 18:
             break;
         case 19:
             break;
         case 20:
             break;
         case 21:
             break;
         case 22:
             break;
         case 23:
             break;
         case 24:
             break;
         case 25:
             break;
         case 26:
             break;
         case 27:
             break;
         case 28:
             break;
         case 29:
             break;
             
             
         }
	return reward;
	}
    
    public final void sendCasinoVoteReardChat(String file, L2PcInstance player)
    {
    	sendCasinoVoteReardChat(file,player,getObjectId());
}
    
public static final void sendCasinoVoteReardChat(String file, L2PcInstance player, int oID)
{
	NpcHtmlMessage html = new NpcHtmlMessage(oID);
	html.setFile(CASINO_HTML_PATH + file);
	html.replace("%objectId%",String.valueOf(oID));
	player.sendPacket(html);
}

    public final void sendCasinoFarmItemChat(String file, L2PcInstance player)
    {
    	sendCasinoFarmItemChat(file,player,getObjectId());
}
    
public static final void sendCasinoFarmItemChat(String file, L2PcInstance player, int oID)
{
	NpcHtmlMessage html = new NpcHtmlMessage(oID);
	html.setFile(CASINO_HTML_PATH + file);
	html.replace("%objectId%",String.valueOf(oID));
	player.sendPacket(html);
}
}

 

 

Posted

if you use frozen and old packets interlude use that code

 

if you have problem with that code just use that

[code]package com.l2jprim.gameserver.model.actor.instance;

import com.l2jprim.Config;
import com.l2jprim.gameserver.ThreadPoolManager;
import com.l2jprim.gameserver.ai.CtrlIntention;
import com.l2jprim.gameserver.model.L2World;
import com.l2jprim.gameserver.model.actor.L2Npc;
import com.l2jprim.gameserver.network.clientpackets.Say2;
import com.l2jprim.gameserver.network.serverpackets.ActionFailed;
import com.l2jprim.gameserver.network.serverpackets.CreatureSay;
import com.l2jprim.gameserver.network.serverpackets.ExShowScreenMessage;
import com.l2jprim.gameserver.network.serverpackets.L2GameServerPacket;
import com.l2jprim.gameserver.network.serverpackets.MagicSkillUse;
import com.l2jprim.gameserver.network.serverpackets.MyTargetSelected;
import com.l2jprim.gameserver.network.serverpackets.NpcHtmlMessage;
import com.l2jprim.gameserver.network.serverpackets.SetupGauge;
import com.l2jprim.gameserver.network.serverpackets.SocialAction;
import com.l2jprim.gameserver.network.serverpackets.ValidateLocation;
import com.l2jprim.gameserver.templates.actor.L2NpcTemplate;
import com.l2jprim.gameserver.util.Broadcast;
import com.l2jprim.gameserver.util.Rnd;

/**
* @author Ovenus
*/
public class L2CasinoInstance extends L2Npc
{
    protected int _ammount = 20;
    protected int _voterewardItemsJackpot = 0;
    protected int _farmItemsJackpot = 0;
    protected int _jacpot = 0;
public static final String CASINO_HTML_PATH = "data/html/casino/";

    public L2CasinoInstance(int objectId, L2NpcTemplate template)
    {
        super(objectId, template);
    }

    

    
    /**
 * this is called when a player interacts with this NPC
 * 
 * @param player
 */
@Override
public void onAction(L2PcInstance player)
{
	if (!canTarget(player))
		return;

	player.setTarget(this);

	// Check if the L2PcInstance already target the L2NpcInstance
	if (this != player.getTarget())
	{
		// Set the target of the L2PcInstance player
		player.setTarget(this);

		// Send a Server->Client packet MyTargetSelected to the L2PcInstance
		// player
		MyTargetSelected my = new MyTargetSelected(getObjectId(), 0);
		player.sendPacket(my);

		// Send a Server->Client packet ValidateLocation to correct the
		// L2Npc position and heading on the client
		player.sendPacket(new ValidateLocation(this));
	} else
	{
		// Calculate the distance between the L2PcInstance and the
		// L2NpcInstance
		if (!canInteract(player))
		{
			// Notify the L2PcInstance AI with AI_INTENTION_INTERACT
			player.getAI().setIntention(
					CtrlIntention.AI_INTENTION_INTERACT, this);
		}
		else
		{
			showChatWindow(player);
		}
	}
	// Send a Server->Client ActionFailed to the L2PcInstance in order to
	// avoid that the client wait another packet
	player.sendPacket(ActionFailed.STATIC_PACKET);
}

@Override
public void showChatWindow(L2PcInstance player)
{
	player.sendPacket(ActionFailed.STATIC_PACKET);
	String filename = "data/html/casino/casino.htm";
	NpcHtmlMessage html = new NpcHtmlMessage(getObjectId());
	html.setFile(player.getHtmlPrefix(), filename);
	html.replace("%objectId%", String.valueOf(getObjectId()));
	html.replace("%npcname%", getName());
	html.replace("%jackpot%",String.valueOf(_jacpot));
	html.replace("%voterewardjackpot%",String.valueOf(_voterewardItemsJackpot));
	html.replace("%farmjackpot%",String.valueOf(_farmItemsJackpot));
	player.sendPacket(html);
}

@Override
public void onBypassFeedback(L2PcInstance player, String command)
{
	if (command.startsWith("votereward")) 
	{
		sendCasinoVoteReardChat("casino-playvotereward.htm",player);
		PlayCasinoVoteRewardItem(player,20);
		return;

	}
	else if (command.startsWith("farmitem")) 
	{
		sendCasinoVoteReardChat("casino-playvotereward.htm",player);
		PlayCasinoFarmItem(player,20);
		return;
	}
	super.onBypassFeedback(player,command);
}

public static void autoannounceToOnlinePlayers(String text)
{
		CreatureSay cs = new CreatureSay(0, Say2.CRITICAL_ANNOUNCE, "", text);
		toAllOnlinePlayers(cs);

}

public static void toAllOnlinePlayers(L2GameServerPacket mov)
{
	if (Config.DEBUG)
		_log.fine("Players to notify: " + L2World.getInstance().getAllPlayersCount() + " (with packet " + mov.getType() + ")");

	L2World.getInstance().forEachPlayer(new Broadcast.ForEachPlayerBroadcastPacket(mov));
}

public void announceToAll(String text)
{
	Broadcast.autoannounceToOnlinePlayers(text);
}

    public void displayCongrats(L2PcInstance player,int ammount)
    {
        player.broadcastPacket(new SocialAction(player, 3));
        MagicSkillUse  MSU = new MagicSkillUse(player, player, 2024, 1, 1, 0);
        player.broadcastPacket(MSU);
        ExShowScreenMessage screen = new ExShowScreenMessage("Congratulations "+player.getName()+"! You won!", 15000);
        player.sendMessage("Congratulations "+player.getName()+"! You won!");
        player.sendPacket(screen);
    }

    public void displayCongratsLostVoteRewardItem(L2PcInstance player,int ammount)
    {
        ExShowScreenMessage screen = new ExShowScreenMessage("Try next Time "+ player.getName() +", now you lost "+ _ammount +" of Vote Reward's!", 15000);
        player.sendPacket(screen);
    }
    
    public void displayCongratsLostFarmItem(L2PcInstance player,int ammount)
    {
        ExShowScreenMessage screen = new ExShowScreenMessage("Try next Time "+ player.getName() +", now you lost "+ _ammount +" of Farm Item's!", 15000);
        player.sendPacket(screen);
    }

    public void PlayCasinoFarmItem(L2PcInstance player,int ammount)
    {
       
    	if(player.getInventory().getInventoryItemCount(7217, 0) < 20)
        {
		sendCasinoFarmItemChat("casino-lowfarmitem.htm",player);
		return;
        }
    	int unstuckTimer = (1 * 1000);
        player.setTarget(player);
        player.getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
        player.disableAllSkills();
        MagicSkillUse msk = new MagicSkillUse(player, 361, 1, unstuckTimer, 0);
        Broadcast.toSelfAndKnownPlayersInRadius(player, msk, 810000);
        SetupGauge sg = new SetupGauge(0, unstuckTimer);
        player.sendPacket(sg);
        CasinoFarmItem ef = new CasinoFarmItem(player,20);
        player.setSkillCast(ThreadPoolManager.getInstance().scheduleGeneral(ef, unstuckTimer));
    }
    
    public void PlayCasinoVoteRewardItem(L2PcInstance player,int ammount)
    {
    	if(player.getInventory().getInventoryItemCount(7542, 0) < 20)
        {
		sendCasinoVoteReardChat("casino-lowvoterewarditem.htm",player);
		return;
        }
    	int unstuckTimer = (1 * 1000);
        player.setTarget(player);
        player.getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
        player.disableAllSkills();
        MagicSkillUse msk = new MagicSkillUse(player, 361, 1, unstuckTimer, 0);
        Broadcast.toSelfAndKnownPlayersInRadius(player, msk, 810000);
        SetupGauge sg = new SetupGauge(0, unstuckTimer);
        player.sendPacket(sg);
        CasinoVoteRewardItem ef = new CasinoVoteRewardItem(player,20);
        player.setSkillCast(ThreadPoolManager.getInstance().scheduleGeneral(ef, unstuckTimer));
    }

     class CasinoVoteRewardItem implements Runnable
    {
        private L2PcInstance _player;
	private int _ammount;
	CasinoVoteRewardItem(L2PcInstance player,int ammount)
        {	
		_ammount= ammount;
            _player = player;
        }
        public void run()
        {
            if(_player.isDead())
                return;
            _player.setIsIn7sDungeon(false);
            _player.enableAllSkills();
            
            if( _player.getInventory().getInventoryItemCount(7542, 0) >= 20)
            {   
            switch(Rnd.get(16))
            {
            case 0:
            	 displayCongrats(_player, _ammount);
			_player.addItem("Gift",7542,_ammount,_player,true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 1:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 2:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 3:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 4:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 5:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 6:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 7:
            	RewardJacpotVoteReward(_player);
            	if(RewardJacpotVoteReward(_player) == 11)
            	{
            		return;
            	}
            	else
            	 displayCongrats(_player, _ammount);
			_player.addItem("Gift",7542,_ammount,_player,true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 8:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 9:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 10:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 11:
            	 displayCongrats(_player, _ammount);
				_player.addItem("Gift",7542,_ammount,_player,true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
            	break;
            case 12:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 13:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
            	break;
            case 14:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
                break;
            case 15:
            	displayCongratsLostVoteRewardItem(_player, _ammount);
			_player.destroyItemByItemId("Consume", 7542, _ammount, _player, true);
			_player.broadcastUserInfo();
			_voterewardItemsJackpot += _ammount;
                break;
               } 
             }
            else
            {
            	sendCasinoVoteReardChat("casino-lowvoterewarditem.htm",_player);
            }
        }
    }
     
     
     class CasinoFarmItem implements Runnable
     {
         private L2PcInstance _player;
		private int _ammount;
		CasinoFarmItem(L2PcInstance player,int ammount)
         {	
			_ammount= ammount;
             _player = player;
         }
         public void run()
         {
             if(_player.isDead())
                 return;
             _player.setIsIn7sDungeon(false);
             _player.enableAllSkills();
             
             if( _player.getInventory().getInventoryItemCount(7217, 0) >= 20)
             {   
             switch(Rnd.get(16))
             {
             case 0:
             	 displayCongrats(_player, _ammount);
				_player.addItem("Gift",7542,_ammount,_player,true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 1:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 2:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 3:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 4:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 5:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 6:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 7:
            	 RewardJacpotFarmItem(_player);
             	if(RewardJacpotFarmItem(_player) == 11)
             	{
             		return;
             	}
             	else
             	 displayCongrats(_player, _ammount);
				_player.addItem("Gift",7217,_ammount,_player,true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 8:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 9:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 10:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 11:
             	 displayCongrats(_player, _ammount);
					_player.addItem("Gift",7217,_ammount,_player,true);
					_player.broadcastUserInfo();
					_voterewardItemsJackpot += _ammount;
             	break;
             case 12:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 13:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
             	break;
             case 14:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
                 break;
             case 15:
            	 displayCongratsLostFarmItem(_player, _ammount);
				_player.destroyItemByItemId("Consume", 7217, _ammount, _player, true);
				_player.broadcastUserInfo();
				_voterewardItemsJackpot += _ammount;
                 break;
                } 
              }
             else
             {
             	sendCasinoFarmItemChat("casino-lowfarmitem.htm",_player);
             }
         }
     }
     
     public final int RewardJacpotVoteReward(L2PcInstance player)
     {
    	 int reward = 30;
    	 switch(Rnd.get(reward))
         {
         case 0:
         	break;
         case 1:
         	break;
         case 2:
         	break;
         case 3:
         	break;
         case 4:
         	break;
         case 5:
         	break;
         case 6:
         	break;
         case 7:
         	break;
         case 8:
         	break;
         case 9:
         	break;
         case 10:
         	break;
         case 11:
        	 displayCongrats(player, _ammount);
         	player.addItem("Gift",7542,_ammount + _voterewardItemsJackpot,player,true);
         	player.broadcastUserInfo();
		autoannounceToOnlinePlayers("Congratulations "+ player.getName() +" he won "+ _voterewardItemsJackpot +" Jackpot of Vote Reward's Item's!");
		_voterewardItemsJackpot = 0;
         	break;
         case 12:
         	break;
         case 13:
         	break;
         case 14:
             break;
         case 15:
             break;
         case 16:
             break;
         case 17:
             break;
         case 18:
             break;
         case 19:
             break;
         case 20:
             break;
         case 21:
             break;
         case 22:
             break;
         case 23:
             break;
         case 24:
             break;
         case 25:
             break;
         case 26:
             break;
         case 27:
             break;
         case 28:
             break;
         case 29:
             break;
             
             
         }
	return reward;
	}
     
     public final int RewardJacpotFarmItem(L2PcInstance player)
     {
    	 int reward = 30;
    	 switch(Rnd.get(reward))
         {
         case 0:
         	break;
         case 1:
         	break;
         case 2:
         	break;
         case 3:
         	break;
         case 4:
         	break;
         case 5:
         	break;
         case 6:
         	break;
         case 7:
         	break;
         case 8:
         	break;
         case 9:
         	break;
         case 10:
         	break;
         case 11:
        	 displayCongrats(player, _ammount);
         	player.addItem("Gift",7217,_ammount + _farmItemsJackpot,player,true);
         	player.broadcastUserInfo();
		autoannounceToOnlinePlayers("Congratulations "+ player.getName() +" he won "+ _farmItemsJackpot +" Jackpot of Farm Item's!");
		_voterewardItemsJackpot = 0;
         	break;
         case 12:
         	break;
         case 13:
         	break;
         case 14:
             break;
         case 15:
             break;
         case 16:
             break;
         case 17:
             break;
         case 18:
             break;
         case 19:
             break;
         case 20:
             break;
         case 21:
             break;
         case 22:
             break;
         case 23:
             break;
         case 24:
             break;
         case 25:
             break;
         case 26:
             break;
         case 27:
             break;
         case 28:
             break;
         case 29:
             break;
             
             
         }
	return reward;
	}
    
    public final void sendCasinoVoteReardChat(String file, L2PcInstance player)
    {
    	sendCasinoVoteReardChat(file,player,getObjectId());
}
    
public static final void sendCasinoVoteReardChat(String file, L2PcInstance player, int oID)
{
	NpcHtmlMessage html = new NpcHtmlMessage(oID);
	html.setFile(CASINO_HTML_PATH + file);
	html.replace("%objectId%",String.valueOf(oID));
	player.sendPacket(html);
}

    public final void sendCasinoFarmItemChat(String file, L2PcInstance player)
    {
    	sendCasinoFarmItemChat(file,player,getObjectId());
}
    
public static final void sendCasinoFarmItemChat(String file, L2PcInstance player, int oID)
{
	NpcHtmlMessage html = new NpcHtmlMessage(oID);
	html.setFile(CASINO_HTML_PATH + file);
	html.replace("%objectId%",String.valueOf(oID));
	player.sendPacket(html);
}
}

[/code]

Posted

Like i said, fofas couldn't have created that. He was even begging me to sell him aCis, lol.

 

But i expected it to be saving the jackpot.. Anyway, good job and thanks ;)

Posted

by ovenus?hmm I used to speak with dat guy couple of years ago but I missed him when he got banned from mxc..are you ovenus?!

 

thanks anyway.

Posted

who the f@ck is Ovenus ?

 

anyway thanks for share

Ovenus, was the developer of L2jGreece.

 

Edited: And developer of L2jPrim based on L2jArchid. Now, he has left the developing as I know.

Posted

dont this is Ovenus By me pfff :S

Ovenus scammer me casino to L2Mafia

learn how to write proper english in order to be understand by everyone..

Its obvious that you didnt made this since you cant even code a shit on your own

who the f@ck is Ovenus ?

 

anyway thanks for share

an old member here that used to be active back in 2010 dayz.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • General Trackers :   IPTorrents invite IPTorrents account 1 tb TorrentLeech invite Torrentleech account 1 tb buffer  InTheShaDow ( ITS ) account Acid-lounge invite Torrentday invite Crnaberza account Abn.Lol account Limit-of-eden account Norbits account Xspeeds account Xspeeds invite Bemaniso invite Wigornot account Bithumen invite Filelist account Funfile invite AvistaZ invite Potuk.net invite ResurrectThe.Net invite GrabThe.Info invite Greek-Team invite LinkoManija invite Fano.in account tracker.czech-server.com Speed.cd invite Arab-torrents.net account Arabscene.me account Scenetime account 4thd.xyz invite Btarg.com.ar account Dedbit invite Estone.cc account Speedapp invite Finvip invite Fluxzone account GigaTorrents account Gimmepeers account Haidan.video invite Mojblink account Mycarpathians invite Newinsane.info account Oscarworld.xyz account Peers.FM invite Pt.msg.vg account Ransackedcrew account Redemption invite Scene-rush account Seedfile.io invite Teracod invite Torrent.ai account Torrentmasters invite Ttsweb invite X-files invite X-ite invite Ncore account TorrentHR account Rptorrents account BwTorrents account Superbits invite Krazyzone account Immortalseed account Tntracker invite Pt.eastgame.org account Bitturk account Rstorrent account Tracker.btnext invite Torrent-turk.de account BeiTai.PT account Pt.keepfrds account 52pt.site account Pthome account Torrentseeds account Aystorrent account Blues-brothers.biz invite Divteam account Thesceneplace invite CinemaMovies.pl account Brasiltracker account Patiodebutacas account Newheaven.nl account  Swarmazon.club invite Bc-reloaded account Crazyspirits account Silentground invite Omg.wtftrackr invite Milkie.cc invite Breathetheword invite Madsrevolution account Chilebt account Yubraca account Uniongang.tv account Frboard account Exvagos account Diablotorrent account Microbit account Carp-hunter.hu account Majomparade.eu account Theshinning.me account Youiv.info account Dragonworld-reloaded account Sharewood.tv account Partis.si account Digitalcore.club invite Fuzer.me account R3vuk.wtf invite Ztracker account 1 tb buffer 3changtrai account Best-core.info account Bitsite.us account Eliteunitedcrew invite Exitorrent.org account Tophos invite Torrent.lt account Sktorrent.eu account Oshen account Blackhattorrent account Pirata.digital account Esharenet account Ohmenarikgi.la Pirate-share account Immortuos account Kiesbits account Cliente.amigos-share.club account Broadcity invite Ilovetorzz account Torrentbytes account Polishsource account Portugas invite Shareisland account ArabaFenice account Hudbt.hust.edu.cn account Audiences account Nanyangpt account Pt.sjtu.edu.cn account Pt.zhixing.bjtu.edu.cn account Byr.pt invite Ptfiles invite Red-bits account Pt.hdpost.top account Irrenhaus.dyndns.dk (NewPropaganda) account Mnvv2.info (MaxNewVision V2) account 1ptba.com account Spidertk.top account Film-paleis account Generation-free account Aftershock-tracker account Twilightsdreams account Back-ups.me invite Sor-next.tk ( Spirit Of Revolution ) account Tfa.tf ( The Falling Angels ) account Hdmayi account S-f-p.dyndns.dk ( Share Friends Projekt ) account Unlimitz.biz account Pttime account St-tracker.eu account New-retro.eu account Zbbit account Tigers-dl.net account Jptvts.us account Lat-team account Club.hares.top account Falkonvision-team account Concen account Drugari account T.ceskeforum account Peeratiko.org account Zamunda.se account Central-torrent.eu account h-o-d.org account Torrentleech.pl account Demonoid invite Lst.gg account Fakedoor.store account LaidBackManor account Vrbsharezone.co.uk invite Torrenteros account Arenaelite account Datascene account Tracker.0day.community Tapochek.net invite Ptchina invite Lesaloon account Exyusubs account Therebels.tv account Ubits.club invite Zmpt.cc account Turktorrent.us account Dasunerwarte account Hawke.uno account Monikadesign account Fearnopeer account Alpharatio account Wukongwendao.top account Chinapyg account Azusa.wiki account Yggtorrent.top account Torrentdd account Cyanbug.net invite Hhanclub.top account Wintersakura.net account Xthor account Tctg.pm account Finelite invite Agsvpt.com account Pt.0ff.cc invite Qingwapt.com account Xingtan.one account Ptcafe.club invite W-o-t.pro account Coastal-crew.bounceme.net account Darkpeers.org account Pianyuan.org account Seedpool.org  account Tempelbox account Pt.itzmx.com account Itatorrents.xyz  account Letseed.org account The-new-fun.com  account Malayabits.cc account Trellas.me account Yu-scene.net account Futuretorrent.org account Bitpt.cn account Tocashare.biz  account Videoteka.org  account White-angel.hu account Xbytesv2.li account Torr9  account Desitorrents account   Movies Trackers :   Secret-cinema account Anthelion account Pixelhd account Cinemageddon account Cinemageddon account Cinemaz account Retroflix account Classix-unlimited - invite Movie-Torrentz (m2g.link) invite Punck-tracker.net account Tmghub account Cathode-ray.tube account Greatposterwall account Arabicsource.net account Upload.cx account Crabpt.vip invite Onlyencodes.cc account Exyusubs account Hellashut.net invite Nordichd.sytes.net invite Locadora.cc account BJ-Share.info account   HD Trackers :   Blutopia buffered account Hd-olimpo buffered account Hdf.world account Torrentland.li account HdSky account Hdchina account Chdbits account Totheglory account Hdroute account Hdhome account TorrentCCF aka et8.org account 3DTorrents invite HD-Torrents account Bit-HDTV account HDME.eu invite Hdarea.co account Asiancinema.me account JoyHD invite HDSpace invite CrazyHD invite Bluebird-hd invite Htpt.cc account Hdtime invite Ourbits.club account Hd4fans account Siambit account Privatehd account Springsunday account Tjupt account Hdcity.leniter invite Ccfbits account Discfan account Pt.btschool.club account Ptsbao.club invite Hdzone.me invite Danishbytes account Zonaq.pw account Tracker.tekno3d account Arabp2p account Hd-united account Reelflix.xyz account Hdatmos.club account Anasch.cc invite Tigris-t account Nethd.org account Hd.ai invite Hitpt.com account Hdmonkey account Dragonhd.xyz account Hdclub.eu account Forum.bluraycd.com account Carpt account Hdfun.me invite Pt.hdupt invite Puntotorrent account Ultrahd account Rousi.zip account Bearbit account Hdturk.club account Asiandvdclub account Star-space.net account Nordicq.org account Hdkyl.in account Utp.to account Hdzero account   Music Trackers :   Dicmusic account Music-Vid account Open.cd account LzTr account ProAudioTorrents invite Jpopsuki invite TranceTraffic invite Audionews invite Kraytracker invite Libble.me invite Losslessclub invite Indietorrents.com invite Dimeadozen account Funkytorrents invite Karaokedl account zombtracker.the-zomb account Concertos account Sugoimusic account Satclubbing.club invite Metal.iplay invite Psyreactor invite Panda.cd account Adamsfile account Freehardmusic account Tracker.hqmusic.vn accouunt Twilightzoom account 3 tb buffer Hiresmusic account Metalguru account Musictorrents.org account Musebootlegs.com invite Zappateers.com account Jungleland.dnsalias.com account Naftamusic account   E-Learning Trackers :   Theplace account Thevault account Myanonamouse account Libranet account 420Project account Learnflakes account Pt.soulvoice.club account P2pelite account Aaaaarg.fail invite Ebooks-shares.org account Abtorrents account Pt.tu88.men invite Docspedia.world invite   TV-Trackers :   Skipthecommericals Cryptichaven account TV-Vault invite Shazbat.TV account Myspleen account Tasmanit.es invite Tvstore.me account Tvchaosuk account Jptv.club account   XXX - Porn Trackers :   FemdomCult account Pussytorrents account Adult-cinema-network account Bootytape account 1 Tb buffer Exoticaz account Bitporn account Kufirc account Gaytorrent.ru invite Nicept account Gay-torrents.org invite Ourgtn account Pt.hdbd.us account BitSexy account Happyfappy.org account Kamept.com account Lesbians4u.org account   Gaming Trackers :   Mteam.fr account BitGamer invite Retrowithin invite Gamegamept account   Cartoon/Anime/Comic Trackers :   Animeworld account Oldtoons.world account U2.dmhy account CartoonChaos invite Animetorrents account Mononoke account Totallykids.tv account Bakabt.me invite Revanime account Ansktracker account Tracker.shakaw.com.br invite Bt.mdan.org account Skyey2.com account Animetracker.cc Adbt.it.cx invite Tracker.uniotaku.com account Mousebits.com account   Sports Trackers :   MMA-Tracker invite T3nnis.tv invite AcrossTheTasman account RacingForMe invite Sportscult invite Ultimatewrestlingtorrents account Worldboxingvideoarchive invite CyclingTorrents account Xtremewrestlingtorrents account Tc-boxing invite Mma-torrents account Aussierul invite Xwt-classics account Racing4everyone account Talk.tenyardtracker account Stalker.societyglitch invite Extremebits invite Rgfootball.net account F1carreras.xyz account Software/Apps Trackers : Brokenstones account Appzuniverse invite Teamos.xyz account Macbb.org account   Graphics Trackers:   Forum.Cgpersia account   Others   Fora.snahp.eu account Board4all.biz account Makingoff.org/forum account Xrel.to account Undergunz.su account Corebay account Endoftheinter.net ( EOTI ) account Thismight.be invite Skull.facefromouter.space account Avxhm.se (AvaxHome) account Ssdforum account Notfake.vip account Intotheinter.net account Tildes.net invite Thetoonz account Usinavirtual account Hdclasico invite HispaShare account Valentine.wtf account Adit-hd account Forum-andr.net account Warezforums account Justanothermusic.site account Forbiddenlibrary.moe account Senturion.to account Movieparadise account Dcdnet.ru account Sftdevils.net account Heavy-r.com account New-team.org account Ddl.tv account Filewarez.club account Hispamula.org account Hubwarez.tv account Ultim-zone.in account   NZB :   Ninjacentral.co.za account Tabula-rasa.pw account Drunkenslug account Drunkenslug invite Usenet-4all account Dognzb.cr invite Kleverig account Nzb.cat account Nzbplanet.net invite Ng4you.com account NZB.to account Samuraiplace account Abhdtv.net account Abook.link account Comix.pw account House-of-usenet Secretbinaries.net account Vnext.to account Stockboxx.top account Sky-of-use.net account   Prices start from 3 $ to 100 $   Payment methods: Crypto, Neteller, Webmoney, Revolut   If you want to buy something send me a pm or contact me on:   Email: morrison2102@gmail.com   Discord: LFC4LIFE#4173   Telegram: https://t.me/LFC4LIFE4173   Skype: morrison2102@hotmail.com
    • Classic interlude files = Heavily modified classic Saviors/Zaken , adjusted to interlude features. to make your already interlude files compatible with the any other client you need to modify all network packets in your core or you can achieve the "classic" feeling by adding an interface to your client. Example or You can buy ready classic interlude files from the likes of lucera2 and adapt your mods there.
    • New account, few posts, came out of nowhere with "big" developer knowledge and selling "something special" use your main account, is clearly you are on this forum since 2012 minimum, we are not stupid, we are already old enough, everybody in this forum is 32+ y old...
    • Hello guys i was wondering , how all new servers are having interlude files with classic client developed how they want i mean l2reborn , l2 ovc ,l2 dex , l2 flauron etc has interlude files with classic client  where they found this client or where to buy who is making those clients i have interlude files already developed i need to addapt classic client to interlude files  but with not all theses extra skills items etc   
  • Topics

×
×
  • 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..