Bushwick Posted March 10, 2015 Report Share Posted March 10, 2015 Hey folks, just wondering how I show the server rules in a section on the A3Map page? Similar to 'Statistics" in-game. - Cant for the life of me work it out. thanks in advance, Bushy Bushwick 1 Link to comment Share on other sites More sharing options...
0 Suppe Posted March 10, 2015 Report Share Posted March 10, 2015 hey, you mean a briefing ? here: diag_log format['**Starting Briefing.sqf**']; if (!hasInterface) exitWith {}; waitUntil {!isNuLL(uiNameSpace getVariable ["EPOCH_loadingScreen",displayNull])}; waitUntil {isNuLL(uiNameSpace getVariable ["EPOCH_loadingScreen",displayNull])}; player createDiarySubject ["menu1","Server Rules"]; player createDiarySubject ["menu2","Server Features"]; player createDiarySubject ["menu3","Tips"]; player createDiarySubject ["menu4","Sector C"]; player createDiarySubject ["menu5","Epoch Controls"]; player createDiaryRecord ["menu1", ["Server Rules","<br/> <br/> <br/> "]]; player createDiaryRecord ["menu2", ["Server Features","<br/> Important: Cinder is not more indestructible<br/><br/> "]]; player createDiaryRecord ["menu3", ["Tips","<br/> Use CTRL + ß and CTRL + ` to regulate volume level down and up<br/><br/> "]]; player createDiaryRecord ["menu4", ["Sector C","<br/> comming soon<br/> "]]; player createDiaryRecord ["menu5", ["Epoch Controls","<br/> CTRL + ß regulate volume level down<br/> CTRL + ` regulate volume level up<br/><br/> "]]; call this in your init example: [] execVM "FOLDER\Briefing.sqf"; psychosis, MAW3Y, Bushwick and 2 others 5 Link to comment Share on other sites More sharing options...
0 Bushwick Posted March 10, 2015 Author Report Share Posted March 10, 2015 Very useful mate, thanks! Link to comment Share on other sites More sharing options...
0 DirtySanchez Posted March 11, 2015 Report Share Posted March 11, 2015 As far as I remember the briefings don't work because of EPOCH, but I have never tried to use it on my Epoch servers so I might be wrong. Link to comment Share on other sites More sharing options...
0 Darth_Rogue Posted March 11, 2015 Report Share Posted March 11, 2015 I'm using a briefing on my servers. Works fine. natoed and Bushwick 2 Link to comment Share on other sites More sharing options...
0 Bushwick Posted March 11, 2015 Author Report Share Posted March 11, 2015 So just to get this straight. This adds entries to the MAP screen, not just announces that fade in and out when you log in.? Link to comment Share on other sites More sharing options...
0 Darth_Rogue Posted March 11, 2015 Report Share Posted March 11, 2015 That's correct. Bushwick 1 Link to comment Share on other sites More sharing options...
0 prone Posted March 11, 2015 Report Share Posted March 11, 2015 Bushwick 1 Link to comment Share on other sites More sharing options...
0 Bushwick Posted March 11, 2015 Author Report Share Posted March 11, 2015 That's correct. You guys are worth more money. Many thanks. Link to comment Share on other sites More sharing options...
0 Darth_Rogue Posted March 11, 2015 Report Share Posted March 11, 2015 You guys are worth more money. Many thanks. I'll let my boss know. Thanks for the endorsement. Lol natoed, Bushwick and DirtySanchez 3 Link to comment Share on other sites More sharing options...
0 DirtySanchez Posted March 12, 2015 Report Share Posted March 12, 2015 I'll let my boss know. Thanks for the endorsement. Lol How dare you come into my office and even consider asking for a raise. Get your ass to work! Most likely what one might hear in this day and age.....being an ASST GM myself. Bushwick 1 Link to comment Share on other sites More sharing options...
0 Darth_Rogue Posted March 12, 2015 Report Share Posted March 12, 2015 How dare you come into my office and even consider asking for a raise. Get your ass to work! Most likely what one might hear in this day and age.....being an ASST GM myself. Haha! That's neither the first time I've heard those words, nor will it be the last. :P DirtySanchez and Bushwick 2 Link to comment Share on other sites More sharing options...
0 Finuix Posted April 1, 2015 Report Share Posted April 1, 2015 Nice !! thanks for the info :D Link to comment Share on other sites More sharing options...
0 B_Man Posted April 15, 2015 Report Share Posted April 15, 2015 I added// Briefing[] execVM "scripts\briefing.sqf"; to my init// Status Bar[] execVM "scripts\fn_statusBar.sqf";// a3_Sdropif (isDedicated) exitWith {};sdropClient=compileFinal preprocessFileLineNumbers "sdropClient.sqf";waitUntil{(isPlayer player) && (alive player) && !isNil "EPOCH_loadingScreenDone"};[] spawn sdropClient;// Briefing[] execVM "scripts\briefing.sqf";In my scripts folder I have a briefing.sqf which looks like this:diag_log format['**Starting Briefing.sqf**'];if (!hasInterface) exitWith {};waitUntil {!isNuLL(uiNameSpace getVariable ["EPOCH_loadingScreen",displayNull])};waitUntil {isNuLL(uiNameSpace getVariable ["EPOCH_loadingScreen",displayNull])};player createDiarySubject ["menu1","Server Rules"];player createDiarySubject ["menu2","Server Features"];player createDiarySubject ["menu3","Tips"];player createDiarySubject ["menu4","Sector C"];player createDiarySubject ["menu5","Epoch Controls"];player createDiaryRecord ["menu1",["Server Rules","<br/><br/><br/>"]];player createDiaryRecord ["menu2",["Server Features","<br/>Important: Cinder is not more indestructible<br/><br/>"]];player createDiaryRecord ["menu3",["Tips","<br/>Use CTRL + ß and CTRL + ` to regulate volume level down and up<br/><br/>"]];player createDiaryRecord ["menu4",["Sector C","<br/>comming soon<br/>"]];player createDiaryRecord ["menu5",["Epoch Controls","<br/>CTRL + ß regulate volume level down<br/>CTRL + ` regulate volume level up<br/><br/>"]];But it does not work. Anyone see a glaring error? Link to comment Share on other sites More sharing options...
0 Floyd Posted April 15, 2015 Report Share Posted April 15, 2015 Just a shot in the dark while waiting on a scripting pro.....Have you tried moving:// Briefing[] execVM "scripts\briefing.sqf";To above or just below:// Status Bar[] execVM "scripts\fn_statusBar.sqf";Or reducing the number of menu items? Link to comment Share on other sites More sharing options...
0 B_Man Posted April 15, 2015 Report Share Posted April 15, 2015 I will try that Floyd. However, this one works.... Link to comment Share on other sites More sharing options...
0 Demi Posted July 3, 2015 Report Share Posted July 3, 2015 Loads up for me and other admins. Not for other players though? Link to comment Share on other sites More sharing options...
0 Richie Posted July 3, 2015 Report Share Posted July 3, 2015 Loads up for me and other admins. Not for other players though? That'll be your anti-hack blocking it then, admins are exempt. Link to comment Share on other sites More sharing options...
Question
Bushwick
Hey folks, just wondering how I show the server rules in a section on the A3Map page? Similar to 'Statistics" in-game.
- Cant for the life of me work it out.
thanks in advance,
Bushy
Link to comment
Share on other sites
17 answers to this question
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now