-
Notifications
You must be signed in to change notification settings - Fork 1
/
terms_dist.php
84 lines (67 loc) · 4.11 KB
/
terms_dist.php
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
/*-----------------------------------------------------------------------------
| Bitsand - an online booking system for Live Role Play events
|
| File terms_dist.php
| Author: Russell Phillips
| Copyright: (C) 2006 - 2015 The Bitsand Project
| (http://github.com/PeteAUK/bitsand)
|
| Bitsand is free software; you can redistribute it and/or modify it under the
| terms of the GNU General Public License as published by the Free Software
| Foundation, either version 3 of the License, or (at your option) any later
| version.
|
| Bitsand is distributed in the hope that it will be useful, but WITHOUT ANY
| WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
| FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
| details.
|
| You should have received a copy of the GNU General Public License along with
| Bitsand. If not, see <http://www.gnu.org/licenses/>.
+---------------------------------------------------------------------------*/
//Do not need login check for this page
$bLoginCheck = False;
include ('inc/inc_head_db.php');
include ('inc/inc_head_html.php');
?>
<h1><?php echo TITLE?> - Terms & Conditions</h1>
<!--
Provide full terms and conditions below. The text here is from the Lions (Lorien
Trust) booking site, and can be used as an example/template
-->
<h3>Event & Web Site Terms & Regulations</h3>
<p>
Please note that fuller rules and regulations and notes on particular issues will be mentioned in the event guide and on the <a href = "http://www.lionsfaction.co.uk/">Lions website</a>
</p>
<h4>By attending this event, you acknowledge that</h4>
<p>
To utilise a special effect or power, you must have the appropriate in game prop and authorisation. Or, to put it another way - No Phys Rep, No Effect and No Card, No Effect. Only LRP safe weapons will be allowed on site, subject to checking at registration. Any items judged unsafe should be returned to your vehicle, or can be stored by Games Ops for you during the course of the event. Any noncombat props should be announced on your booking form, presented for a safety check on registration and clearly marked as an NCP throughout the event.
</p>
<p>
Burning Ambitions, Sanctioned Events and the Site Custodian cannot be held responsible for the loss or theft of OOC valuables. Secure them in your vehicle, or better yet, don't bring them at all. All lost property should be handed in at Games Ops which is where you should direct any enquiries.
</p>
<p>
No controlled substances other than legitimately prescribed drugs will be tolerated on site. Anyone discovered to be in possession of such will be ejected and the relevant authorities notified.
</p>
<p>
Burning Ambitions and Sanctioned Events reserve the right to eject anyone from the event for any breach of the regulations of either Burning Ambitions, Sanctioned Events or the site custodian.
</p>
<p>
Only referees nominated by the event organisers may direct any kind of plot at this event and any such referee's decision is final. Nominated referees will be carrying Burning Ambitions ref cards.
</p>
<h4>By using this website, you acknowledge that</h4>
<p>
Your details will be stored and used for the purposes of booking and administering events run by Burning Ambitions, and will not be shared with third parties without your consent.
</p>
<p>
All access to this website will be logged. The primary purpose of these logs is to help discover, and recover from, malicious attacks and attempts to glean personal information.
</p>
<p>
You will be required to sign a declaration of agreement to Burning Ambitions, Sanctioned Events and the Site Custiodian's regulations upon arrival at any events booked through this system. You will not be allowed to participate in the event until said declaration has been signed. If you attempt to participate in the event without signing the declaration, you may be ejected from the site.
</p>
<p>
Keeping your in character and real world information up to date is your responsibility, and Burning Ambitions cannot be held responsible for errors made due to out of date information.
</p>
<?php
include ('inc/inc_foot.php');