Hello,
ich have written a very little script
private ["_pointsb"];
_pointsb = 0;
while {_pointsb < 2000} do
{
_pointsb = _pointsb + 1;
sleep 5;
hintsilent ["%1", _pointsb];
};
But hint doesnt appear in the mission. I made a trigger that triggers the object.sqf file. This works fine.
Sqint says
Details
100 E No matching signature for '<Unused> hintsilent <Array>'
I think hintsilent... isnt correct
onix331