Jump to content

Recommended Posts

Posted

It's funny how people cry about 1 month server. It is not the server's (owner) fault, it is the community's fault. So stop blaming servers to "fail" because it is the community who is actually failing. There are enough good servers arround, not only "stalone", "mouse", "whatever other name". 

 

Get your brain straight and stay on one server and show real power to dominate for a longer period instead of 1 month, because what i see now is shit clans and shit people who think they are pro because they dominated for a month or 2. After they lose domination, they leave server and try to dominate other server. How fucking boring is that, no challenge at all.

Posted

It's funny how people cry about 1 month server. It is not the server's (owner) fault, it is the community's fault. So stop blaming servers to "fail" because it is the community who is actually failing. There are enough good servers arround, not only "stalone", "mouse", "whatever other name". 

 

Get your brain straight and stay on one server and show real power to dominate for a longer period instead of 1 month, because what i see now is shit clans and shit people who think they are pro because they dominated for a month or 2. After they lose domination, they leave server and try to dominate other server. How fucking boring is that, no challenge at all.

 

Admins in this server = fails, thats the problem :D

Posted (edited)

Alright, so here we are waiting for the GREAT OPENING DAY. We all have been told server is going to launch in 5th June so thumbs up for that but let’s get back to the forums before server starts (*BETA SERVER IS ON). Right now, the forums, wars have already started, spam is unavoidable. About 2500+ most online people and 350+ daily checks out  forum.So will be crowd !!! Can you believe that, full towns, full zones, people leveling, farming, it’s so good and I can say guys we are going to have a lot of fun.
We got mostly international players on the server. We are going to have russians ,greeks, polish,lithuanians, brazilians,romanians,argentinians, spanish, bulgarians and much more. So I can see we are going to have a lot of PvPs and activity is going to be high according to the forum posts and players activity on the forum.

 

A lot of Events are announced on forum and the most anticipated one have rewards in $$$
[Tournament #1] 9 vs 9 PvP Event announced for Thursday and Friday 28th June & 29th June , Registration Opening: 10th June 23.59 CET.
Rewards
Participation reward: 20 x per char
1st place
150euro on CP Leader or 3000 Donation Pounds.
70x Festival Adena / member
2nd place
100euro on CP Leader or 2000 Donation Pounds.
60x Festival Adena / member
3rd place
50euro on CP Leader or 1000 Donation Pounds.
50x Festival Adena / member
4th place
500 Donation Pounds.
40x Festival Adena / member
http://redemption.ws/forum/index.php?topic=1413.0

 

Check in www.redemption.ws/forum -> Events -> [Tournament #1] 9 vs 9 PvP Tournament Registration/Info thread.
Website: www.redemption.ws
Forums: www.redemption.ws/forum (REGISTER & Win rewards for live)

 

Relax And Have Fun  
 

Edited by nazgax
Posted (edited)

First redemption was great I hope second one to be awesome also.Join the server you wont do a mistake. :)

The 1 post Bots  :alone:

Edited by 4Gamers
Posted (edited)

It's funny how people cry about 1 month server. It is not the server's (owner) fault, it is the community's fault. So stop blaming servers to "fail" because it is the community who is actually failing. There are enough good servers arround, not only "stalone", "mouse", "whatever other name".

 

Get your brain straight and stay on one server and show real power to dominate for a longer period instead of 1 month, because what i see now is shit clans and shit people who think they are pro because they dominated for a month or 2. After they lose domination, they leave server and try to dominate other server. How fucking boring is that, no challenge at all.

Sorry but you are wrong. Mid rate and high rate servers are too easy. In first week you have full char and you have nothing to apart from w8ing for flagged bitches to show up. Only low rates survive a bit longer. Btw, ofc people will run from one server to another since they open and close like whorehouses. Edited by PaulVanDyke
Posted

seems like u dont know who is xlpina... 

 

Is who lose hero vs Micutzu in Holiday? :happyforever: :happyforever: :happyforever: :happyforever:

Posted (edited)

Is who lose hero vs Micutzu in Holiday? :happyforever: :happyforever: :happyforever: :happyforever:

I will give you little information :D

1st.Before l2holiday I played many servers with micutzu and I have always taken hero before I leave the server.

2nd.L2Anius was the server before l2holiday I took hero 2 times in l2anius micutzu was crying/etc calling me feeder/programer/etc and I got banned so admin gave him hero after that.

3rd.L2Holiday I took 1st hero and then I stopped playing and you are saying he took hero from me ? :D well GJ I was left alredy :D

4th.You can see at his videos in youtube how "pro" he is with adventurer :) the only 1 guy that I played and could compare with me was the guy Etiam he played very well and he took heroes from me :)

Edited by xLpina
Posted (edited)

I will give you little information :D

3rd.L2Holiday I took 1st hero and then I stopped playing and you are saying he took hero from me ? :D well GJ I was left alredy :D

 

If i play vs u with me sorcer every time after 2nd olympiad period :/ ***

Edited by Anitah
Posted

You should play classes that you have actually chances to take hero.

Sorc is locked hero already. :dat:

Go for sk or some shit... :troll:

Posted (edited)

You should play classes that you have actually chances to take hero.

Sorc is locked hero already. :dat:

Go for sk or some shit... :troll:

 

I take hero sorcer :D

Edited by Anitah

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

    • Hi, great work! Are there any bugs? And will it work with a high five?
    • For others that would like to understand in more details:   The login server also uses a protocol (sent by the server to the client in the very first packet). For instance, the C4 client (the one I'm developing my emulator for) expects the protocol number `50721` (or `0xc621`) which works as follow (from what I've gathered): Preamble: L2 packets are divided into two parts: size and payload; As mentioned, every packet starts with two bytes containing the whole packet size (thus including those two bytes, e.g. a packet of size 15 will have the number `15` written onto its first two bytes and a following payload of 13 bytes); For login server, first byte of the payload is the opcode (game server must deal with variable-sized opcodes); Next bytes are the packet content; Before sending the packet, its buffer size (minus the initial two bytes) is padded to 8 bytes (required by upcoming Blowfish encoding); A checksum of the packet is appended at the end, then the payload is again padded to 8 bytes; If the opcode is not `0` (also written as `0x00`), then the payload is encoded by Blowfish; Packet is sent over the network. You can have a look at my implementation (in C++) here (do note I'm assuming little-endian).   In this protocol, the auth packet (`0x00`) sent back by the client is RSA encrypted using the RSA modulus sent in the first server packet, inserted right after the protocol number.  
    • Hello guys I wanna buy some  Lessons for an L2J Developer
    • Let me give you something for inspiration and get you addicted to bot AI     And a siege 😛     What I have notice helps a lot the LLM to act real, is to give it a real-persons background. So for each LLM in the context beggining, besides the L2 facts, give it a real-life back story "You are a 67 years old retired nurse who plays Lineage 2 while her husband reads his newspaper, you are calm, collected but get mad if insulted". But that makes for a creative bot but its repetitive. So what you can also do, is pick random 20 news sites and for each bot every 2-3 days, initialize a context that is affected by the "news" the bot reads in the "real world".  So for example there's Iran - US war ok ? You take the news, put it in an LLM and ask it, extract the "abstract feelings" that this news piece invokes into you without mentioning anything related to the news. Then you take the result and inject it to the bots LLM prompt after its backstory.  This leads to some VERY human-like behavior from bots. 
  • 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..