Ir para conteúdo
  • Cadastre-se
  • 0

Tvt Java Mods


paulo jackson

Pergunta

Posts recomendados

Você quer um mod que os players tenha um buff padrão dentro do pvp configurado por você com diferenças de buff entre mago e guerreiro ? acho que nunca vi isso não , mas dá para criar é fácil...

"Tente ser uma pessoa de valor , não de sucesso" - Albert Einstein

 

 

Link para o comentário
Compartilhar em outros sites


Você quer um mod que os players tenha um buff padrão dentro do pvp configurado por você com diferenças de buff entre mago e guerreiro ? acho que nunca vi isso não , mas dá para criar é fácil...

Sim Tipo uma revisão da l2jserver q utilizei a um tempo atrás. ela mim dava as opicoes tanto no tvt como no ctf que eu difitava a id e o lvl das skill que o player ganhara ao iniciar o tvt

tenho ate uma copia aqui postando so a parte da configuração do tvt

 

# Fighter-class participants will be buffed with those buffs each respawn
# Format: skill1Id,skill1Level;skill2Id,skill2Level...
# Example: 1504,1;1501,1;1502,1;1499,1
TvTEventFighterBuffs =
# Mage-class participants will be buffed with those buffs each respawn
# Format: skill1Id,skill1Level;skill2Id,skill2Level...
# Example: 1504,1;1500,1;1501,1;1085,3
TvTEventMageBuffs =
Link para o comentário
Compartilhar em outros sites

é só remover o mod então ué...

sou meio leigo em java.

a revisão da l2jserver que eu utilizei a um tempo atrás era epilogue, teria como remover so esse código da opção dos buff ?

Link para o comentário
Compartilhar em outros sites

claro...me manda a Biblioteca do server que faço para você.

a biblioteca do server com as opções e essa

O conteúdo está oculto, favor efetuar login ou se cadastrar!

 

precisa de mais algo ?

Editado por paulo jackson
Link para o comentário
Compartilhar em outros sites

O conteúdo está oculto, favor efetuar login ou se cadastrar!

Mas tem que mexer mais nele amigo , tem que mudar para que quando morrer não perca os buffs.

 

e era bom colocar que ao sair remova os buffs.

 

a parte da config só pegar ela lá , padrão mesmo...

 

se precisar de mais alguma ajuda só falar...

Editado por Tayran.JavaDev

"Tente ser uma pessoa de valor , não de sucesso" - Albert Einstein

 

 

Link para o comentário
Compartilhar em outros sites

O conteúdo está oculto, favor efetuar login ou se cadastrar!

Mas tem que mexer mais nele amigo , tem que mudar para que quando morrer não perca os buffs.

 

e era bom colocar que ao sair remova os buffs.

 

a parte da config só pegar ela lá , padrão mesmo...

 

se precisar de mais alguma ajuda só falar...

 

aparte do config nao deu certo

 

OLHA COMO EU ADD

 

 

/Config.java

 

public static boolean TVT_STATS_LOGGER;

+ public static TIntIntHashMap TVT_EVENT_FIGHTER_BUFFS;

+ public static TIntIntHashMap TVT_EVENT_MAGE_BUFFS;

public static boolean TVT_REMOVE_BUFFS_ON_DIE;

 

TVT_REMOVE_BUFFS_ON_DIE = Boolean.parseBoolean(TVTSettings.getProperty("TvTRemoveBuffsOnPlayerDie", "false"));

+ propertySplit = TVTSettings.getProperty("TvTEventFighterBuffs", "").split(";");

+ if (!propertySplit[0].isEmpty())

+ {

+ TVT_EVENT_FIGHTER_BUFFS = new TIntIntHashMap(propertySplit.length);

+ for (String skill : propertySplit)

+ {

+ String[] skillSplit = skill.split(",");

+ if (skillSplit.length != 2)

+ _log.warning(StringUtil.concat("TvTEventEngine[Config.load()]: invalid config property -> TvTEventFighterBuffs \"", skill, "\""));

+ else

+ {

+ try

+ {

+ TVT_EVENT_FIGHTER_BUFFS.put(Integer.parseInt(skillSplit[0]), Integer.parseInt(skillSplit[1]));

+ }

+ catch (NumberFormatException nfe)

+ {

+ if (!skill.isEmpty())

+ _log.warning(StringUtil.concat("TvTEventEngine[Config.load()]: invalid config property -> TvTEventFighterBuffs \"", skill, "\""));

+ }

+ }

+ }

+ }

+

+ propertySplit =TVTSettings.getProperty("TvTEventMageBuffs", "").split(";");

+ if (!propertySplit[0].isEmpty())

+ {

+ TVT_EVENT_MAGE_BUFFS = new TIntIntHashMap(propertySplit.length);

+ for (String skill : propertySplit)

+ {

+ String[] skillSplit = skill.split(",");

+ if (skillSplit.length != 2)

+ _log.warning(StringUtil.concat("TvTEventEngine[Config.load()]: invalid config property -> TvTEventMageBuffs \"", skill, "\""));

+ else

+ {

+ try

+ {

+ TVT_EVENT_MAGE_BUFFS.put(Integer.parseInt(skillSplit[0]), Integer.parseInt(skillSplit[1]));

+ }

+ catch (NumberFormatException nfe)

+ {

+ if (!skill.isEmpty())

+ _log.warning(StringUtil.concat("TvTEventEngine[Config.load()]: invalid config property -> TvTEventMageBuffs \"", skill, "\""));

+ }

+ }

+ }

+ }

}

catch (final Exception e)

 

 

**/

L2jFrozenInterlude/gameserver/config/frozen/tvt.properties

# Enable event stats logger

TvTStatsLogger = True

+

+# Fighter-class participants will be buffed with those buffs each respawn

+# Format: skill1Id,skill1Level;skill2Id,skill2Level...

+# Example: 1504,1;1501,1;1502,1;1499,1

+TvTEventFighterBuffs =

+

+# Mage-class participants will be buffed with those buffs each respawn

+# Format: skill1Id,skill1Level;skill2Id,skill2Level...

+# Example: 1504,1;1500,1;1501,1;1085,3

+TvTEventMageBuffs =

 

# Remove Buff

 

 

 

 

tem algo de errado aqui

 

public static TIntIntHashMap TVT_EVENT_FIGHTER_BUFFS;

public static TIntIntHashMap TVT_EVENT_MAGE_BUFFS;

Editado por paulo jackson
Link para o comentário
Compartilhar em outros sites

Vou adaptar aqui e te mando , por que aí é diferente.


O conteúdo está oculto, favor efetuar login ou se cadastrar!
O conteúdo está oculto, favor efetuar login ou se cadastrar!

Aí está amigo.

"Tente ser uma pessoa de valor , não de sucesso" - Albert Einstein

 

 

Link para o comentário
Compartilhar em outros sites

Vou adaptar aqui e te mando , por que aí é diferente.

O conteúdo está oculto, favor efetuar login ou se cadastrar!
O conteúdo está oculto, favor efetuar login ou se cadastrar!

Aí está amigo.

ok testando

 

 

 

import gnu.trove.TIntIntHashMap;

[javac] ^

\gameserver\head-src\com\l2jfrozen\Config.java:1702: error: cannot find symbol

[javac] final String[] FighterskillSplit = otherSettings.getProperty("TvTEventFighterBuffs", "").split(";");

[javac] ^

[javac] symbol: variable otherSettings

[javac] location: class Config

\gameserver\head-src\com\l2jfrozen\Config.java:1722: error: cannot find symbol

[javac] final String[] MageskillSplit = otherSettings.getProperty("TvTEventMageBuffs", "").split(";");

[javac] ^

[javac] symbol: variable otherSettings

[javac] location: class Config

\gameserver\head-src\com\l2jfrozen\gameserver\model\entity\event\TvT.java:774: error: cannot find symbol

[javac] for (int i : Config.TVT_EVENT_MAGE_BUFFS.keys())

[javac] ^

[javac] symbol: method keys()

[javac] location: variable TVT_EVENT_MAGE_BUFFS of type Map<Integer,Integer>

\gameserver\head-src\com\l2jfrozen\gameserver\model\entity\event\TvT.java:786: error: cannot find symbol

[javac] for (int i : Config.TVT_EVENT_FIGHTER_BUFFS.keys())

[javac] ^

[javac] symbol: method keys()

[javac] location: variable TVT_EVENT_FIGHTER_BUFFS of type Map<Integer,Integer>

[javac] 5 errors

[javac] 1 warning

Editado por paulo jackson
Link para o comentário
Compartilhar em outros sites

Aguardando , qualquer coisa estou a disposição.

Bom comecei do inicio a add desse jeito

 

 

Index: TvT.java

===================================================================

--- TvT.java (revision 1118)

+++ TvT.java (working copy)

@@ -33,6 +33,7 @@

import com.l2jfrozen.gameserver.datatables.sql.SpawnTable;

import com.l2jfrozen.gameserver.managers.CastleManager;

import com.l2jfrozen.gameserver.model.L2Party;

+import com.l2jfrozen.gameserver.model.L2Skill;

import com.l2jfrozen.gameserver.model.L2Summon;

import com.l2jfrozen.gameserver.model.L2World;

import com.l2jfrozen.gameserver.model.Location;

@@ -765,6 +766,32 @@

if (!_joining || _started || _teleport)

return false;

 

+ L2PcInstance playerInstance = null;

+ if (playerInstance.isMageClass())

+ {

+ if (Config.TVT_EVENT_MAGE_BUFFS != null && !Config.TVT_EVENT_MAGE_BUFFS.isEmpty())

+ {

+ for (int i : Config.TVT_EVENT_MAGE_BUFFS.keys())

+ {

+ L2Skill skill = SkillTable.getInstance().getInfo(i, Config.TVT_EVENT_MAGE_BUFFS.get(i));

+ if (skill != null)

+ skill.getEffects(playerInstance, playerInstance);

+ }

+ }

+ }

+ else

+ {

+ if (Config.TVT_EVENT_FIGHTER_BUFFS != null && !Config.TVT_EVENT_FIGHTER_BUFFS.isEmpty())

+ {

+ for (int i : Config.TVT_EVENT_FIGHTER_BUFFS.keys())

+ {

+ L2Skill skill = SkillTable.getInstance().getInfo(i, Config.TVT_EVENT_FIGHTER_BUFFS.get(i));

+ if (skill != null)

+ skill.getEffects(playerInstance, playerInstance);

+ }

+ }

+ }

+

removeOfflinePlayers();

 

if (Config.TVT_EVEN_TEAMS.equals("SHUFFLE") && checkMinPlayers(_playersShuffle.size()))

@@

 

config.java

 

@@

public static boolean TVT_STATS_LOGGER;

+ public static Map<Integer, Integer> TVT_EVENT_FIGHTER_BUFFS;

+ public static Map<Integer, Integer> TVT_EVENT_MAGE_BUFFS;

public static boolean TVT_REMOVE_BUFFS_ON_DIE;

@@@

 

TVT_REMOVE_BUFFS_ON_DIE = Boolean.parseBoolean(TVTSettings.getProperty("TvTRemoveBuffsOnPlayerDie", "false"));

+ final String[] FighterskillSplit = otherSettings.getProperty("TvTEventFighterBuffs", "").split(";");

+ TVT_EVENT_FIGHTER_BUFFS = new FastMap<>(FighterskillSplit.length);

+ for (final String skill : FighterskillSplit)

+ {

+ final String[] propertySkillSplit = skill.split(",");

+ if (FighterskillSplit.length != 2)

+ LOGGER.info("TvTEventEngine[Config.load()]: invalid config property -> TvTEventFighterBuffs \"" + skill + "\"");

+ else

+ {

+ try

+ {

+ TVT_EVENT_FIGHTER_BUFFS.put(Integer.parseInt(propertySkillSplit[0]), Integer.parseInt(propertySkillSplit[1]));

+ }

+ catch (NumberFormatException nfe)

+ {

+ if (!skill.equals(""))

+ LOGGER.warn("TvTEventEngine[Config.load()]: invalid config property -> TvTEventFighterBuffs \"" + skill + "\"");

+ }

+ }

+ }

+ final String[] MageskillSplit = otherSettings.getProperty("TvTEventMageBuffs", "").split(";");

+ TVT_EVENT_MAGE_BUFFS = new FastMap<>(MageskillSplit.length);

+ for (final String skill : MageskillSplit)

+ {

+ final String[] propertyskillSplit = skill.split(",");

+ if (MageskillSplit.length != 2)

+ LOGGER.info("TvTEventEngine[Config.load()]: invalid config property -> TvTEventMageBuffs \"" + skill + "\"");

+ else

+ {

+ try

+ {

+ TVT_EVENT_MAGE_BUFFS.put(Integer.parseInt(propertyskillSplit[0]), Integer.parseInt(propertyskillSplit[1]));

+ }

+ catch (NumberFormatException nfe)

+ {

+ if (!skill.equals(""))

+ LOGGER.warn("TvTEventEngine[Config.load()]: invalid config property -> TvTEventMageBuffs \"" + skill + "\"");

+ }

+ }

+ }

+

 

catch (final Exception e)

 

Tvt.prop

 

TvTStatsLogger = True

 

+# Fighter-class participants will be buffed with those buffs each respawn

+# Format: skill1Id,skill1Level;skill2Id,skill2Level...

+# Example: 1504,1;1501,1;1502,1;1499,1

+TvTEventFighterBuffs =

+

+# Mage-class participants will be buffed with those buffs each respawn

+# Format: skill1Id,skill1Level;skill2Id,skill2Level...

+# Example: 1504,1;1500,1;1501,1;1085,3

+TvTEventMageBuffs =

 

# Remove Buffs on player die

 

 

 

erros

 

gameserver\head-src\com\l2jfrozen\Config.java:1700: error: cannot find symbol

[javac] final String[] FighterskillSplit = otherSettings.getProperty("TvTEventFighterBuffs", "").split(";");

[javac] ^

[javac] symbol: variable otherSettings

[javac] location: class Config

\gameserver\head-src\com\l2jfrozen\Config.java:1720: error: cannot find symbol

[javac] final String[] MageskillSplit = otherSettings.getProperty("TvTEventMageBuffs", "").split(";");

[javac] ^

[javac] symbol: variable otherSettings

[javac] location: class Config

\gameserver\head-src\com\l2jfrozen\gameserver\model\entity\event\TvT.java:774: error: cannot find symbol

[javac] for (int i : Config.TVT_EVENT_MAGE_BUFFS.keys())

[javac] ^

[javac] symbol: method keys()

[javac] location: variable TVT_EVENT_MAGE_BUFFS of type Map<Integer,Integer>

\gameserver\head-src\com\l2jfrozen\gameserver\model\entity\event\TvT.java:786: error: cannot find symbol

[javac] for (int i : Config.TVT_EVENT_FIGHTER_BUFFS.keys())

[javac] ^

[javac] symbol: method keys()

[javac] location: variable TVT_EVENT_FIGHTER_BUFFS of type Map<Integer,Integer>

[javac] 4 errors

[javac] 1 warning

 

 

 

to fazendo algo de errado ?

Link para o comentário
Compartilhar em outros sites

 

 

Bom comecei do inicio a add desse jeito

 

 

Index: TvT.java
===================================================================
--- TvT.java (revision 1118)
+++ TvT.java (working copy)
@@ -33,6 +33,7 @@
import com.l2jfrozen.gameserver.datatables.sql.SpawnTable;
import com.l2jfrozen.gameserver.managers.CastleManager;
import com.l2jfrozen.gameserver.model.L2Party;
+import com.l2jfrozen.gameserver.model.L2Skill;
import com.l2jfrozen.gameserver.model.L2Summon;
import com.l2jfrozen.gameserver.model.L2World;
import com.l2jfrozen.gameserver.model.Location;
@@ -765,6 +766,32 @@
if (!_joining || _started || _teleport)
return false;

+ L2PcInstance playerInstance = null;
+ if (playerInstance.isMageClass())
+ {
+ if (Config.TVT_EVENT_MAGE_BUFFS != null && !Config.TVT_EVENT_MAGE_BUFFS.isEmpty())
+ {
+ for (int i : Config.TVT_EVENT_MAGE_BUFFS.keys())
+ {
+ L2Skill skill = SkillTable.getInstance().getInfo(i, Config.TVT_EVENT_MAGE_BUFFS.get(i));
+ if (skill != null)
+ skill.getEffects(playerInstance, playerInstance);
+ }
+ }
+ }
+ else
+ {
+ if (Config.TVT_EVENT_FIGHTER_BUFFS != null && !Config.TVT_EVENT_FIGHTER_BUFFS.isEmpty())
+ {
+ for (int i : Config.TVT_EVENT_FIGHTER_BUFFS.keys())
+ {
+ L2Skill skill = SkillTable.getInstance().getInfo(i, Config.TVT_EVENT_FIGHTER_BUFFS.get(i));
+ if (skill != null)
+ skill.getEffects(playerInstance, playerInstance);
+ }
+ }
+ }
+
removeOfflinePlayers();

if (Config.TVT_EVEN_TEAMS.equals("SHUFFLE") && checkMinPlayers(_playersShuffle.size()))
@@

config.java

@@
public static boolean TVT_STATS_LOGGER;
+ public static Map<Integer, Integer> TVT_EVENT_FIGHTER_BUFFS;
+ public static Map<Integer, Integer> TVT_EVENT_MAGE_BUFFS;
public static boolean TVT_REMOVE_BUFFS_ON_DIE;
@@@

TVT_REMOVE_BUFFS_ON_DIE = Boolean.parseBoolean(TVTSettings.getProperty("TvTRemoveBuffsOnPlayerDie", "false"));
+ final String[] FighterskillSplit = otherSettings.getProperty("TvTEventFighterBuffs", "").split(";");
+ TVT_EVENT_FIGHTER_BUFFS = new FastMap<>(FighterskillSplit.length);
+ for (final String skill : FighterskillSplit)
+ {
+ final String[] propertySkillSplit = skill.split(",");
+ if (FighterskillSplit.length != 2)
+ LOGGER.info("TvTEventEngine[Config.load()]: invalid config property -> TvTEventFighterBuffs \"" + skill + "\"");
+ else
+ {
+ try
+ {
+ TVT_EVENT_FIGHTER_BUFFS.put(Integer.parseInt(propertySkillSplit[0]), Integer.parseInt(propertySkillSplit[1]));
+ }
+ catch (NumberFormatException nfe)
+ {
+ if (!skill.equals(""))
+ LOGGER.warn("TvTEventEngine[Config.load()]: invalid config property -> TvTEventFighterBuffs \"" + skill + "\"");
+ }
+ }
+ }
+ final String[] MageskillSplit = otherSettings.getProperty("TvTEventMageBuffs", "").split(";");
+ TVT_EVENT_MAGE_BUFFS = new FastMap<>(MageskillSplit.length);
+ for (final String skill : MageskillSplit)
+ {
+ final String[] propertyskillSplit = skill.split(",");
+ if (MageskillSplit.length != 2)
+ LOGGER.info("TvTEventEngine[Config.load()]: invalid config property -> TvTEventMageBuffs \"" + skill + "\"");
+ else
+ {
+ try
+ {
+ TVT_EVENT_MAGE_BUFFS.put(Integer.parseInt(propertyskillSplit[0]), Integer.parseInt(propertyskillSplit[1]));
+ }
+ catch (NumberFormatException nfe)
+ {
+ if (!skill.equals(""))
+ LOGGER.warn("TvTEventEngine[Config.load()]: invalid config property -> TvTEventMageBuffs \"" + skill + "\"");
+ }
+ }
+ }
+

catch (final Exception e)

Tvt.prop

TvTStatsLogger = True

+# Fighter-class participants will be buffed with those buffs each respawn
+# Format: skill1Id,skill1Level;skill2Id,skill2Level...
+# Example: 1504,1;1501,1;1502,1;1499,1
+TvTEventFighterBuffs =
+
+# Mage-class participants will be buffed with those buffs each respawn
+# Format: skill1Id,skill1Level;skill2Id,skill2Level...
+# Example: 1504,1;1500,1;1501,1;1085,3
+TvTEventMageBuffs =

# Remove Buffs on player die

 

 

 

erros

 

gameserver\head-src\com\l2jfrozen\Config.java:1700: error: cannot find symbol
[javac] final String[] FighterskillSplit = otherSettings.getProperty("TvTEventFighterBuffs", "").split(";");
[javac] ^
[javac] symbol: variable otherSettings
[javac] location: class Config
\gameserver\head-src\com\l2jfrozen\Config.java:1720: error: cannot find symbol
[javac] final String[] MageskillSplit = otherSettings.getProperty("TvTEventMageBuffs", "").split(";");
[javac] ^
[javac] symbol: variable otherSettings
[javac] location: class Config
\gameserver\head-src\com\l2jfrozen\gameserver\model\entity\event\TvT.java:774: error: cannot find symbol
[javac] for (int i : Config.TVT_EVENT_MAGE_BUFFS.keys())
[javac] ^
[javac] symbol: method keys()
[javac] location: variable TVT_EVENT_MAGE_BUFFS of type Map<Integer,Integer>
\gameserver\head-src\com\l2jfrozen\gameserver\model\entity\event\TvT.java:786: error: cannot find symbol
[javac] for (int i : Config.TVT_EVENT_FIGHTER_BUFFS.keys())
[javac] ^
[javac] symbol: method keys()
[javac] location: variable TVT_EVENT_FIGHTER_BUFFS of type Map<Integer,Integer>
[javac] 4 errors
[javac] 1 warning

 

 

 

to fazendo algo de errado ?

 

 

 

Sim esta pelo fato de na frozen n existe o método getProperty como na aCis.

 

Você está enganado.

O conteúdo está oculto, favor efetuar login ou se cadastrar!

Só colocar como está aí acima amigo.

Você esqueceu de mudar o local do arquivo para o da sua rev...

Editado por Tayran.JavaDev

"Tente ser uma pessoa de valor , não de sucesso" - Albert Einstein

 

 

Link para o comentário
Compartilhar em outros sites

 

 

 

 

 

 

Você está enganado.

 

 

O conteúdo está oculto, favor efetuar login ou se cadastrar!

Só colocar como está aí acima amigo.

 

Você esqueceu de mudar o local do arquivo para o da sua rev...

 

Sou bem leigo em java eu mexo de temoso kkk

 

esse dos no tvt.java

 

\gameserver\head-src\com\l2jfrozen\gameserver\model\entity\event\TvT.java:774: error: cannot find symbol

[javac] for (int i : Config.TVT_EVENT_MAGE_BUFFS.keys())

[javac] ^

[javac] symbol: method keys()

[javac] location: variable TVT_EVENT_MAGE_BUFFS of type Map<Integer,Integer>

\gameserver\head-src\com\l2jfrozen\gameserver\model\entity\event\TvT.java:786: error: cannot find symbol

[javac] for (int i : Config.TVT_EVENT_FIGHTER_BUFFS.keys())

[javac] ^

[javac] symbol: method keys()

[javac] location: variable TVT_EVENT_FIGHTER_BUFFS of type Map<Integer,Integer>

[javac] 2 errors

[javac] 1 warning

Link para o comentário
Compartilhar em outros sites

Cara você não está adicionando o código que te mandei !!!

retaura config ao original e usa o que mandei.

"Tente ser uma pessoa de valor , não de sucesso" - Albert Einstein

 

 

Link para o comentário
Compartilhar em outros sites

Cara você não está adicionando o código que te mandei !!!

 

retaura config ao original e usa o que mandei.

Bom dia

Eu acho q não tou entendendo deixa explicar o q tou fazendo

 

Voltei a config.java ao original e adicionei

O conteúdo está oculto, favor efetuar login ou se cadastrar!

onde estou errando ?

Editado por paulo jackson
Link para o comentário
Compartilhar em outros sites

O conteúdo está oculto, favor efetuar login ou se cadastrar!

Coloque assim a linha do .key no TVT , não tinha testado a parte do tvt ainda , agora testei e está certinho.

"Tente ser uma pessoa de valor , não de sucesso" - Albert Einstein

 

 

Link para o comentário
Compartilhar em outros sites

 

 

Bom dia

Eu acho q não tou entendendo deixa explicar o q tou fazendo

 

Voltei a config.java ao original e adicionei

O conteúdo está oculto, favor efetuar login ou se cadastrar!

onde estou errando ?

 

 

 

Então amigo funcionou ? testou ?

"Tente ser uma pessoa de valor , não de sucesso" - Albert Einstein

 

 

Link para o comentário
Compartilhar em outros sites

O conteúdo está oculto, favor efetuar login ou se cadastrar!

Coloque assim a linha do .key no TVT , não tinha testado a parte do tvt ainda , agora testei e está certinho.

 

nao apresentou erro vou testar em in game

ao iniciar o game server da a mensagem

 

invalid config property
TvTEventEngine[Config.load()]: invalid config property -> TvTEventFighterBuffs "1085,3"
TvTEventEngine[Config.load()]: invalid config property -> TvTEventMageBuffs "1085,3"
qual serrar esse errro ?
Editado por paulo jackson
Link para o comentário
Compartilhar em outros sites

Você está colocando a config errada , coloque ; no final

 

 

eu tentei sem o ; com o ; mais de um buff

 

# Example: 1504,1;1501,1;1502,1;1499,1
TvTEventFighterBuffs = 1085,3;
# Mage-class participants will be buffed with those buffs each respawn
# Format: skill1Id,skill1Level;skill2Id,skill2Level...
# Example: 1504,1;1500,1;1501,1;1085,3
TvTEventMageBuffs = 1085,3;
mesmo erro
INFO TvTEventEngine[Config.load()]: invalid config property -> TvTEventFighterBuffs "1085,3"
INFO TvTEventEngine[Config.load()]: invalid config property -> TvTEventMageBuffs "1085,3"
serrar onde errei
Link para o comentário
Compartilhar em outros sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Visitante
Responder esta pergunta...

×   Você colou conteúdo com formatação.   Remover formatação

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Processando...




×
×
  • Criar Novo...

Important Information

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.