Jump to content

Recommended Posts

Posted (edited)

LINEAGE II LEGAL

 

***NEW***Official Opening Date: 03 FEBRUARY 2017 18:00 GMT +2

NEW**ANCIENT WEAPONS ADDED

 

SERVER CHANGED FROM LOW RATE TO PVP SERVER WITH FIXES!!

 

 

 

PVP SERVER

INSTANT LEVEL 80 *NEW*

COME TO BE THE BEST

 

Rates: 


Xp x 1000
Sp x 1000
PartyXp x 2
PartySp x 2
Adena x 1000
Drop Items x 5
Drop SealStones x 5
Spoil x 2


Enchant rates


Safe Enchant : +6
Max Enchant : +25
Normal Enchant Rate : 55%
Blessed Enchant Rate : 75%
Crystal Enchant Rate : 95%
No Grade LS Rate : 5%
Mid Grade LS Rate : 12%
Top Grade LS Rate : 15%
NOTE: If enchant fail with Blessed or Crystal scroll enchant value will return to +3!

 

Augment Features

Mid Life Stone Rate: 5%
High Life Stone Rate: 12%
Top Life Stone Rate: 15%
Passive Augment Skill 1-1

Gameplay
 

Hero Coin Dropped from Bossed Antharas/Valakas 12h Hero Time
Interlude Custom server
Custom Apella armor
Custom PvP Weapons
Tattoo Level 1,2,3
Vote System
normal Farm
Stating lv* 1
Sub Class lv* 40
buff slot: 35 + 5 De-buff
max SubClasses 4
Max Clan on alliance 3
balance skill + class
Auto Learn Skills
Auto Loot
Full Working Wedding
Nobless With Quest [non full]
GrandBoss [Tezza, queen ant, baium, valakas, Antharas,core, orfen | respawn every 10+/- hours!]

RaidBoss Respawn every 5 +/- hours
Full Fortress castle working!


Custom Features

GM Shop
Town AIO Buffer
Global Gatekeeper
Wedding Manager
Community Top Players,
Info server, RaidBoss list,
Donation Features.
Enchant Skill Manager
Augmenter Manager
Life Stone/bogs/scrolls (Stackable)
Special Farm Droplist
PvP Colors | PK Colors
PvP Reward [only in pvp zone]
custom PVP Zone
Castle Lord Announce & Hero Announce

Olympiad Features

Olympiad auto skill reuse on every match
Olympiad Period 1 week [ Starts 18:00 | Ends 00:00 ]

Events

Automatical Change maps TVT,CTF
Auto TvT Event Every 2 hours
Auto CTF Event Every 2 hours
Mini Event every weekend

Commands

TvT Commands: .tvtjoin , .tvtleave , .tvtinfo
CTF Commands: .ctfjoin , .ctfleave , .ctfinfo
panel enable/disable .panel

 

---Custom PvP weapon---

Custom PvP weapon Pvp_weaps.jpg 

 

--Custom Armor Apella--

Custom Armor Apella.jpg 

 

-Custom Tattoos-

Custom Tattoos Custom_Tattoo.jpg 

 

-Custom Farm Zones-

Custom Farm Zones     

Farm_Zones.jpg

 

-PvP Zones-

pvp spots pvpspots.jpg

 

-Boss Zones-

rbs.jpg

  

                                                                                    

Lineage II Legal
Grand Opening 28-1-2017
Time Opening: 18:00 GMT+2
WebSite: http://l2legal.eu

Forum: http://L2legal.eu/community
Facebook: https://www.facebook.com/l2LegalPvPServer/?fref=ts

Join the fight with us 

 

NEW**Video: 

 

 

top01.jpg

Edited by killeras4
Posted

Great server! It will be one of the best! Good luck man!

thank you bro we will try for the best for our players..many many fixes for not much stats at skills all fixed for server all chars to be balanced and enjoy the pvp :D

Posted

thank you bro we will try for the best for our players..many many fixes for not much stats at skills all fixed for server all chars to be balanced and enjoy the pvp :D

I know bro :) Also i know who made the server. Thats why im happy to see the server online :)

Posted

you must be the carnival leader because you blind!!

how me blind?i see red with green post preview wich is cancerous for eyes,you make blind with this preview

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • Yeah, that's fair. I'll create a full AI-based fake player engine out of this to see how far it can go.
    • sell adena l2rebon signature x1 - 1kk = 1 dollars l2reborn x10 - 500kk = 4 dollars E-Global x Lu4 - 1kk = 2 dollars BOHPTS - x20-x500 TOP PRICE DISCORD - GODDARDSHOP TELEGRAM - MMOPROMO Also on sale are Epic jewelry, Clothes at a very good price
    • Don't get me wrong, I have no hate for AI. The potential for LLMs in gaming, especially for creating dynamic NPC dialogues or complex, adaptive game masters, is immense. The point of my previous post wasn't to dismiss AI as a whole, but to question its practical application for this specific, solved problem.   However, the example given (basic farming) is the worst possible use case to demonstrate this potential. It's the equivalent of using a fusion reactor to power a desk lamp. The overhead is astronomical compared to the task. The core of my argument is about efficiency and the right tool for the job. For the predictable, loop-based behavior of auto-farming, a state machine is not just adequate; it is superior. It is lightweight, incredibly fast, reliable, and consumes negligible resources.   To prove it's not about the volume of code but the efficiency of execution, here is the entirety of the auto-play logic for my server: AutoPlayTaskManager 400 lines of code: AutoUseTaskManager 470 lines of code: This code provides full, retail-like auto-play support for all classes, including offline play. It runs on any standard VPS without a dedicated GPU, using a tiny fraction of CPU cycles. An LLM-based solution for this same task, even a "weaker" one, would: -Introduce significant latency (response time) for each decision. -Require expensive GPU hardware to run locally or incur API costs for cloud services. -Add immense complexity for parsing natural language responses back into game actions. -Be inherently less reliable than a simple "if mob dead -> loot" check. So, while I agree the research is "quite cool" as a proof-of-concept, championing it as a practical solution for auto-farming is where the "AI hype" label fits. The real innovation would be applying that LLM power to a problem a state machine can't easily solve, not one it already solves perfectly.
    • Ofc it does 🙂 . All it was trained on was farming for levelling. It's not about doing something unpredictable. It's about potential. Feed it a bigger context and train it on class-specific fighting patterns, buffing, item values, trading, chatting in L2 lingo, reading trade chat, party-based farming, crafting goals, etc, and you have something that a normal deterministic bot would take a really long time coding to achieve.   Add that to all of the work being offloaded to a model instead of the gameserver, and you have a much better solution that feels way more natural. Ofc you can do pretty much everything with a state machine but you'd have to write insane amounts of code. It's a waste of time. Don't be blindsided by your hate for AI. There is considerable potential here.
    • AI hype from dumb AF devs at it's best. The video shows a character doing the most predictable loop imaginable attack, loot, repeat. You don't need a "reasoning" LLM for that. A lightweight task scheduler or even a basic script can handle it with a fraction of the resources and zero GPU overhead.   Spinning up a big language model to decide "hit the mob and pick up the drop" isn’t clever, it is wasteful. It's like hiring a rocket scientist to flip a light switch: impressive hardware, pointless job.
  • 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