Jump to content

N0K3

Members
  • Posts

    41
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by N0K3

  1. 10 hours ago, ToNoobForscool said:

    this is SmartGuard client side for their users to add in their servers is not the server side of smartguard that does the job, and without client source its useless.

    plus you can ask for the new version if you're a client in their forum, and you can also code for frozen version (but already there is 99% in their forum) 

    if someone wants to hack it here it is update.smguard.net/build_v3.php?token="token" and v2 xD

    Friends, any expert knows or can crack or freeze this version of smartguard shared by @Xenokage, @ToNoobForscool gave a sense of where to start.
    Can anyone with experience meet this challenge?

  2. 33 minutes ago, ToNoobForscool said:

    este é o lado do cliente SmartGuard para os seus usuários para adicionar em seus servidores não é o lado do servidor do smartguard que faz o trabalho, e sem fonte de cliente é inútil.

    Além disso, você pode pedir a nova versão, se você é um cliente em seu fórum, e você também pode codificar para a versão congelada (mas já há 99% em seu fórum) 

    se alguém quiser hackear aqui, é update.smguard.net/build_v3.php?token="token "e v2 xD

    Could you show me the frozen smartguard link you mentioned and how to crack the same?

     

    Edit: Do I get it wrong? Do you show where the token is to crack the link cited by the friend?

  3. 1 hour ago, Kara` said:
    
    Index: java/com/l2jserver/gameserver/model/actor/L2Character.java
    ===================================================================
    --- java/com/l2jserver/gameserver/model/actor/L2Character.java	(revision 2)
    +++ java/com/l2jserver/gameserver/model/actor/L2Character.java	(working copy)
     /**
      * Mother class of all character objects of the world (PC, NPC...)<br>
      * L2Character:<br>
    @@ -4420,6 +4420,11 @@
     		final int curY = super.getY();
     		final int curZ = super.getZ();
     		
    +		if (isPlayer())
    +		{
    +			getActingPlayer().setLastXY(curX, curY);
    +		}
    +		
     		// Calculate distance (dx,dy) between current position and destination
     		// TODO: improve Z axis move/follow support when dx,dy are small compared to dz
     		double dx = (x - curX);
    Index: java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java
    ===================================================================
    --- java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java	(revision 2)
    +++ java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
    @@ -14483,4 +14514,47 @@
     		return _hasCharmOfCourage;
     		
     	}
    +	
    +	final int[] _lastXY = new int[2];
    +	
    +	public void setLastXY(int x, int y)
    +	{
    +		_lastXY[0] = x;
    +		_lastXY[1] = y;
    +	}
    +	
    +	public boolean isAfk()
    +	{
    +		return (getX() == _lastXY[0]) && (getY() == _lastXY[1]);
    +	}
    +	
    +	/** Methods to put inside your event when it start and it stop */
    +	
    +	Future<?> _task;
    +	
    +	public void stopAfk()
    +	{
    +		if (_task != null)
    +		{
    +			_task.cancel(true);
    +			_task = null;
    +		}
    +	}
    +	
    +	public void startAfk()
    +	{
    +		stopAfk();
    +
    +		_task = ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(() ->
    +		{
    +			L2World.getInstance().getPlayers().stream().filter(p -> p.isAfk()).forEach(p ->
    +			{
    +				p.sendMessage("You have been detected as afk.");
    +				// Tasks here.
    +			});
    +			
    +		}, 60000, 60000);
    +	}
     }
    \ No newline at end of file

     

    I made you a short code that you can use. 

     

    *Note: Make sure to put your boolean method or what you have that checks if player is inside event. Ex. p -> p.isAfk() && p.isInEvent()

    I'm extremely grateful Kara, just get me a single question, I'm using Acis 374, it has no PcInstance.java I believe I have been replaced by Player.java and also does not have ThreadPoolManager.java only ThreadPool.java and also does not have L2Character .java, I believe it has been replaced by Creature.java, if I am wrong could you give me a light? because that slows me down when adding the mod.
    I tried putting on the cited files and had errors on the ThreadPool.getInstance ().
    Follow the images below;

    ThreadPool.java https://imgur.com/r7Kcl9a

    Player.java : https://imgur.com/mptTG0A

    Creature.java : https://imgur.com/96gP8ao

     

  4. On 13/09/2018 at 01:26, ShinichiYao said:

    Você só precisa fazer uma função de verificação para que o jogador falso saiba quem é o inimigo, este é o meu código baseado no servidor L2J.

     

    
    

     

     

     

     

    Is this code you quoted going on FakePlayerAI.java?
    Can you cite some reference line?

     

    On 12/09/2018 at 18:43, tazerman2 said:

    mais um código de sorriso eu faço código de eflocrash l2jroboto os jogadores falsos jogar pvp ..

    mas o problema é ter todo o tempo pvp você precisa fazer uma zona com respawn teleport como a ilha primeva

    eu acho que você gosta.

    apreciar

    
    
    
       
    	
    		   
    			
    			 
    				  
    				
    			
    		 
    			
    
    			
    	
    
         
    	
    		   
    		
    			 
    				
    			
    			 
    			 
    			
      
    				
    				                        
    
    				
    				                   
    
    				
    			
    		
    		
    		
    			 
    
    		
    	
    
         
    
    
     
    
     
    
    		    
    		
     
    		
    		
    		     
    		
     
    		
    
    	   
    	
    		 
    	
    
    	
    	
    	   
    	
    		 
    	
    
    

     

    I'm having trouble implementing your code, I did not understand this, if you can help me I'll be grateful.

    and from all class name AI with name this *** public void thinkAndAct() ***
    
    find all this
    
    -	tryTargetRandomCreatureByTypeInRadius(FakeHelpers.getTestTargetClass(), FakeHelpers.getTestTargetRange());
    
    and change with this
    
    +		if (_fakePlayer.getKnownTypeInRadius(FakePlayer.class, FakeHelpers.getTestTargetRange()) != null)
    +		{
    +			tryTargetRandomCreatureByTypeInRadius(FakeHelpers.getTargetPvPClass(), FakeHelpers.getTestTargetRange());
    +		}
    +		
    +		else if (_fakePlayer.getKnownTypeInRadius(Monster.class, FakeHelpers.getTestTargetRange()) != null)
    +		{
    +			tryTargetRandomCreatureByTypeInRadius(FakeHelpers.getTargetMobClass(), FakeHelpers.getTestTargetRange());
    +		}
  5. 1 hour ago, 'Baggos' said:

    Livre não .. Abra um tópico na seção marketplace, e peça alguém que tenha os arquivos por alguns dias ou algo assim .. Talvez você receba uma oferta melhor.

    Mas, isso é ruim porque se a sua licença terminar, os jogadores não podem mais participar ..

     

    A opção B, deixe-a livre e apenas codifique um sistema anti-bot para o seu servidor. Depois de x mobs ou x time. 

    Is this the first alternative for smartguard or sguard? If it works, I'll follow.

  6. 2 hours ago, luannbr said:

    Do mesmo modo que a Smartguard luta pra manter atualizado o antibot, o adrenaline luta pra burlar ele é essa guerra.

    Mas é melhor, ter algo que atualiza semanalmente conta bots do que não ter nada.

    Tirando que tem bots privado (que passam izi por qualquer antibot porque nao é detectavel). 

    Mas a grande maioria dos servidores nao fecham por causa de bots, mas sim pelas aberturas de servidores.

    um bom exemplo

     

    Semana passada até quinta Cedric 4 a 6k Online

    no outro dia Deflect abriu 4k online. 

    Cedric 500 on. 

    Hoje 33 On

    L2Def 2500.

     

    Isso que o L2Deflect ainda ta com SM funcionando que mal consegue funcionar o Adrenaline.

     

    mas abriu outros servidores, mas é tudo questao de players e $. 

    Realmente o questão de servidores abrindo semanalmente fali outros servidores, entretanto, eu joguei em servidores muito fracos que tinham está proteção e eram muito fracos em questão de mods e proteções, talvez não justifique mas não faz sentido, o servidor tinha somente tvt e party farm nada mais e tinha a proteção smart guard.

  7. 2 horas atrás, luannbr disse:

    Do mesmo modo que a Smartguard luta pra manter atualizado o antibot, o adrenaline luta pra burlar ele é essa guerra.

    Mas é melhor, ter algo que atualiza semanalmente conta bots do que não ter nada.

    Tirando que tem bots privado (que passam izi por qualquer antibot porque nao é detectavel). 

    Mas a grande maioria dos servidores nao fecham por causa de bots, mas sim pelas aberturas de servidores.

    um bom exemplo

     

    Semana passada até quinta Cedric 4 a 6k Online

    no outro dia Deflect abriu 4k online. 

    Cedric 500 em diante. 

    Hoje 33 On

    L2Def 2500.

     

    Isso que o L2Deflect ainda ta com SM funcionando que mal consegue funcionar o Adrenaline.

     

    mas abriu outros servidores, mas é tudo questao de players e $. 

     

    2 horas atrás, vampiro disse:

    Eu não acho que eles estão planejando ter servidor aberto apenas por uma semana. Eu não vi servidor cracker de smartguard em qualquer lugar

    [PT-BR] Tudo que eu queria é que tivesse uma proteção que pelo menos parasse o adrenaline Crackeado(versão do alquimist) só isso estava feliz demais.
    Conhecem alguma alem do smar guard que for free ?

     

    [ENG-Google Translate] All I wanted was for me to have a protection that would at least stop the Crackeado adrenaline (alquimist version) that was just too happy.
    Do you know any other than smar guard that is free?

  8. 10 hours ago, luannbr said:

    Se quer investir num servidor ao menos ponha uma protecao decente, Dream Guard ou SmartGuard ou SGuard, beleza, é um pouco caro é, mas o "preju" que os bots fazem é outro nivel. 

    Te garanto, eu uso bot e faco a festa =D

    [PT-BR] Eu só não consigo entender como existe servidores que ficam abertos 1 semana com proteção smart guard, e não é a v3 mais atualizada é uma versão anterior, será que crackeiam de alguma forma ? porque não é possível pagar 1 mês de proteção pra deixar online 7 dias.

    Imagens abaixo do smartguard desatualizado e atualizado.

     

    Desatualizado : https://imgur.com/n6ETQYv

    Atualizado https://imgur.com/koHKGi6

     

    [ENG-Google Translate]

    I just can not understand how there are servers that stay open 1 week with smart guard protection, and it is not the most updated v3 is a previous version, will they crack in some way? because it is not possible to pay 1 month of protection to leave online 7 days.

    Images below the outdated and updated smartguard.

     

    Out of date : https://imgur.com/n6ETQYv

    Updated https://imgur.com/koHKGi6

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