Jump to content

Question

Recommended Posts

  • 0
Posted

This error has nothing to do with L2J, it didn't even tried to load GameServer.java from l2jserver.jar, that means that the source of this error is the incorrect installment of the java required programs or you are oom

 

 

reisntall jre1.7 and jdk and make sure u get the one with same bits as your system

  • 0
Posted

This error has nothing to do with L2J, it didn't even tried to load GameServer.java from l2jserver.jar, that means that the source of this error is the incorrect installment of the java required programs

 

 

reisntall jre1.7 and jdk and make sure u get the one with same bits as your system

i'll try it thank you

  • 0
Posted

 

As i can see gameserver has not enought space to load.

 

What about your RAM?

  • 0
Posted

Right click on your startGameServer and edit ram usage (read: decrease it).

 

java -Xmx1536m -cp ./libs/*; net.sf.l2j.gameserver.GameServer

 

-Xmx1536m -Xms1024m -Xmn512m

 

This, you got 2 gb, so your -Xmx can't be even 1024, set it to 512.

 

This error happens on x32 bit OS, on x64 it's not gonna show this error if you're out of ram (at startup) :P

  • 0
Posted

Right click on your startGameServer and edit ram usage (read: decrease it).

 

This, you got 2 gb, so your -Xmx can't be even 1024, set it to 512.

 

This error happens on x32 bit OS, on x64 it's not gonna show this error if you're out of ram (at startup) :P

thank you problem solved but when i set it to 512 GS try to start but another error apeared w/e thank you

  • 0
Posted

thank you problem solved but when i set it to 512 GS try to start but another error apeared w/e thank you

 

512 is not enough to load l2j, try acis

  • 0
Posted

your new problem is related with ur mysql password, check ur configs at server.properties

i dont have any idea what are you talking about  :poker face:

  • 0
Posted

go on configs open server.properties and find this

 

set lsuser=root
set lspass=admin
set lsdb= l2jdb
set lshost=localhost

 

and on passwork leave it empty

 

set lsuser=root
set lspass=
set lsdb=l2jdb
set lshost=localhost

  • 0
Posted

go on configs open server.properties and find this

 

set lsuser=root
set lspass=admin
set lsdb= l2jdb
set lshost=localhost

 

and on passwork leave it empty

 

set lsuser=root
set lspass=
set lsdb=l2jdb
set lshost=localhost

i cant find it :(

can you help me with TW maybe?

  • 0
Posted

i cant find it :(

can you help me with TW maybe?

 

sto location tou gameserver.bat einai ena folder "config" mesa exei ena server.properties de3i click edit, kane afta pou sou leei kai save

  • 0
Posted

katalava ti theli na m pi re c alla i epiloges pou m leei den iparxoun mesa sto arxio

# ---------------------------------------------------------------------------
# Game Server Settings
# ---------------------------------------------------------------------------
# This is the server configuration file. Here you can set up the connection information for your server.
# This was written with the assumption that you are behind a router.
# Dumbed Down Definitions...
# LAN (LOCAL area network) - typically consists of computers connected to the same router as you.
# WAN (WIDE area network) - typically consists of computers OUTSIDE of your router (ie. the internet).
# x.x.x.x - Format of an IP address. Do not include the x'es into settings. Must be real numbers.
# ---------------------------------------------------------------------------
# Networking
# ---------------------------------------------------------------------------

# Where's the Login server this gameserver should connect to
# WARNING: <u><b><font color="red">Please don't change default IPs here if you don't know what are you doing!</font></b></u>
# WARNING: <u><b><font color="red">External/Internal IPs are now inside "ipconfig.xml" file.</font></b></u>
# Default: 127.0.0.1
LoginHost = 127.0.0.1

# TCP port the login server listen to for gameserver connection requests
# Default: 9014
LoginPort = 9014

# Bind address for gameserver. You should not need to change it in most cases.
# WARNING: <u><b><font color="red">Please don't change default IPs here if you don't know what are you doing!</font></b></u>
# WARNING: <u><b><font color="red">External/Internal IPs are now inside "ipconfig.xml" file.</font></b></u>
# Default: * (0.0.0.0)
GameserverHostname = *

# Default: 7777
GameserverPort = 7777

# ---------------------------------------------------------------------------
# Database
# ---------------------------------------------------------------------------
# Specify the appropriate driver and url for the database you're using.
# Examples:
# Driver = com.mysql.jdbc.Driver (default)
# Driver = org.hsqldb.jdbcDriver
# Driver = com.microsoft.sqlserver.jdbc.SQLServerDriver
Driver = com.mysql.jdbc.Driver

# Database URL
# URL = jdbc:mysql://localhost/l2jdb_3 (default)
# URL = jdbc:hsqldb:hsql://localhost/l2jdb_3
# URL = jdbc:sqlserver://localhost/database = l2jdb_3/user = sa/password =
URL = jdbc:mysql://localhost/l2jdbfreya

# Database user info (default is "root" but it's not recommended)
Login = root

# Database connection password
Password = 

# Default: 100
MaximumDbConnections = 300

# Default: 0
MaximumDbIdleTime = 0

# ---------------------------------------------------------------------------
# Misc Server Settings
# ---------------------------------------------------------------------------
# This is the server ID that the Game Server will request.
# Example: 1 = Bartz
# Default: 1
RequestServerID = 1

# True = The Login Server will give an other ID to the server if the requested ID is already reserved.
# Default: True
AcceptAlternateID = True

# Datapack root directory.
# Defaults to current directory from which the server is started unless the below line is uncommented.
#DatapackRoot = C:\Users\Napster321\Videos\Freya server\l2j Freya server by cursing\l2maxter server\gameserver

# Define how many players are allowed to play simultaneously on your server.
# Default: 100
MaximumOnlineUsers = 300

# Numbers of protocol revisions that server allows to connect.
# Delimiter is ;
# WARNING: <u><b><font color="red">Changing the protocol revision may result in incompatible communication and many errors in game!</font></b></u>
# Default: 216
AllowedProtocolRevisions = 216

# ---------------------------------------------------------------------------
# Misc Player Settings
# ---------------------------------------------------------------------------

# Character name template.
# Examples:
# CnameTemplate = [A-Z][a-z]{3,3}[A-Za-z0-9]*
# The above setting will allow names with first capital letter, next three small letters,
# and any letter (case insensitive) or number, like OmfgWTF1
# CnameTemplate = [A-Z][a-z]*
# The above setting will allow names only of letters with first one capital, like Omfgwtf
# Default .* (allows any symbol)
CnameTemplate = .*

# This setting restricts names players can give to their pets.
# See CnameTemplate for details
PetNameTemplate = .*

# Maximum number of characters per account.
# Default: 7 (client limit)
CharMaxNumber = 7

Guest
This topic is now closed to further replies.


  • Posts

    • We are certainly not an ambulance, but we will definitely cure you of blacklists and empty pockets. Live freely with SX! Each of you will receive a trial version of SX to familiarize yourself with the product, all you have to do is post in this thread
    • It's also the players' fault, because there have been decent servers implementing some of the things you said plus some other 'innovations', plus many QOL things for newbies (ingame bestiary, with drops searchers, etc). In the end, it's the players who decide to feed into that shit and play the most garbage servers simply because the owners of the servers gave their clan leaders 100 euros, or they insta quit the server because they didn't win the first QA, etc, etc, etc.   In the end, if a server is garbage or great it doesn't really matter if the players don't wanna stay in there.   Players are no better than the devs themselves, in the end it seems there are abusive devs who will milk the shit out of their willingly milkable players, or there are none, goes both ways.
    • In my opinion, L2 is dead because the people who make servers didn’t adapt to today’s reality. People are getting older, life moves faster, there are more responsibilities, and less free time. And I’m not even talking about newcomers—how can you expect someone new to this game to learn by Googling every drop location or quest requirement? These things should’ve been integrated into the game, made accessible with just a few clicks through the interface. Instead, so much time was wasted trying to recreate retail-like features that no one asked for. Everyone hates autofarm, but why? Because admins never found a smart way to implement it. You could have made it available only in specific zones, with reduced drops, working like Adrenaline, or auto-teleporting to farm for a limited time per day—just enough to help people with limited time stay relevant in-game. There should also be zones with better drops, where active farming actually matters. Other features feel pointless—like the Life Stone system. Spamming LS to get a skill? Instead, you could create a system where you level up the skill with low chances per level, something that feels progressive and fair. Crafting should be simpler too. Right-click a recipe, and the required materials should show up right there. As for sieges, why not create daily clan war events at peak hours—one for Europeans, one for Latinos? You could spawn crystals inside or outside castles that give points and trigger PvP. Add a boss during the event that gives even more points, and let the top clan in the ranking take the castle. I could go on forever, but what’s the point? The community died because the people who had the knowledge to improve the game just took the easy way out, copying the same server formula over and over until no one could enjoy playing it anymore.
    • It's not because I'm an admin that he treated me differently. I actually gave him several clients from my side without him even knowing they came from me, and most of them had no issues. I was also waiting 3–4 weeks at times for things I bought from AvE, even when I was in a rush. He still delivered in the end. That said, I'm not defending him blindly. I'm just saying it's unlikely he’d risk scamming someone over 60–100€, especially knowing how quickly word spreads here.
    • For exact same reason - there were accusation that I scammed. When was it? 2016? But in that time, admins actually didn't listen. I got banned, then unbaned (when I prooved I've refunded) but I was trash talking to mods. When few months later same shit happened, Grisom (?) old global mod, banned me anyway. You can read somewhere on forum how I was shitting on him for doing that (from other account because original account was banned) - which was banned too. He is not here anymore I think. Back in the days I was well know for not carring that much if I was talking to mod or admin, I didn't hold my tongue. Now You know. Just like You know - if I delay, I deliver or refund. I'm not a scammer, even if my old time haterz love to repeat themselfs like mantra. I don't care.
  • Topics

×
×
  • Create New...