Jump to content

Recommended Posts

Posted (edited)

Your anti virus is bad, uninstall it > profit :D

its w10 deffender :( now  l2.exe and guard.des

 

vibBqlD.png

Edited by AchYlek
Posted (edited)

This happens due to your code obfuscation. Sometimes some antiviruses falsely see threat in our files. Over the past weeks we have opened direct communication with Avast, BitDefender and some other less notable antivirus companies to help the situation. 

 

Thank you for your reports, this are very helpful to improve quality of our product. We will do our best to prevent this from happening.

 

Latest antivirus scan can be found here: https://virustotal.com/en/file/38cfafbcd91a9538fb57c84163d8779d4199e03192114417345dadfed4bfe820/analysis/1468873721/

This is definitely an improvement from what we used to have before (~11/55).

Edited by Akumu
Posted

This happens due to your code obfuscation. Sometimes some antiviruses falsely see threat in our files. Over the past weeks we have opened direct communication with Avast, BitDefender and some other less notable antivirus companies to help the situation. 

 

Thank you for your reports, this are very helpful to improve quality of our product. We will do our best to prevent this from happening.

 

Latest antivirus scan can be found here: https://virustotal.com/en/file/38cfafbcd91a9538fb57c84163d8779d4199e03192114417345dadfed4bfe820/analysis/1468873721/

This is definitely an improvement from what we used to have before (~11/55).

Wait what did you say? We have program for pirate servers? XD

  • 3 weeks later...
  • 2 weeks later...
Posted
Hello! As always I have some good news for you :)

 

Starting with version 1.2.6.1 of SmartGuard antibot we added a plugin system to expand or modify the game client functionality. On our forums are already available plugin that add new features and fix known Lineage II game cliebt bugs. 

Plug-in system allows many third-party developers to add their own modifications to the game client without worrying about possible conflicts with the antibot, it is convenient to interact with most of the subsystems of the game client through the API provided by the SmartGuard.

 

In the near future I also plan to introduce a number of interesting and useful solutions, including those based on plugins for SmartGuard.

Posted

TheMega.ru PTS AdvExt IL/HF

 

Пользуюсь уже давно, мне абсолютно все нравиться, очень качественная разработка - залог продуктивного процесса.
Уже успел протестировать такие плагины как:
+ Сохранения пароля после релога.
+ MultiWin - не дает отрываться второму окну в партии и устраняет лагучую картинку при стримах и прочее.

 

-

 

I use for a long time, all it to be pleasant to me, very high-quality development - guarantee of productive process.
Already I have managed to test such plugins as:
+ Preserving the password after a relog.
+ MultiWin - does not allow to come off to the second window in a batch and eliminates the lags picture in case of the stream and other.

Posted
We are pleased to announce the start of the traditional seasonal discounts on our products and services. In the period from 23 August to 30 September, all of our products and services are available at a discount of 20%.

Current prices during the time of the promotion are located on this page: https://smart-guard.eu/en/purchase/

 

Also, a special offer for existing customers!

We invite you to update your protection licenses to the upcoming game season, using the following packages:

 

1. Change cronicles + login server = $50

Savings considering existing discounts will be $30

 

2. Upgrate to Standard + change login server = $80

Savings considering existing discounts will be $60

 

3. Upgrate to Standard + change chronicles and login server = $100

Savings considering existing discounts will be $80

Posted

why do u guys charge more for PTS now? its the same protection...

Hello. Thank you for your qeustion.

 

Price for PTS servers has not changed for the past year, we just finally added information to our website. The reason for it to be relatively higher is because it is technically a more complex software and takes more resources to maintain and update. We work together with highly qualified team to provide you best support, level of protection and user experience that you can find.

 

Since you touched this subject I would also like to announce that we have developed a "universal itegration kit" that allows you to use SmartGuard with any PTS server. It is being tested at the moment and will be officially released in a couple of days.

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

    • I think that solves the freeze thing, anyway great share! 
    • Introducing: Daily & Weekly Missions!   I've released a major panel update with a new Missions system and expanded language support.   Players can now complete daily and weekly missions directly through the panel and claim rewards such as balance or items. Mission progress is tied to in-game activity and supported panel actions, and the update also adds a dedicated Missions page, dashboard mission previews, claimable mission indicators, and full admin tools for creating and managing missions.   The Roll page now shows the potential reward drops below the roll container.   Alongside this, I’ve expanded the panel’s language support with new locale options, including Bulgarian, Czech, Georgian, Lithuanian, Polish, Romanian, Japanese, Simplified Chinese, and Traditional Chinese.     The Demo is now updated with the new features for you to try out!
    • I sell complete packs. If you want to add an item, NPC, etc., you have to do that yourselves. Your friend bought the pack; he's the one who needs to configure his server type. He received what he bought as agreed, and I'm saying this without knowing who you're talking about, because anyone who buys something receives what was agreed upon.   Regards. mmmmm L2Velmore ????   If that's the one, I see everything went well... if I remember correctly you were crying over $100, I gave you a better price, and I suppose you made thousands with that... And you're still coming back to complain? :=)
    • I know many people have struggled with this specific issue and had trouble setting up the correct behavior for Toggle skills in aCis. By default, toggles interrupt the player's movement (retail-like), which often feels clunky to players who prefer a smoother, more modern experience. I've prepared a clean solution that eliminates this "freeze" and allows for fluid movement while toggling your auras. Below is the code on how to achieve this. Hope it helps! Changes in PlayerAI.java: Modified doActiveIntention to properly update the active state without stalling. Removed the forced stop() during toggle casting. Added a MoveToLocation broadcast to ensure other players see your movement correctly (prevents visual "teleporting" or desync). Best regards 😃 diff --git a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java index ba0425a..1b2658d 100644 --- a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java +++ b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java @@ -28,6 +28,7 @@  import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;  import net.sf.l2j.gameserver.network.serverpackets.AutoAttackStart;  import net.sf.l2j.gameserver.network.serverpackets.ChairSit; +import net.sf.l2j.gameserver.network.serverpackets.MoveToLocation;  import net.sf.l2j.gameserver.network.serverpackets.MoveToLocationInVehicle;  import net.sf.l2j.gameserver.network.serverpackets.MoveToPawn;  import net.sf.l2j.gameserver.network.serverpackets.StopMove; @@ -159,7 +160,10 @@      @Override      public synchronized void doActiveIntention()      { -        doIdleIntention(); +        prepareIntention(); +        _currentIntention.updateAsActive(); +        if (!getActor().isMoving()) +            thinkIdle();      }            @Override @@ -280,8 +284,9 @@                    if (skill.isToggle())          { -            getActor().getMove().stop();              getActor().getCast().doToggleCast(skill, target); +            if (getActor().isMoving()) +                getActor().broadcastPacket(new MoveToLocation(getActor()));          }          else          { https://pastebin.com/twZujZ3Y
  • 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..