Diary Subjects, Map Markers and View Distance?

Sorry to say it doesn't seem to work Wiked.

I tried exactly as you put it in and the server doesn't start up. It gets stuck on loading.

I eliminated everything else from my pbos (even went to a fresh server.pbo just in case) and it still gets stuck.

No idea what may be causing it.

EDIT

No, my bad. It doesn't get actually STUCK, it just takes about 5 minutes to load into the Debug Plans (checked record, it was there) then it takes a bit more time and it tries to switch you to your actual game character... I think something in the loops used in the scripts is breaking the login in mechanic.
 
I got it to work while using a combination of the scripts you showed me.

Bare in mind I'm on an outdated Lingor Mod DayZ Server, so this might not work with newer version of the mod.

But well, here's what I did:

Created a briefing.sqf

if (isServer) exitWith {};
if (player diarySubjectExists "subject") exitWith {

sleep 1;
[] execVM "briefing.sqf";

};

player createDiarySubject ["Subject","Subject Title"];

player createDiaryRecord ["Subject", ["Subject Sub-Title",

"Text Example Here.<br/><br/>"]];

sleep 1;
[]execVM "briefing.sqf";

Somehow this got it working.

I haven't tested it on a crowded server yet. Not sure if it's going to cause performance issues.
 
Back
Top