Jump to content

Question

Posted

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.

6 answers to this question

Recommended Posts

  • 0
Posted (edited)

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
  • 0
Posted

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.

  • 0
Posted (edited)

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
  • 0
Posted

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!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


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