• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Tutorial] How to fix your Secondary password Num-Pad (beginner's guide)

Junior Spellweaver
Joined
Jan 2, 2008
Messages
159
Reaction score
169
Hey,

to be honest i don't know if there is already a tutorial about this little problem somewhere.
But when i had this problem and i was looking up the forum about it, i could not find any information about it.

I know for the Pro's in the buisness this might be easy and a useless tutorial, but for a beginner like me in the KalOnline development, it would have been kinda useful to see where the Problem was.

Thanks again to Zelda21 for giving me a tip what was wrong, so here we go:

On some of the Repacks, which include the KOEM v2 there is a little "bug" at the first row of the num-pad, which means that your members will have problems clicking on the 1,2,3 Button like on the screen below:
5c6WtiU - [Tutorial] How to fix your Secondary password Num-Pad (beginner's guide) - RaGEZONE Forums



To fix this we just have to open our e.pk file with a PK editor. Scroll down until we find the .dat file called login2.dat and open it:

ZfVND4u - [Tutorial] How to fix your Secondary password Num-Pad (beginner's guide) - RaGEZONE Forums


Now we check in the login2.dat file and we can see that the width for the Password field is set to (width 19). This is way too long, so that we just change that number to a lower one.

iKk84I - [Tutorial] How to fix your Secondary password Num-Pad (beginner's guide) - RaGEZONE Forums



In this tutorial i set it up to (width 9) but ofc you can also set it to 8 or 7 and it would still work perfectly. Now just save the e.pk, decrypt it and overwrite your old one and the number pad should work perfectly now.

Hope i could help anyone out there ^^:laugh:
 

Attachments

You must be registered for see attachments list
Banned
Banned
Joined
Jul 8, 2007
Messages
1,628
Reaction score
1,619
Nice guide hun, tbh ive never been able to get that thing working LOL - no KOEM i guess but AWESOME GUIDE! ill take a look at it myself n see if i cant get this part working too without KOEM :D
 
Junior Spellweaver
Joined
Jan 2, 2008
Messages
159
Reaction score
169
Include these into your Hypertext folder and have fun.

Cheers,
DreameR
 

Attachments

You must be registered for see attachments list
Elite Diviner
Joined
Feb 8, 2012
Messages
439
Reaction score
867
you can also remove " ( readonly ) " then you can use the keyboard if u like to allow it :):
 
Banned
Banned
Joined
Jun 5, 2013
Messages
104
Reaction score
52
Code:
( filechk file_ver ( country_type ENG ) ( filename login2 )
)

( background ( font 12 )
             ( link system ( param ( width 325 ) ( height 150 ) ( style edge title center ) ( caption "                           Input Secondary password" )))
)

( page ( font 12 )

       ( pos   5 10 ) ( word "Use the right side Number Pad," )
       ( pos   5 30 ) ( word "Input Secondary password (6-digit, use mouse or keyboard)" )

       ( pos   5 60 )                   ( edit   "count"   ( width 19 )    ( limit 6 ) ( password ) ( number ) )
       ( pos 249  0 )                   ( button "1"       ( text "1"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "2"       ( text "2"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "3"       ( text "3"    ) ( bitmap "number pad-on" ) )
       ( pos 249 30 )                   ( button "4"       ( text "4"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "5"       ( text "5"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "6"       ( text "6"    ) ( bitmap "number pad-on" ) )
       ( pos 249 60 )                   ( button "7"       ( text "7"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "8"       ( text "8"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "9"       ( text "9"    ) ( bitmap "number pad-on" ) )
       ( pos 249 90 )                   ( button "0"       ( text "0"    ) ( bitmap "number pad-on2" ) )
                      ( offset   1    ) ( button "delete"  ( text "<-"   ) ( bitmap "number pad-on" ) )
       ( pos   5 120 )                   ( button "ok"      ( text "confirm"  ) ( bitmap                 ) ( width 1 ) )
       ( pos   113 120 )                   ( button "close"      ( text "cancel"  ) ( bitmap                 ) ( width 1 ) )
       ( pos   221 120 )                   ( button "replace"      ( text "change"  ) ( bitmap                 ) ( width 1 ) )
)



Code:
( filechk file_ver ( country_type ENG ) ( filename login2_create )
)

( background ( font 12 )
             ( link system ( param ( width 325 ) ( height 150 ) ( style edge title center ) ( caption "                           Creation Secondary password" )))
)

( page ( font 12 )
       ( pos 5 10 ) ( word "Log-in password           " ) ( offset 31 ) ( edit CLogin       ( width 8 ) ( limit 8 ) ( password ) )
       ( pos 5 30 ) ( word "Secondary password        " ) ( offset 20 ) ( edit CLogin2Pass  ( width 8 ) ( limit 6 ) ( password ) ( number ) )
       ( pos 5 50 ) ( word "Confirm Secondary password" ) ( offset  5 ) ( edit CLogin2Chack ( width 8 ) ( limit 6 ) ( password ) ( number ) )

       ( pos 249  0 )                   ( button "1"       ( text "1"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "2"       ( text "2"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "3"       ( text "3"    ) ( bitmap "number pad-on" ) )
       ( pos 249 30 )                   ( button "4"       ( text "4"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "5"       ( text "5"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "6"       ( text "6"    ) ( bitmap "number pad-on" ) )
       ( pos 249 60 )                   ( button "7"       ( text "7"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "8"       ( text "8"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "9"       ( text "9"    ) ( bitmap "number pad-on" ) )
       ( pos 249 90 )                   ( button "0"       ( text "0"    ) ( bitmap "number pad-on2" ) )
                      ( offset   1    ) ( button "delete"  ( text "<-"   ) ( bitmap "number pad-on" ) )
       ( pos   5 120 )                   ( button "ok"      ( text "confirm"  ) ( bitmap                 ) ( width 1 ) )
       ( pos   221 120 )                   ( button "back"      ( text "cancel"  ) ( bitmap                 ) ( width 1 ) )
)

( decoline 5 30 244 30 )




Code:
( filechk file_ver ( country_type ENG ) ( filename login2_replace )
)

( background ( font 12 )
             ( link system ( param ( width 325 ) ( height 150 ) ( style edge title center ) ( caption "                           Change Secondary password" )))
)
( page ( font 12 )
       ( pos 5 10 ) ( word "Old password              " ) ( offset 35 ) ( edit RLogin2      ( width 8 ) ( limit 6 ) ( password ) ( number ) )
       ( pos 5 30 ) ( word "New password              " ) ( offset 31 ) ( edit RLogin2Pass  ( width 8 ) ( limit 6 ) ( password ) ( number ) )
       ( pos 5 50 ) ( word "Confirm Secondary password" ) ( offset  5 ) ( edit RLogin2Chack ( width 8 ) ( limit 6 ) ( password ) ( number ) )

       ( pos 249  0 )                   ( button "1"       ( text "1"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "2"       ( text "2"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "3"       ( text "3"    ) ( bitmap "number pad-on" ) )
       ( pos 249 30 )                   ( button "4"       ( text "4"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "5"       ( text "5"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "6"       ( text "6"    ) ( bitmap "number pad-on" ) )
       ( pos 249 60 )                   ( button "7"       ( text "7"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "8"       ( text "8"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "9"       ( text "9"    ) ( bitmap "number pad-on" ) )
       ( pos 249 90 )                   ( button "0"       ( text "0"    ) ( bitmap "number pad-on2" ) )
                      ( offset   1    ) ( button "delete"  ( text "<-"   ) ( bitmap "number pad-on" ) )
       ( pos   5 120 )                   ( button "ok"      ( text "confirm"  ) ( bitmap                 ) ( width 1 ) )
       ( pos   221 120 )                   ( button "back"      ( text "cancel"  ) ( bitmap                 ) ( width 1 ) )
)




MrDreameR - [Tutorial] How to fix your Secondary password Num-Pad (beginner's guide) - RaGEZONE Forums



here is the secondary password i edited.

made the buttons bigger so easier to push them if you want to use a mouse only but this is edited with the read only madknight was referring to removed from the codes.

so you can use your keys to enter the pw or a mouse your choice.

i dont know what the error is that MrDreameR was speaking about on here with the width being 19 because i havent had the issue but maybe because i have modified my buttons.

so if you want to edit the code for his fix go ahead and do so :)

hope this helps a few people

hypertext:




edit:

added all my buttons in my hypertext because the actual button isnt in the code so i dont know exactly which one it is so you can have them all and find out :)
 
Last edited:
Newbie Spellweaver
Joined
Feb 3, 2013
Messages
85
Reaction score
11
Code:
( filechk file_ver ( country_type ENG ) ( filename login2 )
)

( background ( font 12 )
             ( link system ( param ( width 325 ) ( height 150 ) ( style edge title center ) ( caption "                           Input Secondary password" )))
)

( page ( font 12 )

       ( pos   5 10 ) ( word "Use the right side Number Pad," )
       ( pos   5 30 ) ( word "Input Secondary password (6-digit, use mouse or keyboard)" )

       ( pos   5 60 )                   ( edit   "count"   ( width 19 )    ( limit 6 ) ( password ) ( number ) )
       ( pos 249  0 )                   ( button "1"       ( text "1"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "2"       ( text "2"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "3"       ( text "3"    ) ( bitmap "number pad-on" ) )
       ( pos 249 30 )                   ( button "4"       ( text "4"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "5"       ( text "5"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "6"       ( text "6"    ) ( bitmap "number pad-on" ) )
       ( pos 249 60 )                   ( button "7"       ( text "7"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "8"       ( text "8"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "9"       ( text "9"    ) ( bitmap "number pad-on" ) )
       ( pos 249 90 )                   ( button "0"       ( text "0"    ) ( bitmap "number pad-on2" ) )
                      ( offset   1    ) ( button "delete"  ( text "<-"   ) ( bitmap "number pad-on" ) )
       ( pos   5 120 )                   ( button "ok"      ( text "confirm"  ) ( bitmap                 ) ( width 1 ) )
       ( pos   113 120 )                   ( button "close"      ( text "cancel"  ) ( bitmap                 ) ( width 1 ) )
       ( pos   221 120 )                   ( button "replace"      ( text "change"  ) ( bitmap                 ) ( width 1 ) )
)



Code:
( filechk file_ver ( country_type ENG ) ( filename login2_create )
)

( background ( font 12 )
             ( link system ( param ( width 325 ) ( height 150 ) ( style edge title center ) ( caption "                           Creation Secondary password" )))
)

( page ( font 12 )
       ( pos 5 10 ) ( word "Log-in password           " ) ( offset 31 ) ( edit CLogin       ( width 8 ) ( limit 8 ) ( password ) )
       ( pos 5 30 ) ( word "Secondary password        " ) ( offset 20 ) ( edit CLogin2Pass  ( width 8 ) ( limit 6 ) ( password ) ( number ) )
       ( pos 5 50 ) ( word "Confirm Secondary password" ) ( offset  5 ) ( edit CLogin2Chack ( width 8 ) ( limit 6 ) ( password ) ( number ) )

       ( pos 249  0 )                   ( button "1"       ( text "1"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "2"       ( text "2"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "3"       ( text "3"    ) ( bitmap "number pad-on" ) )
       ( pos 249 30 )                   ( button "4"       ( text "4"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "5"       ( text "5"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "6"       ( text "6"    ) ( bitmap "number pad-on" ) )
       ( pos 249 60 )                   ( button "7"       ( text "7"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "8"       ( text "8"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "9"       ( text "9"    ) ( bitmap "number pad-on" ) )
       ( pos 249 90 )                   ( button "0"       ( text "0"    ) ( bitmap "number pad-on2" ) )
                      ( offset   1    ) ( button "delete"  ( text "<-"   ) ( bitmap "number pad-on" ) )
       ( pos   5 120 )                   ( button "ok"      ( text "confirm"  ) ( bitmap                 ) ( width 1 ) )
       ( pos   221 120 )                   ( button "back"      ( text "cancel"  ) ( bitmap                 ) ( width 1 ) )
)

( decoline 5 30 244 30 )




Code:
( filechk file_ver ( country_type ENG ) ( filename login2_replace )
)

( background ( font 12 )
             ( link system ( param ( width 325 ) ( height 150 ) ( style edge title center ) ( caption "                           Change Secondary password" )))
)
( page ( font 12 )
       ( pos 5 10 ) ( word "Old password              " ) ( offset 35 ) ( edit RLogin2      ( width 8 ) ( limit 6 ) ( password ) ( number ) )
       ( pos 5 30 ) ( word "New password              " ) ( offset 31 ) ( edit RLogin2Pass  ( width 8 ) ( limit 6 ) ( password ) ( number ) )
       ( pos 5 50 ) ( word "Confirm Secondary password" ) ( offset  5 ) ( edit RLogin2Chack ( width 8 ) ( limit 6 ) ( password ) ( number ) )

       ( pos 249  0 )                   ( button "1"       ( text "1"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "2"       ( text "2"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "3"       ( text "3"    ) ( bitmap "number pad-on" ) )
       ( pos 249 30 )                   ( button "4"       ( text "4"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "5"       ( text "5"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "6"       ( text "6"    ) ( bitmap "number pad-on" ) )
       ( pos 249 60 )                   ( button "7"       ( text "7"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "8"       ( text "8"    ) ( bitmap "number pad-on" ) )
                      ( offset   1    ) ( button "9"       ( text "9"    ) ( bitmap "number pad-on" ) )
       ( pos 249 90 )                   ( button "0"       ( text "0"    ) ( bitmap "number pad-on2" ) )
                      ( offset   1    ) ( button "delete"  ( text "<-"   ) ( bitmap "number pad-on" ) )
       ( pos   5 120 )                   ( button "ok"      ( text "confirm"  ) ( bitmap                 ) ( width 1 ) )
       ( pos   221 120 )                   ( button "back"      ( text "cancel"  ) ( bitmap                 ) ( width 1 ) )
)




MrDreameR - [Tutorial] How to fix your Secondary password Num-Pad (beginner's guide) - RaGEZONE Forums



here is the secondary password i edited.

made the buttons bigger so easier to push them if you want to use a mouse only but this is edited with the read only madknight was referring to removed from the codes.

so you can use your keys to enter the pw or a mouse your choice.

i dont know what the error is that MrDreameR was speaking about on here with the width being 19 because i havent had the issue but maybe because i have modified my buttons.

so if you want to edit the code for his fix go ahead and do so :)

hope this helps a few people

hypertext:

bro can upload the icons of confirm&change&cancel please? :) ty
 
Back
Top