mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
23 lines
322 B
Plaintext
23 lines
322 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
*
|
|
*
|
|
* Arguments:
|
|
*
|
|
* Return Value:
|
|
* keyString - 15 characters <STRING>
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
private ["_newKeyArray"];
|
|
_newKeyArray = [];
|
|
|
|
for "_i" from 1 to 15 /* step +1 */ do {
|
|
_newKeyArray pushback (48 + floor(random(74)));
|
|
};
|
|
|
|
(toString _newKeyArray)
|