mirror of
https://github.com/Kugelschieber/asl.git
synced 2026-01-18 12:00:25 +00:00
Issue #2.
This commit is contained in:
@@ -1,42 +0,0 @@
|
||||
/*
|
||||
if (!isServer && player != player) then { // wait until player is on the server
|
||||
waitUntil {player == player};
|
||||
};
|
||||
|
||||
_getunit = _this select 0;
|
||||
_file = _this select 1;
|
||||
|
||||
if (!isNil _getunit) then { // unit exists?
|
||||
_unit = objNull;
|
||||
call compile format ["_unit = %1", _getunit];
|
||||
|
||||
if (local _unit) then { // test if local (player character)
|
||||
try {
|
||||
[_unit] execVM _file;
|
||||
}
|
||||
catch {
|
||||
// do nothing
|
||||
}
|
||||
}
|
||||
};
|
||||
*/
|
||||
|
||||
if !isServer && player != player {
|
||||
waituntil(player == player);
|
||||
}
|
||||
|
||||
var _getunit = select(_this)(0);
|
||||
var _file = select(_this)(1);
|
||||
|
||||
if !isNil()(_getunit) {
|
||||
var _unit = objNull;
|
||||
call()(compile()(format()("_unit = %1", _getunit)));
|
||||
|
||||
if local()(_unit) {
|
||||
try {
|
||||
execVM(_unit)(_file);
|
||||
} catch {
|
||||
// do nothing
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,6 @@
|
||||
waituntil(x = x+1; x < 100);
|
||||
var array = [1, 2, 3];
|
||||
var x = array[0];
|
||||
|
||||
if timeIsOver {
|
||||
exitwith {
|
||||
foo();
|
||||
bar();
|
||||
}
|
||||
if array[1] == 2 {
|
||||
foo();
|
||||
}
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
var x = 1;
|
||||
var y = 3;
|
||||
|
||||
func foo(x, y) {
|
||||
return x+y
|
||||
}
|
||||
|
||||
hint()(format()("%1", foo(x, y)));
|
||||
Reference in New Issue
Block a user