Jump to content

Recommended Posts

Posted

Website -> http://l2united.com/

Live server starting on 06 August 2016 at 21:00 GMT+2 !!!

 

RATES

Experience (EXP) 70x
Skill Points (SP) 70x
Adena 50x
Drop for Spoil 22x
General Drop 20x
RaidBoss Drop 4x
Manor 4x
Quest Drop 2x
Quest Reward 4x
Fishing Drop 10x
Vitality System 25x
Clan Reputation Point 2x

ENCHANTS

Safe Enchant +4
Max. Enchant +20
Normal Scroll chance 65%
Blessed Scroll chance 70%
Elemental Max. Level Level 7
Elemental Stone chance 60%
Elemental Crystal chance 55%

CONFIGURATION

Server, Site and Forum Time GMT +2
Buffs, Dances,Songs Duration 2 hours
Buff Slots 28+4+12
Max. Clients per PC 4
Olympiads Max. Enchant +6
Geodata and Pathnodes
Sub-Class Max. Level 85
Off-line Shop mode
Auto Learn Skills
Vitality System
Champions System
Wedding System
Class Master

AUTO EVENTS

Team vs. Team
Last Man Standing
Treasure Hunt
Korean Style
Capture the Flag
Lucky Creatures

RAIDS RESPAWN

Valakas 7 days
Antharas 7 days
Baium 48 hours
Baylor 24 hours
Beleth 48 hours

OTHER

Enchantable H5, Special Goddess of Destruction and Heroic Cloaks
Maximum number of slots for Private Store: Dwarf 40, Other 24
The maximum level for subclass is up to level 85
Multiple commands with advanced options, see them in com board
You can view a monster drop rate and list by using shift+click
All major raids have lower respawn time and RB drop rate improved
Olympiad - Heroes are formed every ~ 15 days, on 1 and 15 at 00:10 GMT +2
Advanced Community Board with lots of new features for perfect play
Advanced NPC buffer with almost all skills and up to 4 schemes per character
Special Quiz event every 5 hours with over 200 questions and GCM reward
Take me to PvP unique PvP system, can be used every 5 minutes
Custom special Raids with good drop
Perfect class and skill balancing and instant clan level 6!
Unique features only here.

http://l2united.com
https://www.facebook.com/l2united/

 

Posted

Hope server will start in time, w/o problems and with ppl.. not as realm 1 hour late, with problems, w/o ppl xD .. i forgot realm OP donate shop in first hour with RB jwls xD

Posted

server started 20 mins early with +16 vorpal/freya items in donate shop.. answer from gm - its ok for 70x rate... lol... maybe someone dont know that 70x is only for exp :x .. gg.. donate 14 € and you have freya weap +16 that you will never have in normal way xD

Posted

server started 20 mins early with +16 vorpal/freya items in donate shop.. answer from gm - its ok for 70x rate... lol... maybe someone dont know that 70x is only for exp :x .. gg.. donate 14 € and you have freya weap +16 that you will never have in normal way xD

false, items are enchanted to +12, even so It's not a problem

 

Enchant rates are retarded high, BEWS drop Is sky high, you can even get BEWS with pc cafe points and you can exchange vote coins to donate coins to buy any item in donate shop.

Posted

Horrible server and horrible setup.

+12 Top S84 in the donation shop, lots of skills are bugged including Turn Undead which means EEs and SEs are fucked, Cubics don't work most of the time, Nightshade skills have 0% land rate, and so on.

That's the problem with this H5 pack that everyone is using, they don't work on it because they think the files are perfect. 

 

This is just a server to grab money from people and nothing else.

  • 2 weeks later...
Posted

Guys, dont go to this piece of shits and neither to any server from this admin ->   Eek/Thor

 

 

This retard has his own clan in game and bans his enemies If he feels they are dangerous for his clan.

Seriously I cant believe someone would destroy his own servers in order to rule anything.

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

    • correct. for example with semantic kernel sdk that exists also for c# and java you can do all sorts of things. even orchestrate an llm to call classes and manipulate objects or even execute database queries. you can literally simulate a real player process on a loop. and yes its costly if you use services like azure. but you can find cheaper alternatives or even free if you brave enough and have time
    • Of course someone can access your account. All it needs is just a session. Sounds to me like you were info stealed.   https://chatgpt.com/share/68a50e59-0708-8012-b63c-98fe3fa87f88
    • LLMs can just return text, and maybe tool calls (read write etc) no ? Wouldn't you need a parser or something that translates the returned text to instructions, e.x move player here, cast skill there?   Sounds like a pain in the ass + a lot API costs.
    • Hi everyone, This is not an advertisement for my server. My Facebook group with 1,300 real players was hacked. I was the only owner of the group, and I don’t understand how someone could change admin rights and remove me from it. All my accounts have two-factor authentication (2FA), so there’s no way anyone could have accessed my account to give admin rights to another profile. I contacted Facebook for help and even paid $20 for faster support from Meta. They basically ignored me and said they couldn’t help or make any decisions regarding this situation. I found some information about the person who took over the group – it seems to be an admin of L2CALIGULA (FLOYD) – and it looks like my group isn’t the only one affected.   https://www.facebook.com/MdsFael/posts/pfbid02LYPDAaxmjECuKY6g1xhMsnmixUH3x1asAVt2RtVKjV8yvegQ9erVHeWAdrJyjonal   As it stands, the group still exists on Facebook and all the information is visible, but I have no control over it anymore.   l2mid group: https://www.facebook.com/groups/l2official   Can anyone explain how this is even possible and how I can prevent it in the future? Regards!    
    • I suggest logging real player data such as positions, movement, quests, skills used in real time, and general actions and save them in whatever format you like. You need to organize and verify the data. If your data are not enough you can create synthetic data based on your existins real data. later you have 2 options  You can fine tune a smaller model (for example, from hugging face). This requires time, money(compute power), and plenty of trial and error, but the benefit is that you can run it locally without relying on external services. Use existing LLMs and  instead of training you can store your data in a vector database and let the LLM query it( im not sure if RAG is the right term here). This approach is faster to set up but depends on the model  and the output you want to achieve(you will need some research there). Regardless of which approach you take  you should expose only safe actions through a service or API. This can be done with MCP(model context protocol) or a custom api ensuring the model (local or external) can only trigger controlled api calls such as movePlayer, castSkill, etc etc, which are already implemented in most sources, but you will need to implement them for your models output and behavior.    Doable? Yes by commiting  a tone of hours and i dont think java code is the problem here. Is it worth it? If you’re doing it to learn then go for it. But if your goal is to create “real fake player” experience on your server or to sell it later  its not worth it. Spend your time elsewhere   yes they can
  • 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