Jump to content
  • 0

[help]java code flagged players can't use heal


Question

Posted

+AltFlagedPlayerCanUseHeal = True

+

Index: java/net/sf/l2j/Config.java

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

--- java/net/sf/l2j/Config.java (revision 2444)

+++ java/net/sf/l2j/Config.java (working copy)

@@ -154,6 +154,8 @@

    public static boolean ALT_GAME_KARMA_PLAYER_CAN_SHOP;

    public static boolean ALT_GAME_KARMA_PLAYER_CAN_TELEPORT;

    public static boolean ALT_GAME_KARMA_PLAYER_CAN_USE_GK;

+    public static boolean ALT_GAME_FLAGED_PLAYER_CAN_USE_Heal;

    public static boolean ALT_GAME_KARMA_PLAYER_CAN_TRADE;

    public static boolean ALT_GAME_KARMA_PLAYER_CAN_USE_WAREHOUSE;

    public static boolean IS_CRAFTING_ENABLED;

@@ -1186,6 +1188,8 @@

                ALT_GAME_KARMA_PLAYER_CAN_BE_KILLED_IN_PEACEZONE = Boolean.parseBoolean(Character.getProperty("AltKarmaPlayerCanBeKilledInPeaceZone", "false"));

                ALT_GAME_KARMA_PLAYER_CAN_SHOP = Boolean.parseBoolean(Character.getProperty("AltKarmaPlayerCanShop", "true"));

                ALT_GAME_KARMA_PLAYER_CAN_TELEPORT = Boolean.parseBoolean(Character.getProperty("AltKarmaPlayerCanTeleport", "true"));

+                ALT_GAME_FLAGED_PLAYER_CAN_USE_Heal = Boolean.parseBoolean(Character.getProperty("AltFlagedPlayerCanUseHeal", "false"));

                ALT_GAME_KARMA_PLAYER_CAN_USE_Heal = Boolean.parseBoolean(Character.getProperty("AltKarmaPlayerCanUseHeal", "false"));

                ALT_GAME_KARMA_PLAYER_CAN_TRADE = Boolean.parseBoolean(Character.getProperty("AltKarmaPlayerCanTrade", "true"));

                ALT_GAME_KARMA_PLAYER_CAN_USE_WAREHOUSE = Boolean.parseBoolean(Character.getProperty("AltKarmaPlayerCanUseWareHouse", "true"));

@@ -2092,6 +2096,8 @@

        else if (pName.equalsIgnoreCase("AltKarmaPlayerCanShop")) ALT_GAME_KARMA_PLAYER_CAN_SHOP = Boolean.parseBoolean(pValue);

        else if (pName.equalsIgnoreCase("AltKarmaPlayerCanUseHeal")) ALT_GAME_KARMA_PLAYER_CAN_USE_Heal = Boolean.parseBoolean(pValue);

        else if (pName.equalsIgnoreCase("AltKarmaPlayerCanTeleport")) ALT_GAME_KARMA_PLAYER_CAN_TELEPORT = Boolean.parseBoolean(pValue);

+        else if (pName.equalsIgnoreCase("AltFlagedPlayerCanUseHeal")) ALT_GAME_FLAGED_PLAYER_CAN_USE_Heal = Boolean.parseBoolean(pValue);

        else if (pName.equalsIgnoreCase("AltKarmaPlayerCanTrade")) ALT_GAME_KARMA_PLAYER_CAN_TRADE = Boolean.parseBoolean(pValue);

        else if (pName.equalsIgnoreCase("AltKarmaPlayerCanUseWareHouse")) ALT_GAME_KARMA_PLAYER_CAN_USE_WAREHOUSE = Boolean.parseBoolean(pValue);

        else if (pName.equalsIgnoreCase("AltRequireCastleForDawn")) ALT_GAME_REQUIRE_CASTLE_DAWN = Boolean.parseBoolean(pValue);

Index: java/net/sf/l2j/gameserver/model/actor/instance/L2TeleporterInstance.java

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

--- java/net/sf/l2j/gameserver/model/actor/instance/L2TeleporterInstance.java (revision 2444)

+++ java/net/sf/l2j/gameserver/model/actor/instance/L2TeleporterInstance.java (working copy)

@@ -227,6 +227,11 @@

player.sendPacket(new SystemMessage(SystemMessageId.NO_PORT_THAT_IS_IN_SIGE));

return;

}

+ else if (!Config.ALT_GAME_FLAGED_PLAYER_CAN_USE_Heal && player.getPvpFlag() > 0)

+ {

+ player.sendMessage("Healing in PvP ??? ts ts ts !! Bad Boy!!");

+ return;

+ }

else if (!Config.ALT_GAME_KARMA_PLAYER_CAN_USE_GK && player.getKarma() > 0) //karma

{

player.sendMessage("Go away, you're not welcome here.");

 

guys to code to ekana twra... einai ok?

4 answers to this question

Recommended Posts

  • 0
Posted

ομγ

τι σχέση έχει αυτό που θές να κάνεις με αυτο εδώ L2TeleporterInstance μπορείς να μου πείς?Για να το κάνεις αυτό θα πάς στο αρχεί skills.heal.java , σκέψου λίγο >.>

Guest
This topic is now closed to further replies.
×
×
  • Create New...