Рейтинг темы:
  • 1 Голос(ов) - 1 в среднем
  • 1
  • 2
  • 3
  • 4
  • 5
Програмы для сервера нубу)
#1
доброго времени суток.
вот моя история.
у нас в сети был сервер ла2. но он закрылся(
создание сервера давно стало моей мечтой. вот и появилась возможность)
но я ни разу не имел дела с серверной частю(((
начал искат в нете всё о серверах,как их создавать,что нужно и как.
с радостю на лице я попал на всш сайт,а потом и ни форум. нашол очень много полезной инфы. перечитал мануалы и описания.
что из етого понял...
для серва надо
MySQL
Navicat
Java
яву выкачал с офа
МайСКЮЛ - устанавливаю выдает ошыбку в конце. не может "Start server"
Навикет не реганутый. выкачал с нета.... проблема в том что сылки которые вы вылажуете(рапида,депозит) я не могу юзать так как на всю нашу сеть у нас один внешний айпи. когда ктото из сети качает я качать не могу(((
выложите плс другие сылки если есть.
чуствую у мну будет много вопросов,сорри за ето.
Ответ
#2
попробуй _www.mediafire.com там вроде была фича по переливке инфы с других ресурсов Smile
Если вам что то не нравиться идем сюда

[Изображение: 23077.png]
Ответ
#3
в чём может быть проблема?
я запустил геймсерв и логсерв.
настроил вроде всё.
запустил игру, ввёл огин и пароль. мне показывает мой сервер но зайти я на него не могу....

Добавлено через 6 минут
в смысле я щёлкаю конфирм(ок) и никакой реакции
может ли быть дело в протоколе

Добавлено через 15 минут
дело было в протоколе)
след...
зашол в игру... 40 сек прошло. кикает... пишет в гейм серв консоле:"client [character: *****- Account: **** - IP :127.0.0.1] field to reply GameGuard query and bein kicked!"
чё делать теперь?
Ответ
#4
Отключи гейм гуард в конфигах.Smile)
А именно в геймсервере config\network\security.properties
Находиш
GameGuardEnforce = true
GameGuardProhibitAction = true
меняеш true на false
и радуешся.
Это конфиг от эму. У других незнаю как.
Ответ
#5
каким образом можно редактировать персонажей. например редактировать лвл,инвентарь,вещи и всё остальное в етом направлении?
Ответ
#6
В папке tools\lv_up.bat , думаю понятно. А так заводиш Navicat MySQL и юзаеш таблицы characters_ .Smile)
Ответ
#7
Лвл - таблица characters , вещи - таблица items .
Ответ
#8
а как быть с заточкой скиллов? где менять?
Ответ
#9
окэ) спс всем за помощь вроди все в таблицах понял)
пришло время пробовать серв в сети...

ето server.properties

Код:
# This is the server configuration file. Here you can set up the connection for your server.
# Usually you have to change the ExternalHostname option to
# - 127.0.0.1 (if you want to play alone / testing purpose)
# - LAN IP* (if you want to play from another computer in the network)
# - WAN IP** (if you want to play with friends over internet)
# - Questions? => l2jserver.com
#
# * = If you want to get your LAN IP, simply choose "Start" => "Run..." then type "cmd" => "ipconfig"
# **= If you want to get you WAN IP, visit whatismyip.com
# ===================================================================================================

# ================================================================
# General server setting !!! REQUIRED to configure to everyone !!!
# ================================================================

# Bind ip of the gameserver, use * to bind on all available IPs
GameserverHostname=192.168.75.93
GameserverPort=7777

# This is transmitted to the clients connecting from an external network, so it has to be a public IP or resolvable hostname
# If this ip is resolvable by Login just leave *
ExternalHostname=192.168.75.93

# This is transmitted to the client from the same network, so it has to be a local IP or resolvable hostname
# If this ip is resolvable by Login just leave *
InternalHostname=192.168.75.93

# The Loginserver host and port
LoginPort=9014
LoginHost=192.168.75.93
# This is the server id that the gameserver will request (i.e. 1 is Bartz)
RequestServerID = 1
# If set to true, the login will give an other id to the server  if the requested id is already reserved
AcceptAlternateID = True

# Database info
Driver=com.mysql.jdbc.Driver
#Driver=org.hsqldb.jdbcDriver
#Driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
URL=jdbc:mysql://localhost/l2jdb
#URL=jdbc:hsqldb:hsql://localhost/l2jdb
#URL=jdbc:sqlserver://localhost/database=l2jdb/user=sa/password=
Login=root
Password=pechka
MaximumDbConnections=200

# Datapack root directory, defaults to current directory from which the server is started
# DatapackRoot = C:/Work/tmp/DataPack

# Define character name template
# Example to use only : CnameTemplate=[A-Z][a-z]{3,3}[A-Za-z0-9]*
# will allow names with first capital letter, next three small letters,
# and any (capital or not) letter or number, like ZbigN1eW
# Most rational to have CnameTemplate=[A-Z][a-z]*
# meaning names only of letters with first one capital, like Zbigniew
# Default .* - any many of any symbols
CnameTemplate=.*
PetNameTemplate=.*

# Maximum number of chars per account - Default 7 (0 = unlimited [7 is the client limit])
CharMaxNumber = 7

# Define how many players are allowed to play simultaneously on your server.
MaximumOnlineUsers=200

# Minimum and maximum protocol revision that server allow to connect.
# You must keep MinProtocolRevision <= MaxProtocolRevision.
MinProtocolRevision = 1
MaxProtocolRevision = 851
и loginserver.properties

Код:
# This is the server configuration file. Here you can set up the connection for your server.
# Usually you have to change the ExternalHostname option to
# - 127.0.0.1 (if you want to play alone / testing purpose)
# - LAN IP* (if you want to play from another computer in the network)
# - WAN IP** (if you want to play with friends over internet)
# - Questions? => 2jserver.com
#
# * = If you want to get your LAN IP, simply choose "Start" => "Run..." then type "cmd" => "ipconfig"
# **= If you want to get you WAN IP, visit whatismyip.com
# ===================================================================================================

# ================================================================
# General server setting !!! REQUIRED to configure to everyone !!!
# ================================================================

# This is transmitted to the clients connecting from an external network, so it has to be a public IP or resolvable hostname
ExternalHostname=192.168.75.93
# This is transmitted to the client from the same network, so it has to be a local IP or resolvable hostname
InternalHostname=192.168.75.93

# Bind ip of the LoginServer, use * to bind on all available IPs
LoginserverHostname=192.168.75.93
LoginserverPort=2106
# How many times you can provide an invalid account/pass before the IP gets banned
LoginTryBeforeBan=10
# Time you won't be able to login back again after LoginTryBeforeBan tries to login. Provide a value in seconds. Default 10min. (600)
LoginBlockAfterBan=600
GMMinLevel=100

# The address on which login will listen for GameServers, use * to bind on all available IPs
LoginHostname=192.168.75.93

# The port on which login will listen for GameServers
LoginPort=9014

# If set to true any GameServer can register on your login's free slots
AcceptNewGameServer = False

# If false, the license (after the login) will not be shown
# It is highly recommended for Account Security to leave this option as default (True)
ShowLicence = True

# Database info
Driver=com.mysql.jdbc.Driver
#Driver=org.hsqldb.jdbcDriver
#Driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
URL=jdbc:mysql://localhost/l2jdb
#URL=jdbc:hsqldb:hsql://localhost/l2jdb
#URL=jdbc:sqlserver://localhost/database=l2jdb/user=sa/password=
Login=root
Password=pechka
MaximumDbConnections=10

# Usable values: "true" - "false", use this option to choose whether accounts will be created
# automatically or not.
AutoCreateAccounts=true

# The delay in minutes after which the login updates the gameservers IP's (usefull when their ip is dynamic)
IpUpdateTime=15


# ==============================================================
# Test server setting, shoudnt be touched in online game server
# ==============================================================

Debug = False
Assert = False
Developer = False

# Enforce GG Authorization from client
# Login server will kick client if client bypassed GameGuard authentication
ForceGGAuth=True

#FloodProtection. time in ms
EnableFloodProtection=True
FastConnectionLimit=15
NormalConnectionTime=700
FastConnectionTime=350
MaxConnectionPerIP=50
мой яйпи 192,168,75,93 в тех ли я местах его написал и всё ли правильно?

Добавлено через 19 часов 44 минуты
поставил на сеть.... начали тестить...
куча скилов которые должны быть в активе щас в пасивах, некоторые зелья не пашут...
как ето править??? помогите плс
Ответ
#10
выложите плс настройку веб обвязки
Ответ


Возможно похожие темы ...
Тема Автор Ответы Просмотры Последний пост
  Настройка сервера High Five TieLay 2 5,853 09-21-2023, 07:49 AM
Последний пост: Lafani
  Проинвестирую открытие сервера antiaf 0 1,600 02-20-2022, 02:08 PM
Последний пост: antiaf
  [Шара] Полный пак всех html (RU\ENG) с off сервера. L2CCCP 20 10,316 01-19-2021, 12:41 AM
Последний пост: Esferol
  Хелп плиз нубу StepanAMK 1 2,024 07-27-2020, 09:32 AM
Последний пост: StepanAMK
  Остались ли ещё опенсорсные сервера? PrintScr 0 1,532 05-09-2020, 03:15 AM
Последний пост: PrintScr
  Ребята помогите с настройкой сервера la2 Heon 11 3,252 04-15-2020, 10:36 PM
Последний пост: Shady
  Непонятный пакет сервера kotelok 2 1,716 01-04-2020, 06:51 PM
Последний пост: kotelok
  программы нужные для установки ява сервера PROGRAMMATOR 65 41,949 05-11-2019, 02:23 PM
Последний пост: Shubert
  Шаблон для вашего сервера - Бесплатно Valent 3 2,281 03-19-2019, 01:45 PM
Последний пост: Toneeh
  Создание Бота для Сервера MailFolder345 7 3,254 12-02-2018, 10:22 PM
Последний пост: CKREPKA

Перейти к форуму:


Пользователи, просматривающие эту тему: 1 Гость(ей)