Jump to content

Ta®oS™

Members
  • Posts

    190
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Ta®oS™

  1. hello guys i have create with friends one protection

    this is the configs

     

    #============================================================#
    # It works, but still in test mode              -
    #-------------------------------------------------------------
    # Enable/Disable Guard Protection System ?
    # by default: True = On
    Enabled = true
    # User's login name
    UserName = L2ServerName
    # Sampling time client for unwanted software search (seconds)
    PollInterval = 60
    # The action, when you try to use the unwanted software. Acceptable:
    # kick - out of my game
    # jail - put a character in prison (with no time limit)
    # ban - ban Account
    # hwid - the iron
    OnHackAttempt = kick
    # Block the entrance with no attempt GuardSystem or with a key that does not match server
    Log_invalid_key = True
    AnnonceNonProtect = true
    AnnounceHackAttempt = true
    # Whether to display the information in the TOS of each session?
    GCinfosession = true
    #-------------------------------------------------------------
    # restrictions               								 -
    #-------------------------------------------------------------
    # Number of sessions from one machine (-1 - no restrictions)
    Windows_Count = 1
    # To allow twinks to the Olympics
    AllowTwinkOnOlympiad = False
    # Allow the siege of twinks
    AllowTwinkOnSiege = True
    # Additional (user guides) Soon
    #CustomRestrictor = TvTEvent
    

    i have test and working special

     

    the price is 10euro

  2. Hello again its a very simple fix for olympiad fake death

     

    go to

    java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java

     

    find this

    			if (isInOlympiadMode() && isOlympiadStart() && ((L2PcInstance)attacker).getOlympiadGameId()==getOlympiadGameId())
    				return true;
    

    and down of this put this 2 lines

     

    +			if (isFakeDeath())
    +				return false;
    

     

     

  3. kalispera paidia prospatheisa na peiraksw mesa se auto to arxeio

    MultiSellList.Java ton kwdika

    to thema einai oti ekana mlkia kai me to pou anoigw to Shop

    me spammarei auto edw to error

     

    			java.lang.NullPointerException
            at com.src.gameserver.network.serverpackets.MultiSellList.writeImpl(Mult
    iSellList.java:79)
            at com.src.gameserver.network.serverpackets.L2GameServerPacket.write(L2G
    ameServerPacket.java:34)
            at com.src.mmocore.SelectorThread.putPacketIntoWriteBuffer(SelectorThrea
    d.java:563)
            at com.src.mmocore.SelectorThread.prepareWriteBuffer(SelectorThread.java
    :537)
            at com.src.mmocore.SelectorThread.writePacket(SelectorThread.java:455)
            at com.src.mmocore.SelectorThread.run(SelectorThread.java:173)
    

     

    to ekana etsi opws eitan prin alla pali to idio provlima kamia lusi ?

  4. go to

    gameserver/network/clientpackets/EnterWorld.Java

     

    find this line

    		CrownManager.getInstance().checkCrowns(activeChar);

    and down of this paste

     

    for Hero announce

     

    		if (activeChar.isHero())
    	       Announcements.getInstance().announceToAll("The Hero "+ activeChar.getName() +" Has Logged in");

     

    For Noblesse Character

     

    	if (activeChar.isNoble())
    	       Announcements.getInstance().announceToAll("The Noblesse "+ activeChar.getName() +" Has Logged in");

     

     

    you have Donator or Vip system in your server ? put this for VIP Login announce

     

    	if (activeChar.isDonator())
    	       Announcements.getInstance().announceToAll("The V.I.P. "+ activeChar.getName() +" Has Logged in");
    

     

    for GM char announce

     

    	if (activeChar.isGM())
    	       Announcements.getInstance().announceToAll("The Admin/GM "+ activeChar.getName() +" Has Logged in");
    

     

    and this code dont test if you test and working plz post here

     

    announce for new character in login

     

    	if (activeChar.isNewbie())
    	       Announcements.getInstance().announceToAll("The New Character "+ activeChar.getName() +" Has Logged in");
    

  5. Hello again share one easy code go to

    /gameserver/network/clientpackets/RequestRestart.java

     

    and find this

             player.getInventory().updateDatabase();

     

    and over this pass this here

     

    -	         
    +	    
    +		if (player.getActiveEnchantItem() != null)
    +		{
    +			player.sendMessage("You cant logout while enchanting!");
    +			return;
    +		}
    +		

     

    ie will thus become

     

    			         
        
    	if (player.getActiveEnchantItem() != null)
    	{
    		player.sendMessage("You cant logout while enchanting!");
    		return;
    	}
    
             player.getInventory().updateDatabase();
    
             if (player.getPrivateStoreType() != 0)
    

  6. Add following too :

     

    - can't enchant if you speak to a npc

    - can't enchant if you're in Giran church

    - can't enchant if you're out of peace zone

    - can't enchant if you're in olympiad

    - can't enchant if you use soulshot/spiritshot

    - can't enchant if you open community server

    - can't enchant if you previously used /friendinvite 1min ago

    - can't enchant if you killed a gremlin or keltir

    - can't enchant if you are level X with 15,25%

    - can't enchant if someone around you is chatting

    - can't enchant if your clan got a castle, a clan hall or if clan leader is logged on.

    - can't enchant on server with adena drop rates > x10 spoil rate

    - can't enchant if your IP comes from greek or russian ISP

     

    I got a lot of others exemples, but you will be busy with some times alreayd with those useful checks.

     

    I also invite you to create a server only dedicated to checks.

     

    ok Tryskell things above you know from me what was told to go ? I can not do all that you ask here but I will try

     

  7. Sorry for discourage you but they way you did its rly rly pointless and useless.

    first of all,that's a load of checks which most of them are quite useless.

     

    let's take an example,if a player is in jail and try to enchant his weapon,what gonna happen?crash the server or what?..

     

    whatever,thanks I guess.

     

    edit;

    also why in every check this?!useless

    activeChar.setActiveEnchantItem(null);

    Fanky thanks for the opinion

     

    but I've tried the code i cant enchant in jail. and the server dont crash

  8. I have error here

    +        if(activeChar.is-beep-ted())

    +        {

    +        activeChar.setActiveEnchantItem(null);

    +        activeChar.sendMessage("Can't enchant while -beep-ted");

    +        return;

    +        }

    yes lol the forum replace the code

     

    use this and remove the *

    if(activeChar.isM*ou*nte*d())

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