Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md - github.com/ShaneCunn/Mumble_Sample_Welcome_message.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11f4a7c46d01914548bc7511152de4f57e7eda8f (plain)
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# Mumble MOTD: Message of the day
MOTD
Mumble.ini Message of the day, Example on how to make a Message of the Day (MOTD) on a Mumble server.

Instead of welcometext="Welcome to this server running Murmur."

-![alt text](http://i.imgur.com/Xm83rQk.png "Example Welcome message in mumble")

##Important links

* [Full Murmur.ini guide](http://wiki.mumble.info/wiki/Murmur.ini)

#### HTML Examples in the Mumble.ini

Example logo in the welcome message:
 ```html
 <a href="https://www.google.com"><img alt="Your logo here" src="http://i.imgur.com/m4NsCG0.jpg" width="250"></a>
 ```
 
##### Examples of an contact/Officer list:
 ```html
 <h3>Commanded by the best Officer's</h3>
<ul>
    <li><a href="https://www.google.com"><strong>Clan Leader:</strong> Clan leader</a></li>
    <li><a href="https://www.google.com"><strong>Officer 2:</strong> Co-leader</a>
    </li>
</ul>
```

##### Example of a line break
```html
<br>
```

##### Example of a hortizontal rule
```html
<hr>
```

#### Example of Welcome message

[![Sample logo](http://i.imgur.com/m4NsCG0.jpg)](https://www.google.com)

##### Commanded by the best officer's

*   [**Clan Leader:** Clan leader](https://www.google.com)
*   [**Officer 2:** Co-leader](https://www.google.com)

_***If you have any concerns please contact these Officers**_

* * *

##### Latest Clan News and Events

*   [Example Link 1](https://www.google.com)
*   [Example Link 2](https://www.google.com)

* * *

##### Please read these Threads to:

*   [Get full access to the Clan Forums](https://www.google.com)
*   [Suggestion on how to improve the Clan/Website please post them here](https://www.google.com)

* * *

#### HTML example of a Welcome message
```html
welcometext="
<a href="https://www.google.com"><img alt="BRTD old logo" src="http://i.imgur.com/m4NsCG0.jpg" width="250"></a>
 <h3>Commanded by the best Officer's</h3>
<ul>
    <li><a href="https://www.google.com"><strong>Clan Leader:</strong> Clan leader</a>
    </li>
    <li><a href="https://www.google.com"><strong>Officer 2:</strong> Co-leader</a>
    </li>
</ul>
<p><em><strong>*If you have any concerns please contact these
  Officers</strong></em>
</p>
<br>
<hr>
 <h3>Latest Clan News and Events</h3>
<ul>
    <li> <a href="https://www.google.com">Example Link 1</a>

    </li>
    <li> <a href="https://www.google.com">Example Link 2</a>
    </li>
</ul>
<hr>
 <h3>Please read these Threads to:</h3>
<ul>
    <li> <a href="https://www.google.com">Get full access to the Clan Forums</a>

    </li>
    <li> <a href="https://www.google.com">Suggestion on how to improve the
      Clan/Website please post them here</a>
    </li>
</ul>
<hr>
 <h3>Legal Disclaimer</h3>
<ul type="square">
    <li style="list-style: none"><span style="color:#ff0000"><em><strong></strong></em></span>
    </li>
    <li><span style="color:#ff0000"><em><strong>Please Be Aware It's an age 18+
    Voice Server.</strong></em></span>
    </li>
    <li style="list-style: none"><span style="color:#ff0000"><em><strong></strong></em></span>
    </li>
    <li><span style="color:#ff0000"><em><strong>By using this Voice Server you
    agree that you are aged 18 or older.</strong></em></span>
    </li>
    <li style="list-style: none"><span style="color:#ff0000"><em><strong></strong></em></span>
    </li>
    <li><span style="color:#ff0000"><em><strong>The Server host takes no
    responsibility for context of conversations or messages sent or received on
    this server.</strong> <em></em></em></span>
    </ul>
	"
```

##Example of important message i.e. a disclaimer

#### Legal Disclaimer

*   <span style="color:#ff0000">_**Please Be Aware It's an age 18+ Voice Server.**_</span>
*   <span style="color:#ff0000">_**By using this Voice Server you agree that you are aged 18 or older.**_</span>
*   <span style="color:#ff0000">_**The Server host takes no responsibility for context of conversations or messages sent or received on this server.**_</span>

#### HTML Example of Legal Disclaimer
```html

<h3>Legal Disclaimer</h3>

<ul type="square">
     </li>
    <li><span style="color:#ff0000"><em><strong>Please Be Aware It's an age 18+
    Voice Server.</strong></em></span>
	</li>
    <li><span style="color:#ff0000"><em><strong>By using this Voice Server you
    agree that you are aged 18 or older.</strong></em></span>
    </li>
    <li><span style="color:#ff0000"><em><strong>The Server host takes no
    responsibility for context of conversations or messages sent or received on
    this server.</strong> <em></em></em></span>
  </ul>
```