Jump to content
  • 0

NPC Protection


Question

Posted

Prospa8isa na vro post giafto to 8ema kai den vrika mipos esis borite na me help 8elw script code gia npc opos buffer/gatekeper ph otan einai flag o char i exi karma 8elw na tou vgali ena mnm oti den bori den 8elw na ta valo apo configs to 3erw to 8elw mono se 2 npc... ty :)

 

x4kt9y.jpg

6 answers to this question

Recommended Posts

  • 0
Posted

oriste file mou ena java code

 

allow soe if flagged config

 

Index: /trunk/-Gameserver/java/net/gp/gameserver/handler/itemhandlers/ScrollOfEscape.java
===================================================================
--- /trunk/-Gameserver/java/net/gp/gameserver/handler/itemhandlers/ScrollOfEscape.java (revision 52)
+++ /trunk/-Gameserver/java/net/gp/gameserver/handler/itemhandlers/ScrollOfEscape.java (revision 58)
@@ -84,4 +84,11 @@
             return;
         }
+		
+        if (Config.ALLOW_SOE_IN_PVP && activeChar.getPvpFlag() != 0)
+        {  
+                activeChar.sendMessage("You can't use SOE if you're flagged!");  
+                return;  
+        }  
+

         // Check to see if the player is in a festival.
Index: /trunk/-Gameserver/java/net/gp/Config.java
===================================================================
--- /trunk/-Gameserver/java/net/gp/Config.java (revision 57)
+++ /trunk/Gameserver/java/net/gp/Config.java (revision 58)
@@ -874,4 +874,5 @@
     public static int L2JMOD_WEDDING_DIVORCE_COSTS;
	public static boolean ALLOW_GK_IN_PVP; 
+	public static boolean ALLOW_SOE_IN_PVP;

     
@@ -1924,4 +1925,5 @@
                 L2JMOD_WEDDING_DIVORCE_COSTS            = Integer.parseInt(L2JModSettings.getProperty("WeddingDivorceCosts", "20"));
				ALLOW_GK_IN_PVP                         = Boolean.parseBoolean(L2JModSettings.getProperty("AllowGkInPvP", "True"));
+				ALLOW_SOE_IN_PVP                        = Boolean.parseBoolean(L2JModSettings.getProperty("AllowSoEInPvP", "True"));


Index: /trunk/-Gameserver/config/l2jmods.properties
===================================================================
--- /trunk/-Gameserver/config/l2jmods.properties (revision 57)
+++ /trunk/-Gameserver/config/l2jmods.properties (revision 58)
@@ -137,2 +137,6 @@
# Default : True
AllowGkInPvP = True
+
+# If is set to False , players can't use SOE when they are flagged!
+# Default : True
+AllowSoEInPvP = True

 

 

oriste kai ena allo

 

Allow/Restrict Gk If Flagged config

 

Index: /trunk/-Gameserver/java/net/gp/gameserver/model/actor/instance/L2NpcInstance.java
===================================================================
--- /trunk/-Gameserver/java/net/gp/gameserver/model/actor/instance/L2NpcInstance.java (revision 52)
+++ /trunk/-Gameserver/java/net/gp/gameserver/model/actor/instance/L2NpcInstance.java (revision 57)
@@ -86,4 +86,6 @@
import net.gp.gameserver.templates.L2NpcTemplate;
import net.gp.gameserver.templates.L2Weapon;
+import net.gp.gameserver.model.actor.instance.L2PcInstance; 
+import net.gp.gameserver.model.actor.instance.L2PlayableInstance;
import net.gp.util.Rnd;
/**
@@ -1735,4 +1737,20 @@
      * 
      */
+	 
+	 
+	     
+    public void restrict(L2PlayableInstance playable, int val)
+    {
+        if (!(playable instanceof L2PcInstance)) return;
+        L2PcInstance activeChar = (L2PcInstance)playable;
+        if (Config.ALLOW_GK_IN_PVP && activeChar.getPvpFlag() != 0 && this instanceof L2TeleporterInstance)
+        {
+                activeChar.sendMessage("You can't use GK if you're flagged!");
+                return;
+        }
+   }
+    
+
+	 
     public void showChatWindow(L2PcInstance player, int val)
     {
Index: /trunk/-Gameserver/java/net/gp/gameserver/handler/admincommandhandlers/AdminAdmin.java
===================================================================
--- /trunk/-Gameserver/java/net/gp/gameserver/handler/admincommandhandlers/AdminAdmin.java (revision 52)
+++ /trunk/-Gameserver/java/net/gp/gameserver/handler/admincommandhandlers/AdminAdmin.java (revision 57)
@@ -226,8 +226,14 @@
				}

+				else if(type.startsWith("configs")) 
+ 		                                { 
+ 		                                        Config.loadAll(); 
+ 		                                        activeChar.sendMessage("Configs has benn reloaded"); 
+ 		                                } 
+				
			}
			catch(Exception e)
			{
-				activeChar.sendMessage("Usage:  //reload <multisell|skill|npc|htm|item|instancemanager>");
+				activeChar.sendMessage("Usage:  //reload <multisell|skill|npc|htm|item|instancemanager|configs>");
			}
		}
Index: /trunk/-Gameserver/java/net/gp/Config.java
===================================================================
--- /trunk/-Gameserver/java/net/gp/Config.java (revision 56)
+++ /trunk/-Gameserver/java/net/gp/Config.java (revision 57)
@@ -873,4 +873,5 @@
     public static boolean L2JMOD_WEDDING_FORMALWEAR;
     public static int L2JMOD_WEDDING_DIVORCE_COSTS;
+	public static boolean ALLOW_GK_IN_PVP; 

     
@@ -1922,4 +1923,5 @@
                 L2JMOD_WEDDING_FORMALWEAR               = Boolean.parseBoolean(L2JModSettings.getProperty("WeddingFormalWear", "True"));
                 L2JMOD_WEDDING_DIVORCE_COSTS            = Integer.parseInt(L2JModSettings.getProperty("WeddingDivorceCosts", "20"));
+				ALLOW_GK_IN_PVP                         = Boolean.parseBoolean(L2JModSettings.getProperty("AllowGkInPvP", "True"));


@@ -2563,4 +2565,9 @@
         Config.saveHexid(serverId, string, HEXID_FILE);
     }
+    
+    public static void loadAll() 
+ 		    { 
+ 		        load(); 
+ 		    } 

     /**
Index: /trunk/-Gameserver/config/l2jmods.properties
=================================================================
--- /trunk/Gameserver/config/l2jmods.properties (revision 52)
+++ /trunk/Gameserver/config/l2jmods.properties (revision 57)
@@ -133,2 +133,6 @@
# no ";" at the start or end
TvTEventDoorsCloseOpenOnStartEnd =
+
+# If is set to False , players can't use GK when they are flagged!
+# Default : True
+AllowGkInPvP = True

  • 0
Posted

oriste file mou ena java code

 

allow soe if flagged config

 

Index: /trunk/-Gameserver/java/net/gp/gameserver/handler/itemhandlers/ScrollOfEscape.java
===================================================================
--- /trunk/-Gameserver/java/net/gp/gameserver/handler/itemhandlers/ScrollOfEscape.java (revision 52)
+++ /trunk/-Gameserver/java/net/gp/gameserver/handler/itemhandlers/ScrollOfEscape.java (revision 58)
@@ -84,4 +84,11 @@
             return;
         }
+		
+        if (Config.ALLOW_SOE_IN_PVP && activeChar.getPvpFlag() != 0)
+        {  
+                activeChar.sendMessage("You can't use SOE if you're flagged!");  
+                return;  
+        }  
+

         // Check to see if the player is in a festival.
Index: /trunk/-Gameserver/java/net/gp/Config.java
===================================================================
--- /trunk/-Gameserver/java/net/gp/Config.java (revision 57)
+++ /trunk/Gameserver/java/net/gp/Config.java (revision 58)
@@ -874,4 +874,5 @@
     public static int L2JMOD_WEDDING_DIVORCE_COSTS;
	public static boolean ALLOW_GK_IN_PVP; 
+	public static boolean ALLOW_SOE_IN_PVP;

     
@@ -1924,4 +1925,5 @@
                 L2JMOD_WEDDING_DIVORCE_COSTS            = Integer.parseInt(L2JModSettings.getProperty("WeddingDivorceCosts", "20"));
				ALLOW_GK_IN_PVP                         = Boolean.parseBoolean(L2JModSettings.getProperty("AllowGkInPvP", "True"));
+				ALLOW_SOE_IN_PVP                        = Boolean.parseBoolean(L2JModSettings.getProperty("AllowSoEInPvP", "True"));


Index: /trunk/-Gameserver/config/l2jmods.properties
===================================================================
--- /trunk/-Gameserver/config/l2jmods.properties (revision 57)
+++ /trunk/-Gameserver/config/l2jmods.properties (revision 58)
@@ -137,2 +137,6 @@
# Default : True
AllowGkInPvP = True
+
+# If is set to False , players can't use SOE when they are flagged!
+# Default : True
+AllowSoEInPvP = True

 

 

oriste kai ena allo

 

Allow/Restrict Gk If Flagged config

 

Index: /trunk/-Gameserver/java/net/gp/gameserver/model/actor/instance/L2NpcInstance.java
===================================================================
--- /trunk/-Gameserver/java/net/gp/gameserver/model/actor/instance/L2NpcInstance.java (revision 52)
+++ /trunk/-Gameserver/java/net/gp/gameserver/model/actor/instance/L2NpcInstance.java (revision 57)
@@ -86,4 +86,6 @@
import net.gp.gameserver.templates.L2NpcTemplate;
import net.gp.gameserver.templates.L2Weapon;
+import net.gp.gameserver.model.actor.instance.L2PcInstance; 
+import net.gp.gameserver.model.actor.instance.L2PlayableInstance;
import net.gp.util.Rnd;
/**
@@ -1735,4 +1737,20 @@
      * 
      */
+	 
+	 
+	     
+    public void restrict(L2PlayableInstance playable, int val)
+    {
+        if (!(playable instanceof L2PcInstance)) return;
+        L2PcInstance activeChar = (L2PcInstance)playable;
+        if (Config.ALLOW_GK_IN_PVP && activeChar.getPvpFlag() != 0 && this instanceof L2TeleporterInstance)
+        {
+                activeChar.sendMessage("You can't use GK if you're flagged!");
+                return;
+        }
+   }
+    
+
+	 
     public void showChatWindow(L2PcInstance player, int val)
     {
Index: /trunk/-Gameserver/java/net/gp/gameserver/handler/admincommandhandlers/AdminAdmin.java
===================================================================
--- /trunk/-Gameserver/java/net/gp/gameserver/handler/admincommandhandlers/AdminAdmin.java (revision 52)
+++ /trunk/-Gameserver/java/net/gp/gameserver/handler/admincommandhandlers/AdminAdmin.java (revision 57)
@@ -226,8 +226,14 @@
				}

+				else if(type.startsWith("configs")) 
+ 		                                { 
+ 		                                        Config.loadAll(); 
+ 		                                        activeChar.sendMessage("Configs has benn reloaded"); 
+ 		                                } 
+				
			}
			catch(Exception e)
			{
-				activeChar.sendMessage("Usage:  //reload <multisell|skill|npc|htm|item|instancemanager>");
+				activeChar.sendMessage("Usage:  //reload <multisell|skill|npc|htm|item|instancemanager|configs>");
			}
		}
Index: /trunk/-Gameserver/java/net/gp/Config.java
===================================================================
--- /trunk/-Gameserver/java/net/gp/Config.java (revision 56)
+++ /trunk/-Gameserver/java/net/gp/Config.java (revision 57)
@@ -873,4 +873,5 @@
     public static boolean L2JMOD_WEDDING_FORMALWEAR;
     public static int L2JMOD_WEDDING_DIVORCE_COSTS;
+	public static boolean ALLOW_GK_IN_PVP; 

     
@@ -1922,4 +1923,5 @@
                 L2JMOD_WEDDING_FORMALWEAR               = Boolean.parseBoolean(L2JModSettings.getProperty("WeddingFormalWear", "True"));
                 L2JMOD_WEDDING_DIVORCE_COSTS            = Integer.parseInt(L2JModSettings.getProperty("WeddingDivorceCosts", "20"));
+				ALLOW_GK_IN_PVP                         = Boolean.parseBoolean(L2JModSettings.getProperty("AllowGkInPvP", "True"));


@@ -2563,4 +2565,9 @@
         Config.saveHexid(serverId, string, HEXID_FILE);
     }
+    
+    public static void loadAll() 
+ 		    { 
+ 		        load(); 
+ 		    } 

     /**
Index: /trunk/-Gameserver/config/l2jmods.properties
=================================================================
--- /trunk/Gameserver/config/l2jmods.properties (revision 52)
+++ /trunk/Gameserver/config/l2jmods.properties (revision 57)
@@ -133,2 +133,6 @@
# no ";" at the start or end
TvTEventDoorsCloseOpenOnStartEnd =
+
+# If is set to False , players can't use GK when they are flagged!
+# Default : True
+AllowGkInPvP = True

 

den 8elw code des ti 8elw afto quest script :) to sigekrimeno pou 8elw to exi sto http://www.l2sexi.es/  ama katalaves :)

  • 0
Posted

den 8elw code des ti 8elw afto quest script :) to sigekrimeno pou 8elw to exi sto http://www.l2sexi.es/  ama katalaves :)

Δεν νομίζω να υπάρχει κάποιο τέτοιο Share στο Forum. Καλύτερα βάλε τον κώδικα.

  • 0
Posted

Δεν νομίζω να υπάρχει κάποιο τέτοιο Share στο Forum. Καλύτερα βάλε τον κώδικα.

 

to code to exi se ola ta Aio NPC tou Allen ala den boro na to 3exoriso ama alazo apo to script m to dixni error :)

Guest
This topic is now closed to further replies.


  • Posts

    • This back accessory is converted from a cloak, but unfortunately, it's only available for human male warriors. Other races don't have the animation rigged. I hope to improve this back accessory. After importing the animation and skeleton using Unreal Engine 2 Runtime, I get an error when saving it back to a .UKX file. Could you please advise me on how to add other races without encountering errors? Thank you very much!   https://www.mediafire.com/file/g52dgvbp0l28sdo/MFighter_Fuckl2jangel.ukx/file These are the effects of back accessories
    • Welcome to L2EpicFail Server developed by gamers for gamers!  OBT - 9th November 2025 at 18:00 GMT+0 GRAND OPENING - 14th November 2025 at 18:00 GMT+0 Website : https://l2epic.fail/ Discord : https://discord.gg/6hwhrkrHBG     Server Features and Rates Xp – 15x Sp – 9x Adena – 6x Drop – 3x Spoil - 3x Seal Stones drop -  3x   Epic Raid Boss drop - 1x Regular RBs - EXP 5x, SP 5x, drop 4x   Quest drop - 1x (some quests customized to 3x) Quest reward - 1x, Adena 3x, EXP 3x, SP 3x     Premium Account Xp +20% Sp +20% Adena +20% Drop +20% Spoil +20% Quest reward +20%   get by vote or donate World chat 20 times/day use ">" in chat. Buff Book outside of town. Applies to all accounts.     Special Features Classic interface ActiveAnticheat Vote System Missions Attendance check And more in information below     Noblesse There are 3 ways how to make noblesse 1 - Retail Quest with killing barakiel 2 - Modifed Quest, choose killing mobs for 100 items instead of barakiel 3 - Can be bought for Epic Coins     Raid Rank Killing regular Raids gives points according to the level of the RB to the clan of the player who killed the boss. At the end of every month, there will be rewards for top clans. For more info, follow our Discord.   monthly period killing RB = points to clan according to RB level rewards up to Valakas Necklace (not the first month) current statistics can be checked online     Epic Bosses & Respawns   Queen Ant 20 - 30 hours respawn window 1 hour always displayed in .epic auto PvP zone Max grade allowed - C -grade, Boss level 80 HP boosted drop chance 40% guards, nurses lvl 40   Orfen 20 - 30 hours respawn window 1 hour always displayed in .epic auto PvP zone Max grade allowed - B -grade, Boss level 80 HP boosted drop chance 40% earring gives +1 WIT, +1 INT   Core 20 - 30 hours respawn window 1 hour always displayed in .epic auto PvP zone Max grade allowed - B -grade, Boss level 80 HP boosted drop chance 40% ring gives +1 STR, +1 DEX   Zaken 44 - 54 hours respawn window 1 hour always displayed in .epic auto PvP zone  Max grade allowed - A -grade, Boss level 80 doors opened only 5 mins HP boosted   Baium Every Sunday 20:30 - 21:30 window 1 hour always displayed in .epic auto PvP zone (13 - 14th ToI level) regular HP   Frintezza Every Monday, Wednesday, Friday 20:00 - 21:00 window 1 hour always displayed in .epic auto PvP zone (all IT entrance) max 5 parties to entry max 500 range from NPC   Antharas Every two weeks on Saturday 21:00 - 22:00 window 1 hour always displayed in .epic auto PvP zone (bridge to heart)   Valakas Every two weeks on Saturday 21:00 - 22:00 window 1 hour always displayed in .epic auto PvP zone (Klein to heart)   every Epic RB drops Epic Medals equal to RB level x 10     Regular Bosses all regular RBs HP boosted M. def boosted a bit to give advantage to fighters all regular RBs respawn 24 - 30 hours every RB drops Epic Medals equal to RB level     Added Skills Mass Sweep - All Bounty Hunters 40+ Block Buff - All Characters, toggle Escape: 20 seconds - All Characters, no more SoEs   Skills autolearn. Losing skills after 16 levels of delevel. Max buffs 24 + 4 with books (no autolearn)     Augments NoGrade - 4% chance MidGrade - 5% chance HighGrade - 7% chance TopGrade - 6% chance   GM shop weapon/armor/jwl (max C grade) shots/spiritshots (max C grade) mana potions (500 MP, 5s)     NPC buffer all buffs, songs, dances including 3rd prof + resists 1 hour duration all chars Buff Book in inventory     Global Gatekeeper all towns including cata/necro ToI 3/5/7/10th     Olympiad Thursday to Saturday 18:00 - 23:50 UTC+0 period 7 days no class participants min 5 base class participants min 10 max enchant +6     Class Transfer 1st class 50k adena 2nd class 500k adena 3rd class 20kk adena + 700 Halisha marks (tradeable)     Noblesse Quest Quest retail like. Moonstone Shards, Demons Blood etc. quest drop boosted     Subclass Quest To get the quest, you have to be 75+ on your main character (start Reorin in Giran) Bring item from Cabrio chest Bring items from Hallate, Kernon and Golkonda chests Bring this back to Reorin Bring 984 B-grade crystals and top B weapon to Reorin Get low A-grade weapon as reward Done , you can take subclass (up to 5) from any Master in town     Clans all clan members get clan skills (no need for titles) max clan slots 65, max ppl in PvP zone 63 leave/dismiss penalty 0 hours max clans in ally 3     Others   max 3 windows per HWID (only one in PvP zone) protection after teleport for 20 seconds arrows and spellbooks drop turned off weight limit 10x, stackable enchants and LS champions blue (5x HP) min level for trade = 40, chat = 20 BoM/MoM spawned in towns
    • Hi, thank you for your help but still the same , try treadpool as well and try put buffs in database for it work in background but I still with the same problems. what confused me is in npc it works fine but in scheme.
    • you need send communityboard again after bypass
    • Stop spam please, if you don't know what means L2OFF better to go to another topic.
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock