-
Notifications
You must be signed in to change notification settings - Fork 0
/
briefing.sqf
40 lines (35 loc) · 839 Bytes
/
briefing.sqf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
waitUntil {!isNull player && player == player};
if(player diarySubjectExists "rules")exitwith{};
player createDiarySubject ["involvedgaming","Vacation-Gaming"];
/* Example
player createDiaryRecord ["", //Container
[
"", //Subsection
"
TEXT HERE<br/><br/>
"
]
];
*/
// Vacation Gaming Gaming Section
player createDiaryRecord ["Vacation Gaming",
[
"Teamspeak",
"
<br/>
Vous pouvez nous retrouver sur notre teamspeak :<br/>
ts.vacationgaming.fr<br/><br/>
"
]
];
player createDiaryRecord ["involvedgaming",
[
"Site",
"
<br/>
Voici l'adresse du site :<br/>
http://www.vacationgaming.fr/ <br/><br/>
N'hésitez pas à le visiter pour plus d'informations !<br/><br/>
"
]
];