Add getUserInfo to server side scripting https://community.bistudio.com/wiki/Arma_3:_Server_Side_Scripting
(is user id is equal to PlayerId used by getUserInfo?)
after fix https://feedback.bistudio.com/T168771 this will allow to create white/black lists by UID and nicknames.
Description
Description
Details
Details
- Severity
- Feature
- Resolution
- Open
- Reproducibility
- Always
- Operating System
- Windows 10 x64
- Category
- General
Steps To Reproduce
Something like this
onUserConnected = " private _userId = _this select 0; private _userInfo = getUserInfo _userId; if (_userInfo select 2 == '76561198000000000') then { kick _userId 'you are in blacklist'; };"