mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Avoids setVariable value restrictions for players with special characters in their name. Also avoids issues with storing non-ASCII characters from player names in DB inventory field.
8 lines
148 B
Plaintext
8 lines
148 B
Plaintext
private "_friends";
|
|
|
|
lbClear 7102;
|
|
_friends = TheDoor getVariable ["doorfriends",[]];
|
|
{
|
|
lbAdd [7102, toString (_x select 1)];
|
|
} forEach _friends;
|