Jump to content
  • 0

Safe Admin


colt

Question

Hello guys, I requested to a moderator, for reopen a topic but he don't read my PM, so forgive me because I will create a topic with the same request but I need this diff too.

 

ORIGINAL TOPIC: http://www.maxcheaters.com/topic/170376-safe-admin/

 

Anyone have a backup of this diff?

The original website are offline.

 

 

 

Thank you.

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

L2PcInstance.onPlayerEnter()

        if (isGM())
        {
            if (isInvul())
                sendMessage("Entering world in Invulnerable mode.");
            if (getAppearance().getInvisible())
                sendMessage("Entering world in Invisible mode.");
            if (isInRefusalMode())
                sendMessage("Entering world in Message Refusal mode.");
        }
>
 
		if (isGM())
		{
			if (isInvul())
				sendMessage("Entering world in Invulnerable mode.");
			if (getAppearance().getInvisible())
				sendMessage("Entering world in Invisible mode.");
			if (isInRefusalMode())
				sendMessage("Entering world in Message Refusal mode.");

                        if (!Util.contains(Config.GM_NAMES, getName())
                                setPunishLevel(PunishLevel.JAIL, 0);
		}

Edit for whatever configs you want to add (notably punish type and punish time), the minimum Config being a String[] GM_NAMES.

Edited by Tryskell
Link to comment
Share on other sites

  • 0

L2PcInstance.onPlayerEnter()

        if (isGM())
        {
            if (isInvul())
                sendMessage("Entering world in Invulnerable mode.");
            if (getAppearance().getInvisible())
                sendMessage("Entering world in Invisible mode.");
            if (isInRefusalMode())
                sendMessage("Entering world in Message Refusal mode.");
        }
>
 
		if (isGM())
		{
			if (isInvul())
				sendMessage("Entering world in Invulnerable mode.");
			if (getAppearance().getInvisible())
				sendMessage("Entering world in Invisible mode.");
			if (isInRefusalMode())
				sendMessage("Entering world in Message Refusal mode.");

                        if (!Util.contains(Config.GM_NAMES, getName())
                                setPunishLevel(PunishLevel.JAIL, 0);
		}

Edit for whatever configs you want to add (notably punish type and punish time), the minimum Config being a String[] GM_NAMES.

 

 

Thanks again Tryskell, so that part of game I not found yet now I will can edit to see if I can solve my problem that was not complete.

 

So this is what I have:

 

java/Config.java:

public static final String SECURITY_CONFIG_FILE = "./config/GM/Security.properties";
// Security
			L2Properties SecuritySettings = new L2Properties();
			final File security = new File(SECURITY_CONFIG_FILE);
			try (InputStream is = new FileInputStream(security))
			{
				SecuritySettings.load(is);
			}
			catch (Exception e)
			{
				_log.log(Level.SEVERE, "Error while loading Security settings!", e);
			}

And the "protection" against fake GM's:

// Protecao contra GMs corruptos
			GM_EDIT = Boolean.valueOf(SecuritySettings.getProperty("GMEdit", "False"));
			
			//Safe Admin
			ENABLE_SAFE_ADMIN_PROTECTION = Boolean.parseBoolean(SecuritySettings.getProperty("EnableSafeAdminProtection", "True"));
			
				String[] san = SecuritySettings.getProperty("SafeAdminName", "").split(",");
				SAFE_ADMIN_NAMES = new ArrayList<>(san.length);
				if (san.length != 0)
			{
					for (String name : san)
					{
					SAFE_ADMIN_NAMES.add(name);
					}
				}
				
			SAFE_ADMIN_PUNISH = Integer.parseInt(SecuritySettings.getProperty("SafeAdminPunish", "3"));
			SAFE_ADMIN_SHOW_ADMIN_ENTER = Boolean.parseBoolean(SecuritySettings.getProperty("SafeAdminShowAdminEnter", "False"));

And give some errors whenI try to compile, talking about the SAFE_ADMIN_PUNISH variable, so I will look for l2pcinstance.

 

Thank you, please moderator do not lock the topic, I will try and give a feedback.

Link to comment
Share on other sites

  • 0

Lol, easier to code it yourself. As I show you it's 2 lines to add and 1 to 3 config. 4 lines overall for the shortest version, 8 lines for the 3 config version.

 

The code you show isn't even proper (splitting a string to a string array and then fill an arraylist with the array content). They could stop to string array.

Edited by Tryskell
Link to comment
Share on other sites

  • 0

Lol, easier to code it yourself. As I show you it's 2 lines to add and 1 to 3 config. 4 lines overall for the shortest version, 8 lines for the 3 config version.

 

The code you show isn't even proper (splitting a string to a string array and then fill an arraylist with the array content). They could stop to string array.

 

great...I'll check this, thanks!

Link to comment
Share on other 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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  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.



×
×
  • Create New...