Hey there. 
Lets imagine i have script "server_script.sqf" that contains this:
--------------------------------------------
while {true} do {
if (CONDITION) {
execVM "client_script_1.sqf" // execute on all clients
} else {
execVM "client_script_2.sqf" // execute on all clients
}
sleep 15
}
--------------------------------------------
and then i have two different script files ("client_script_1.sqf", "client_script_2.sqf"), that should be executed by server command.. So, when server says, all users execute the same file at the same time.
How do i do this?
I tried using "Remote Script Launcher (RSL)" http://www.armaholic.com/page.php?id=13912
But it had internal errors, that i couldn't fix.
Any ideas?
Lets imagine i have script "server_script.sqf" that contains this:
--------------------------------------------
while {true} do {
if (CONDITION) {
execVM "client_script_1.sqf" // execute on all clients
} else {
execVM "client_script_2.sqf" // execute on all clients
}
sleep 15
}
--------------------------------------------
and then i have two different script files ("client_script_1.sqf", "client_script_2.sqf"), that should be executed by server command.. So, when server says, all users execute the same file at the same time.
How do i do this?
I tried using "Remote Script Launcher (RSL)" http://www.armaholic.com/page.php?id=13912
But it had internal errors, that i couldn't fix.
Any ideas?