1
0
mirror of https://github.com/ineedbots/iw5_bot_warfare.git synced 2025-06-28 07:01:50 +00:00

Some class generation

This commit is contained in:
ineedbots
2021-05-13 18:12:51 -06:00
parent fef0c9c54e
commit 52bb47d4af
2 changed files with 267 additions and 198 deletions

View File

@ -117,6 +117,31 @@ tester()
thread await();
level waittill("aaaa", aa, bb, cc, dd);
print(aa + " " + bb + " " + cc + " " + dd); // 1 2 3 4
new_arr[0] = true;
print(new_arr[0]); // 1
level tet(); // OK
level tet2(); // 0
}
tet2(a)
{
print(isDefined(a));
}
tet()
{
arr = [];
arr[0] = self;
print("OK");
}
await()