Ir para conteúdo
  • Cadastre-se

L2JFrozen Revisões - ( Tópico Antigo)


Bluur

Posts recomendados

 

Friend who also will be added to the Items datapack Reputation clan. please. or explains a bit like I do.?

I have this I

Index: gameserver/config/functions/l2jfrozen.properties

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

--- gameserver/config/functions/l2jfrozen.properties (revision 94)

+++ gameserver/config/functions/l2jfrozen.properties (revision 95)

@@ -69,6 +69,22 @@

# Hero for X days, 0 forever.

HeroCustomDay = 7

+# -------------------------------------------------------

+# Clan Reputation Custom Item Configuration

+# -------------------------------------------------------

+# Would you like to enable the Clan Reputation points item?

+# Default: False

+EnableTheClanRepPointsItem = False

+# What's the Min Level in which clan leaders will be able to use the item?

+# Default 5

+MinClanLevelNeededForCR = 5

+# How many rep points will be rewarded to the clan?

+# Default 500

+HowManyClanRepsToGive = 500

+# Set the ID of the Clan Rep Points Item

+# Default = 6673 (Festival Adena)

+CRItemID = 9957

+

# --------------------------------------------

# Custom hero subclass skill -

# --------------------------------------------

Index: gameserver/head-src/com/l2jfrozen/gameserver/handler/ItemHandler.java

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

--- gameserver/head-src/com/l2jfrozen/gameserver/handler/ItemHandler.java (revision 94)

+++ gameserver/head-src/com/l2jfrozen/gameserver/handler/ItemHandler.java (revision 95)

@@ -32,6 +32,7 @@

import com.l2jfrozen.gameserver.handler.itemhandlers.CharChangePotions;

import com.l2jfrozen.gameserver.handler.itemhandlers.ChestKey;

import com.l2jfrozen.gameserver.handler.itemhandlers.ChristmasTree;

+import com.l2jfrozen.gameserver.handler.itemhandlers.ClanRepsItem;

import com.l2jfrozen.gameserver.handler.itemhandlers.CrystalCarol;

import com.l2jfrozen.gameserver.handler.itemhandlers.Crystals;

import com.l2jfrozen.gameserver.handler.itemhandlers.CustomPotions;

@@ -118,6 +119,7 @@

registerItemHandler(new BeastSoulShot());

registerItemHandler(new BeastSpiritShot());

registerItemHandler(new ChestKey());

+ registerItemHandler(new ClanRepsItem());

registerItemHandler(new CustomPotions());

registerItemHandler(new PaganKeys());

registerItemHandler(new Maps());

Index: gameserver/head-src/com/l2jfrozen/gameserver/handler/itemhandlers/ClanRepsItem.java

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

--- gameserver/head-src/com/l2jfrozen/gameserver/handler/itemhandlers/ClanRepsItem.java (revision 0)

+++ gameserver/head-src/com/l2jfrozen/gameserver/handler/itemhandlers/ClanRepsItem.java (revision 95)

@@ -0,0 +1,77 @@

+/*

+ * This program is free software; you can redistribute it and/or modify

+ * it under the terms of the GNU General Public License as published by

+ * the Free Software Foundation; either version 2, or (at your option)

+ * any later version.

+ *

+ * This program is distributed in the hope that it will be useful,

+ * but WITHOUT ANY WARRANTY; without even the implied warranty of

+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the

+ * GNU General Public License for more details.

+ *

+ * You should have received a copy of the GNU General Public License

+ * along with this program; if not, write to the Free Software

+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA

+ * 02111-1307, USA.

+ *

+ *

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

+ */

+package com.l2jfrozen.gameserver.handler.itemhandlers;

+

+/**

+ *

+ *

+ * @author Coyote

+ * Adapted by Strike

+ */

+

+

+import com.l2jfrozen.Config;

+import com.l2jfrozen.gameserver.handler.IItemHandler;

+import com.l2jfrozen.gameserver.model.actor.instance.L2ItemInstance;

+import com.l2jfrozen.gameserver.model.actor.instance.L2PlayableInstance;

+import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;

+import com.l2jfrozen.gameserver.network.serverpackets.MagicSkillUser;

+

+public class ClanRepsItem implements IItemHandler

+{

+ private static final int ITEM_IDS[] =

+ {

+ Config.CR_ITEM_REPS_ITEM_ID

+ };

+

+ public void useItem(L2PlayableInstance playable, L2ItemInstance item)

+ {

+ if (!(playable instanceof L2PcInstance))

+ {

+ return;

+ }

+

+ L2PcInstance activeChar = (L2PcInstance)playable;

+

+ if (!activeChar.isClanLeader())

+ {

+ activeChar.sendMessage("This can be used only by Clan Leaders!");

+ return;

+ }

+

+ else if (!(activeChar.getClan().getLevel() >= Config.CR_ITEM_MIN_CLAN_LVL))

+ {

+ activeChar.sendMessage("Your Clan Level is not big enough to use this item!");

+ return;

+ }

+ else

+ {

+ activeChar.getClan().setReputationScore(activeChar.getClan().getReputationScore()+Config.CR_ITEM_REPS_TO_BE_AWARDED, true);

+ activeChar.sendMessage("Your clan has earned "+ Config.CR_ITEM_REPS_TO_BE_AWARDED +" rep points!");

+ MagicSkillUser MSU = new MagicSkillUser(activeChar, activeChar, 2024, 1, 1, 0);

+ activeChar.broadcastPacket(MSU);

+ playable.destroyItem("Consume", item.getObjectId(), 1, null, false);

+ }

+ }

+

+ public int[] getItemIds()

+ {

+ return ITEM_IDS;

+ }

+}

Index: gameserver/head-src/com/l2jfrozen/Config.java

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

--- gameserver/head-src/com/l2jfrozen/Config.java (revision 94)

+++ gameserver/head-src/com/l2jfrozen/Config.java (revision 95)

@@ -2379,7 +2379,16 @@

public static String PVP1_CUSTOM_MESSAGE;

public static String PVP2_CUSTOM_MESSAGE;

public static boolean SHOW_NPC_CREST;

-

+

+ /**

+ * Clan Reputation Item

+ * Adapted By Strike

+ */

+ public static boolean USE_CR_ITEM;

+ public static int CR_ITEM_MIN_CLAN_LVL;

+ public static int CR_ITEM_REPS_TO_BE_AWARDED;

+ public static int CR_ITEM_REPS_ITEM_ID;

+

//============================================================

public static void loadL2JFrozenConfig()

{

@@ -2499,6 +2508,11 @@

PVP1_CUSTOM_MESSAGE = L2JFrozenSettings.getProperty("PvP1CustomMeesage", "You have been teleported to PvP Zone 1!");

PVP2_CUSTOM_MESSAGE = L2JFrozenSettings.getProperty("PvP2CustomMeesage", "You have been teleported to PvP Zone 2!");

SHOW_NPC_CREST = Boolean.parseBoolean(L2JFrozenSettings.getProperty("ShowNpcCrest", "False"));

+ /** Clan reputation Item**/

+ USE_CR_ITEM = Boolean.parseBoolean(L2JFrozenSettings.getProperty("EnableTheClanRepPointsItem", "False"));

+ CR_ITEM_MIN_CLAN_LVL = Integer.parseInt(L2JFrozenSettings.getProperty("ClanLevelNeededForCR", "5"));

+ CR_ITEM_REPS_TO_BE_AWARDED = Integer.parseInt(L2JFrozenSettings.getProperty("HowManyClanRepsToGive", "500"));

+ CR_ITEM_REPS_ITEM_ID = Integer.parseInt(L2JFrozenSettings.getProperty("CRItemID", "6673"));

}

catch(Exception e)

{

 

 

 

A very interesting Mod will add to see more by what i saw this mod you ae clikas in particular items and you gain reputation and clan level 8. And another thing this boot code within a topic lower spoiler to let a friend :wink:

Editado por Rafael-.-Korn
29bnb15.jpg

Link para o comentário
Compartilhar em outros sites


Quero saber se essa 948 postada ai no decorrer do tópico pelo KORN está com mods adicionados? Sabe dizer se tem aquele mod em que o player vira nobles apenas matando o barakiel? sem precisar fazer a quest? Esse mod é maneiro.

Nao botei esse mod não, mais estarei vendo isso na proxima atualização da frozen.
29bnb15.jpg

Link para o comentário
Compartilhar em outros sites

Esta apenas acontecendo com voce isso, normal aqui

Amigo deixei o sv online com 150 play em 40min de server on apresentou erro no gameserver de CORE !

Convido a todos para conheçer um servidor diferenciado,inaugurado dia 26-03! clique no banner abaixo

 

cojPkeB.gif

 

Link para o comentário
Compartilhar em outros sites

Eu não sei porque mas aqui comigo eu uso //spawn pra qualquer npc e quando dou rr no servidor tudo que eu coloquei some....se alguém puder me ajudar, desde ja agradeço :biggrin:

Quando acontece isso , dá um erro no gameserver, mande uma print e post no tópico .

provavelmente é um npc custom com a mesma id de um outro npc.

Masturbe sua mente, goze suas ideias.

Link para o comentário
Compartilhar em outros sites

Quando acontece isso , dá um erro no gameserver, mande uma print e post no tópico . provavelmente é um npc custom com a mesma id de um outro npc.

ñ é isso ñ ...porque eu apenas add o npc de classe 31228 e o npc Leandro...rev limpa...só estes 2 npc..então ñ é ID igual :(

assinaturayb.png

Deus é maior!

Link para o comentário
Compartilhar em outros sites

ñ é isso ñ ...porque eu apenas add o npc de classe 31228 e o npc Leandro...rev limpa...só estes 2 npc..então ñ é ID igual :(

 

Qual REV vc esta usando ???

jah tentou trocar a REV ?? uma mais recente ?? ou talvez mais antiga ??

l2jbrasilbobe.png

 

"Quem não se sentar para APRENDER... Jamais ficará de pé para ENSINAR..."

Link para o comentário
Compartilhar em outros sites

Who knows a bit of Java to help me a bit.

Go In the La Java Tutorials You Get All The Doubts About Java

http://www.l2jbrasil.com/index.php?/forum/179-tutoriais-java/

Editado por kamael

New Projeto em Breve Base aCis

Link para o comentário
Compartilhar em outros sites

Eu não sei porque mas aqui comigo eu uso //spawn pra qualquer npc e quando dou rr no servidor tudo que eu coloquei some....se alguém puder me ajudar, desde ja agradeço :biggrin:

 

Boa tarde, amigo.

Uma coisa que me veio a cabeça enquanto lia a sua dúvida e que, acredito eu, possa ser o causador do seu pequeno problema...

 

O NPC em questão está na tabela npc ou custom_npc?

 

Caso seja na segunda tabela, ela está ativa nos properties do servidor?

Dê uma olhada e poste aqui, tranquilo?

Caso apareça erro no gameserver, poste também (O erro completo, beleza?) para a gente dá uma olhada.

 

Abraço!

Link para o comentário
Compartilhar em outros sites

Eu não sei porque mas aqui comigo eu uso //spawn pra qualquer npc e quando dou rr no servidor tudo que eu coloquei some....se alguém puder me ajudar, desde ja agradeço :biggrin:

 

gameserver\config\functions\l2jfrozen

 

# --------------------------

# Custom Tables -

# --------------------------

# Enable / Disable custom tables.

# The rest of the custom tables are already activated.

 

# Custom Spawnlist Table

CustomSpawnlistTable = False =======>True

 

# Gm Spawn gets saved on custom_spawnlist Table?

SaveGmSpawnOnCustom = False

 

# Gm Spawn gets deleted on custom_spawnlist Table?

DeleteGmSpawnOnCustom = False ====> True

29bnb15.jpg

Link para o comentário
Compartilhar em outros sites

# Gm Spawn gets saved on custom_spawnlist Table?

SaveGmSpawnOnCustom = False========> aqui é true também ne

Rafael-.-Korn valeu amigo ....ainda ñ testei mas acredito que seja isso msm ^^ :biggrin:

olha eu testei aqui SaveGmSpawnOnCustom = False (colocando True e False) o npc walker deu certo, agora o gato de classe de ID 31228 ñ....ele realmente some :wacko:

Editado por Comandante

assinaturayb.png

Deus é maior!

Link para o comentário
Compartilhar em outros sites

# Gm Spawn gets saved on custom_spawnlist Table?

SaveGmSpawnOnCustom = False========> aqui é true também ne

Rafael-.-Korn valeu amigo ....ainda ñ testei mas acredito que seja isso msm ^^ :biggrin:

olha eu testei aqui SaveGmSpawnOnCustom = False (colocando True e False) o npc walker deu certo, agora o gato de classe de ID 31228 ñ....ele realmente some :wacko:

Eu não marco essa opção porque por exemplo se eu da spawn em algum bos essa opção ira salva ele, ae entao todas vez que voce der rr ou mata-lo ele ira aparece novamente, mais se isso ae resolve seu problema nao posso fala nada né rsrs.
29bnb15.jpg

Link para o comentário
Compartilhar em outros sites

Eu não marco essa opção porque por exemplo se eu da spawn em algum bos essa opção ira salva ele, ae entao todas vez que voce der rr ou mata-lo ele ira aparece novamente, mais se isso ae resolve seu problema nao posso fala nada né rsrs.

Descobri Rafael como a rev so tem mods nada esta ativado tinha que ativar em Class Master:

AllowClassMasters =True......ai deu certo...se por acaso eu estiver errada me corrija...e obg pela atenção :biggrin:

assinaturayb.png

Deus é maior!

Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.





×
×
  • 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.