как включить Tvt
7 ответов132 просмотровСейчас просматривают: 1
· 23.12.2009, 22:44
Сборка: Interlude, L2jArchid 1058
Краткое изложение СУТИ проблемы: не смог включть твт евент
Вопрос: в чем причина и как исправить?
0
· 23.12.2009, 22:58
Если скрипт твт в сборке присутсвует то нужно разкоментировать строку импорта в файле data/scripts.cfg что то типа такого #events/Custom/TvT.py но всетаки если нету в сборке тогда скачай готовый твт.
0
· 23.12.2009, 23:01
Цитата
data/scripts.cfg
нету такого
в server\gameserver\config\mods\events
есть
TeamVsTeam.properties
Раскрывающийся текст
#=============================================================
# Team vs Team Event
#=============================================================
# --------------
# Section: Teams
# --------------
# Options:
# - NO = not even teams.
# - BALANCE : Players can only join team with lowest player count.
# - SHUFFLE : Players can only participate to the event and not direct to a team. Teams will be schuffeled in teleporting teams.
TvTEvenTeams = SHUFFLE
# players there not participated in tvt can target tvt participants?
TvTAllowInterference = False
# tvt participants can use potions?
TvTAllowPotions = False
# tvt participants can summon by item?
TvTAllowSummon = False
# remove all effects of tvt participants on event start?
TvTOnStartRemoveAllEffects = True
# unsummon pet of tvt participants on event start?
TvTOnStartUnsummonPet = True
# on revive participants regain full hp/mp/cp ?
TvTReviveRecovery = True
# announce all team statistics
TvTAnnounceTeamStats = True
# start auto event on server boot?
TvTAutoStartUpOnBoot = True
# Only reads if "TvTAutoStartUpOnBoot = true"
# here you can set the time that server will wait for start first event on boot
# default = 10 (time in minutes)
FirstTvTEventDelay = 10
# we must close coliseum doors on tvt start up?
TvTCloseColiseumDoors = True
# allow/disallow team1 players to heal enemy team
TvTAllowEnemyHealing = False
# Same team members can use skills each other?
TvTAllowTeamCasting = False
# Same team members can attack each other?
TvTAllowTeamAttacking = False
# if true announce to all players the loc and npc name.
TvTAnnounceLocNpc = True
# if true announce to all players who is participating.
TvTAnnounceSignUp = True
# give price with 0 kills
TvTPriceNoKills = False
# players with cursed weapon are allowed to join ?
TvTJoinWithCursedWeapon = True
# Delay on revive when dead, NOTE: 20000 equals to 20 seconds, minimum 1000 (1 second)
TVTReviveDelay = 20000
# place an aura on participants team ?
TvTAura = False
# announce reward
TvTAnnounceReward = True
# Team vs Team Event
#=============================================================
# --------------
# Section: Teams
# --------------
# Options:
# - NO = not even teams.
# - BALANCE : Players can only join team with lowest player count.
# - SHUFFLE : Players can only participate to the event and not direct to a team. Teams will be schuffeled in teleporting teams.
TvTEvenTeams = SHUFFLE
# players there not participated in tvt can target tvt participants?
TvTAllowInterference = False
# tvt participants can use potions?
TvTAllowPotions = False
# tvt participants can summon by item?
TvTAllowSummon = False
# remove all effects of tvt participants on event start?
TvTOnStartRemoveAllEffects = True
# unsummon pet of tvt participants on event start?
TvTOnStartUnsummonPet = True
# on revive participants regain full hp/mp/cp ?
TvTReviveRecovery = True
# announce all team statistics
TvTAnnounceTeamStats = True
# start auto event on server boot?
TvTAutoStartUpOnBoot = True
# Only reads if "TvTAutoStartUpOnBoot = true"
# here you can set the time that server will wait for start first event on boot
# default = 10 (time in minutes)
FirstTvTEventDelay = 10
# we must close coliseum doors on tvt start up?
TvTCloseColiseumDoors = True
# allow/disallow team1 players to heal enemy team
TvTAllowEnemyHealing = False
# Same team members can use skills each other?
TvTAllowTeamCasting = False
# Same team members can attack each other?
TvTAllowTeamAttacking = False
# if true announce to all players the loc and npc name.
TvTAnnounceLocNpc = True
# if true announce to all players who is participating.
TvTAnnounceSignUp = True
# give price with 0 kills
TvTPriceNoKills = False
# players with cursed weapon are allowed to join ?
TvTJoinWithCursedWeapon = True
# Delay on revive when dead, NOTE: 20000 equals to 20 seconds, minimum 1000 (1 second)
TVTReviveDelay = 20000
# place an aura on participants team ?
TvTAura = False
# announce reward
TvTAnnounceReward = True
но как включить?
0
· 24.12.2009, 16:28
UP!
вот tvt.sql
Раскрывающийся текст
-- -----------------------
-- Table structure for tvt
-- -----------------------
DROP TABLE IF EXISTS `tvt`;
CREATE TABLE `tvt` (
`eventName` varchar(255) NOT NULL DEFAULT '',
`eventDesc` varchar(255) NOT NULL DEFAULT '',
`joiningLocation` varchar(255) NOT NULL DEFAULT '',
`minlvl` int(4) NOT NULL DEFAULT '0',
`maxlvl` int(4) NOT NULL DEFAULT '0',
`npcId` int(8) NOT NULL DEFAULT '0',
`npcX` int(11) NOT NULL DEFAULT '0',
`npcY` int(11) NOT NULL DEFAULT '0',
`npcZ` int(11) NOT NULL DEFAULT '0',
`npcHeading` int(11) NOT NULL DEFAULT '0',
`rewardId` int(11) NOT NULL DEFAULT '0',
`rewardAmount` int(11) NOT NULL DEFAULT '0',
`teamsCount` int(4) NOT NULL DEFAULT '0',
`joinTime` int(11) NOT NULL DEFAULT '0',
`eventTime` int(11) NOT NULL DEFAULT '0',
`minPlayers` int(4) NOT NULL DEFAULT '0',
`maxPlayers` int(4) NOT NULL DEFAULT '0',
`delayForNextEvent` BIGINT NOT NULL DEFAULT '0'
) DEFAULT CHARSET=utf8;
-- ---------------------
-- Records for table tvt
-- ---------------------
INSERT INTO `tvt` values
('TVT', 'A PvP Event', 'Giran', 1, 81, 70010, 82688, 148677, -3469, 0, 57, 100000, 2, 5, 10, 2, 50, 1800000);
-- Table structure for tvt
-- -----------------------
DROP TABLE IF EXISTS `tvt`;
CREATE TABLE `tvt` (
`eventName` varchar(255) NOT NULL DEFAULT '',
`eventDesc` varchar(255) NOT NULL DEFAULT '',
`joiningLocation` varchar(255) NOT NULL DEFAULT '',
`minlvl` int(4) NOT NULL DEFAULT '0',
`maxlvl` int(4) NOT NULL DEFAULT '0',
`npcId` int(8) NOT NULL DEFAULT '0',
`npcX` int(11) NOT NULL DEFAULT '0',
`npcY` int(11) NOT NULL DEFAULT '0',
`npcZ` int(11) NOT NULL DEFAULT '0',
`npcHeading` int(11) NOT NULL DEFAULT '0',
`rewardId` int(11) NOT NULL DEFAULT '0',
`rewardAmount` int(11) NOT NULL DEFAULT '0',
`teamsCount` int(4) NOT NULL DEFAULT '0',
`joinTime` int(11) NOT NULL DEFAULT '0',
`eventTime` int(11) NOT NULL DEFAULT '0',
`minPlayers` int(4) NOT NULL DEFAULT '0',
`maxPlayers` int(4) NOT NULL DEFAULT '0',
`delayForNextEvent` BIGINT NOT NULL DEFAULT '0'
) DEFAULT CHARSET=utf8;
-- ---------------------
-- Records for table tvt
-- ---------------------
INSERT INTO `tvt` values
('TVT', 'A PvP Event', 'Giran', 1, 81, 70010, 82688, 148677, -3469, 0, 57, 100000, 2, 5, 10, 2, 50, 1800000);
как включить?
© Gam3Master
0
· 24.12.2009, 16:44
Покопайся в конфигах делов-то
0
· 24.12.2009, 18:59
У арчидов какая то проблемма с ТВТ, тоже пытался боротся с этой темой , увы решения так и ненашёл...
0
· 24.12.2009, 22:26
На сборке la2base TvT работает нормально, поменяй сборку :)
0
Тема закрыта для ответов



