GPS Video On Start - Tutorial + Pictures

Awesome script, thx for sharing it:)

Here is a test i did, on my test server:



Turns out pretty bad ass
 
Ok, first i'm trying to install your original gps video on start script but i'm kicked by Battleye.
script.log contains this:
Code:
19.08.2013 02:06:26: Clark17 (*.*.*.*:*) MYGUID - #103 "il { alive player };
waituntil {!isnull (finddisplay 46)};
hintsilent "Player Found! Running Script!";
sleep 5;
_CustomGpsVideo "

#103 is the number of the rule in script.txt?

EDIT:
Ok i've found this bad rule:
Code:
5 hintSilent !"dayz_HintMontior = [] spawn {"  !"hintSilent parseText format [\""  !"hintSilent \"\";"
and change by this:
Code:
1 hintSilent !"dayz_HintMontior = [] spawn {"  !"hintSilent parseText format [\""  !"hintSilent \"\";"

Now it's working great!
 
A way to install this to the server folder instead?

init folder
open server_functions.sqf
add [] execVM "custom\gps_video.sqf";
 
is there a way to terminate the script once its started ..? or are you forced to watch the entire video every time till completion?
 
is there a way to terminate the script once its started ..? or are you forced to watch the entire video every time till completion?


Im wondering the same thing. Im sure its possible, as I have my debug set to be toggled by the F10 key.

Here is the code, if someone could look at it and modify it, that would be great!
I know that its calling for the debug monitor, thats where the code originated from.

I have some theories on how to do it, I'll post back if I find anything

Code:
dayz_spaceInterrupt = {
    private ["_dikCode", "_handled"];
    _dikCode = _this select 1;
    _handled = false;
 
    if (_dikCode == 0x44) then {
        if (debugMonitor) then {
            debugMonitor = false;
            hintSilent "";
        } else {[] spawn fnc_debug;};
    };
    _handled
};

EDIT: nothing I have tried worked, and it actually caused more headaches than anything else
 
Back
Top