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

    • My official facebook profile!: https://www.facebook.com/spectrumL2 Specifications: Revamped L2JACIS revision FROM the core Private project!!! Revision that has been receiving corrections for over 3 years!!! Events already installed in the revision: TVT CTF KTB PARTY FARM SPOIL EVENT CRAZY RATES TOURNAMENT TIME ZONE (INSTANCE) All working correctly!!! SIEGE ESSENTIAL FEATURES: Walls fix Gates fix Flags fix 100% functional: OLYMPIADS: Implemented settings Hero receives enchanted Weapons with equal status PvP Weapons Optional /true/false Hero can acquire all Hero Weapons Optional true/false OTHER IMPLEMENTATIONS: Teleport fixed (directly to Giran) Teleport effect classic Vip skins vip collor name Pack NPCs with effect already configured BOSES already configured Mobs already configured CLASS BALANCE SPECIAL SYSTEM We have a SPECIAL system developed for Class Balance with only 1 digit in XML %tage of configurable debuffs Player limitation system in BOSES or PvP zones BS blocking system in FLEG zones or events Among others dozens of improvements made in the review... price: 390 USD !  OBS: WE CAN CHANGE THE BANNER AND NAME OF THE SERVICE TO THE ONE OF YOUR PREFERENCE BUT THE SETTINGS MUST BE KEPT ANY CHANGES REQUIRE ADDITION        
    • Server is Online – 1,000+ Active Players! We’re excited to announce the addition of a Europe Proxy to improve connectivity for our EU players! Clans can now benefit from VIP Access to help you catch up faster. 🎯 If you're a clan leader with at least 9 active members, join our Discord and open a ticket to claim your VIP rewards!  
    • The Telegram team is rolling out a new batch of Stars-only gifts you’ll be able to mint as NFTs. Don’t miss your chance to join the next Telegram trend and earn from it! Buy Telegram Stars cheap and KYC-free 1 Star from $0.0149 (min. 50 Stars, bulk discounts available) Promo code STARS5 — 5 % off Pay any way you like: bank cards · crypto · other popular methods How to purchase: ➡Online Store — Click ➡ Telegram bot — Click Other services: ➡ SMM panel — Click Regular buyers get extra discounts and promo codes. Support: ➡ Telegram: https://t.me/solomon_bog ➡ Telegram channel: https://t.me/accsforyou_shop ➡ Discord: https://discord.gg/y9AStFFsrh ➡ WhatsApp: https://wa.me/79051904467 ➡ Email: solomonbog@socnet.store Use these contacts to discuss wholesale orders, partnerships (current list: https://socnet.bgng.io/partners) or to become a supplier. SocNet — your shop for digital goods and premium subscriptions
  • 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