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: 7dac3a30b91ec37a879485dc6553d160f7175405 (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
# 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 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 import message ie Disclaimer and so on
```html
<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>
```
### Full example of 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> Outfit 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 Outfit 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
      Outfit/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>"
```