Disabling Pin Code

Gra Des Illus

New member
Messages
24
Points
0
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!

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

 
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.

 
Last edited by a moderator:
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

Code:
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
    }
}
 
Last edited by a moderator:
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.


 
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?

 
Back
Top