Jump to content

Recommended Posts

Posted

People come here makes a contribution but mine.

Mod Administrator born with super rod

MOD DONE PRA L2JFROZEN.

 

Index: config/functions/access.properties
===================================================================

GMStartupInvulnerable = True
+
+# Add Super Haste skill on GM login.
+GMStartupSuperHaste = True


Index: trunk/gameserver/head-src/com/l2jfrozen/Config.java
===================================================================
public static boolean GM_STARTUP_INVISIBLE;
+public static boolean GM_SUPER_HASTE;

GM_STARTUP_INVULNERABLE = Boolean.parseBoolean(AccessSettings.getProperty("GMStartupInvulnerable", "true"));
+GM_SUPER_HASTE = Boolean.parseBoolean(AccessSettings.getProperty("GMStartupSuperHaste", "False"));


Index: trunk/gameserver/head-src/com/l2jfrozen/network/clientpackets/enterword.java
====================================================================
if (Config.GM_STARTUP_INVULNERABLE && AdminCommandAccessRights.getInstance().hasAccess("admin_invul", activeChar.getAccessLevel()))
activeChar.setIsInvul(true);

+if(Config.GM_SUPER_HASTE)
+SkillTable.getInstance().getInfo(7029, 4).getEffects(activeChar, activeChar);

 

 

Note: those who do not use L2JFrozen

 

basic correctness

 

+ if(Config.GM_SUPER_HASTE)
+{
+               SkillTable.getInstance().getInfo(7029, 4).getEffects(activeChar, activeChar);
+}

 

 

Creditos : RevL2jbr , LovePako

Posted

simply //gmspeed 1 or 2 or 3 or 4

+SkillTable.getInstance().getInfo(7029,4).getEffects(activeChar, activeChar);

you can change the 4 for skill level

 

 

getInfo(7029,4)

Guest
This topic is now closed to further replies.


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and 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..