Hello, I would like to lean som ARMA scripting, so I startede reading Fockers guide to scripting in Arma 3.
But I have the same problem like ablueslime. No hint shows up on my screen. Its like init.sqf is not executing hint.sqf.
My files look like this:
init.sqf
execVm "hint.sqf";
hint.sqf
_me = player;
hint format ["player controlled is called: %1",_me];
I have tried doing like Zenophon suggested:
It works when I type the hint.sqf text in to the debug consol.
_me = player;
hint format ["player controlled is called: %1",_me];
When I type
HintFunction = {
hint format ["player: %1", player];
};
0 = [] call HintFunction;
in the init.sqf, this works.
I hope somebody have a good idea, this is making me crazy.