31
Addons & Mods / Re: hide the password
« on: Nov 16, 2021, 07:41 AM »
Even if you hide it, people can still see your cursor pressing the buttons...
In addons\AF_Keypad\AF_KP_fncs.sqf, replace
with
If you want to type the password using your keyboard, open addons\AF_Keypad\AF_KP_dialogs.hpp, and after
add
In addons\AF_Keypad\AF_KP_fncs.sqf, replace
Code: [Select]
ctrlSetText[1000, InputText];
with
Code: [Select]
ctrlSetText [1000, InputText regexReplace [".","*"]];
If you want to type the password using your keyboard, open addons\AF_Keypad\AF_KP_dialogs.hpp, and after
Code: [Select]
movingenable=false;
add
Code: [Select]
onKeyDown="params ['','_key']; { if (_key in _x) exitWith { ['number', _x find _key] execVM 'addons\AF_Keypad\AF_KP_fncs.sqf' } } forEach [[11,2,3,4,5,6,7,8,9,10],[82,79,80,81,75,76,77,71,72,73]]";