Jump to content
  • 0
Gra Des Illus

Disabling Pin Code

Question

How to disable PIN CODE using IMPORT FOLDER?

I tried adding this lines inside conf/import/char-server.conf

pincode: {
    enabled: false
}

but this warning message still remains [Warning]: pincode_enabled requires PACKETVER 20110309 or higher. disabling...

Anyone knows how to remove this warning message? TIA!

Share this post


Link to post
Share on other sites

8 answers to this question

Recommended Posts

  • 0

it basically means your game client must be from 9 March 2011 or later version

Share this post


Link to post
Share on other sites
  • 0
4 hours ago, meko said:

it basically means your game client must be from 9 March 2011 or later version

I mean I can disable PIN CODE and remove that warning directly inside conf/char/char-server.conf but what I was trying to do is disabling it using the IMPORT folder.

Edited by Gra Des Illus

Share this post


Link to post
Share on other sites
  • 0

any config in conf/* can be put in conf/import
Simply add the pincode block inside the char_configuration block

 

Let's say this is your default conf:

char_configuration: {
    // See conf/char/char-server.conf for details
}

 

 

You would add pincode at the end, before the final curly bracket

char_configuration: {
    // See conf/char/char-server.conf for details

    pincode: {
        // A window is opened before you can select your character and you will have to enter a pincode by using only your mouse
        // NOTE: Requires client 2011-03-09aragexeRE or newer.
        // 0: disabled
        // 1: enabled
        enabled: false

        // Request Pincode only on login or on everytime char select is accessed?
        // 0: only on login (default)
        // 1: everytime the char select window is accessed
        request: 0

        // How often does a user have to change his pincode?
        // Default: 0
        // 0: never
        // X: every X minutes
        change_time: 0

        // How often can a user enter the wrong password?
        // Default: 3
        // Maximum allowed by clientside: 3
        max_tries: 3
    }
}

 

Share this post


Link to post
Share on other sites
  • 0

I've had the same experience with @Gra Des Illus before.
Pincode isn't working on import folder but after upgrading it to the latest git, the issue was already solved.

 

Share this post


Link to post
Share on other sites
  • 0
On 6/13/2017 at 9:18 AM, meko said:

any config in conf/* can be put in conf/import
Simply add the pincode block inside the char_configuration block

I tried this also but warning still showing

Share this post


Link to post
Share on other sites
  • 0
On 6/13/2017 at 0:38 PM, Legend said:

I've had the same experience with @Gra Des Illus before.
Pincode isn't working on import folder but after upgrading it to the latest git, the issue was already solved.

 

I was using updated Herc git, but still warning shows

Edited by Gra Des Illus

Share this post


Link to post
Share on other sites
  • 0
1 hour ago, Gra Des Illus said:

I was using updated Herc git, but still warning shows

Show the contents of your import file

Share this post


Link to post
Share on other sites
  • 0
10 minutes ago, Dastgir said:

Show the contents of your import file

char_configuration: {

	inter: {
		userid: "username"
		passwd: "password"
		login_ip: "127.0.0.1"
		char_ip: "127.0.0.1"
	}

	pincode: {
		enabled: false
	}

}

 

Edited by Gra Des Illus

Share this post


Link to post
Share on other sites
  • 0
1 hour ago, Gra Des Illus said:

char_configuration: {

	inter: {
		userid: "username"
		passwd: "password"
		login_ip: "127.0.0.1"
		char_ip: "127.0.0.1"
	}

	pincode: {
		enabled: false
	}

}

 

This seems perfectly fine.

I tried and it works for me. Maybe you did typo somewhere?

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.