Difference between revisions of "Main Page"

From Mudlet
Jump to navigation Jump to search
(changed the basics to point to screencasts, because a) current link pointed to manual anyway and b) screencasts are more applicable as 'basics')
(Added link to Discord rich presence over GMCP)
(29 intermediate revisions by 7 users not shown)
Line 1: Line 1:
 +
<languages/>
 
<!--        BANNER ACROSS TOP OF PAGE        -->
 
<!--        BANNER ACROSS TOP OF PAGE        -->
 
{| id="mp-topbanner" style="width:100%; background:#fcfcfc; margin-top:1.2em; border:1px solid #ccc;"
 
{| id="mp-topbanner" style="width:100%; background:#fcfcfc; margin-top:1.2em; border:1px solid #ccc;"
Line 5: Line 6:
 
{| style="width:280px; border:none; background:none;"
 
{| style="width:280px; border:none; background:none;"
 
| style="width:280px; text-align:center; white-space:nowrap; color:#000;" |
 
| style="width:280px; text-align:center; white-space:nowrap; color:#000;" |
<div style="font-size:162%; border:none; margin:0; padding:.1em; color:#000;">Welcome to the Mudlet Wiki!</div>
+
<div style="font-size:162%; border:none; margin:0; padding:.1em; color:#000;"><translate><!--T:1--> Welcome to the Mudlet Wiki!</translate></div>
 
|}
 
|}
 
<!--        BASIC INTRO        -->
 
<!--        BASIC INTRO        -->
Line 11: Line 12:
 
| class="MainPageBG" style="width:100%; border:1px solid #c9c07f; background:#c9c07f; vertical-align:top; color:#000;" |
 
| class="MainPageBG" style="width:100%; border:1px solid #c9c07f; background:#c9c07f; vertical-align:top; color:#000;" |
 
{| id="mp-left" cellpadding="2" cellspacing="5" style="width:100%; vertical-align:top; background:#fdf7bb;"
 
{| id="mp-left" cellpadding="2" cellspacing="5" style="width:100%; vertical-align:top; background:#fdf7bb;"
! <h2 id="mp-tfa-h2" style="margin:0; background:#f4e9bc; font-size:120%; font-weight:bold; border:1px solid #a3b00f; text-align:left; color:#000; padding:0.2em 0.4em;">About Mudlet</h2>
+
! <h2 id="mp-tfa-h2" style="margin:0; background:#f4e9bc; font-size:120%; font-weight:bold; border:1px solid #a3b00f; text-align:left; color:#000; padding:0.2em 0.4em;"><translate><!--T:2--> About Mudlet</translate></h2>
 
|-
 
|-
 
| style="color:#000;" | <div id="mp-tfa">
 
| style="color:#000;" | <div id="mp-tfa">
  
[http://mudlet.org/ Mudlet] is a freshly-minted [http://en.wikipedia.org/wiki/Mud_client MUD client], designed to take mudding to a new level.
+
{{TOC right}}
  
New to Mudlet? Why not start with [http://mudlet.org/media the basics], or take a look at [[Manual:Contents | Mudlet Manual]]. If you don't have it yet, [http://www.mudlet.org/download/ download it] - it's free, and works on Windows, Mac, and Linux-based OS's.
+
<translate>
 +
<!--T:3-->
 +
A cross-platform, open source, and super fast [http://en.wikipedia.org/wiki/Mud_client MUD client] with scripting in [http://en.wikipedia.org/wiki/Lua Lua].
  
== External Links ==
+
<!--T:4-->
 +
New to Mudlet? Why not start with [http://mudlet.org/media the basics], or take a look at '''[[Special:MyLanguage/Manual:Contents | Mudlet Manual]]'''. Or perhaps you want to find the answer to a [[Special:MyLanguage/FAQ | Frequently Asked Question]]. If you don't have it yet, [http://www.mudlet.org/download/ download it] - it's free, and works on Windows, macOS, and Linux computers.
 +
 
 +
<!--T:5-->
 +
Are you having troubles with Mudlet? We can help. [http://forums.mudlet.org/viewforum.php?f=9 Start here].
 +
 
 +
 
 +
== External Links == <!--T:6-->
 +
 
 +
<!--T:7-->
 
* [http://www.mudlet.org Mudlet Homepage]
 
* [http://www.mudlet.org Mudlet Homepage]
 
* [http://forums.mudlet.org Forums]
 
* [http://forums.mudlet.org Forums]
  
== Wiki Links ==
 
* [[Manual:Contents | Mudlet Manual]] (needs your help!)
 
* [[Manual:Lua Functions | Mudlet Lua API]]
 
* [[:Category:Mudlet Package Listing | Mudlet Packages]]
 
* [[:Category:Snippets | Snippets and Demonstrations]]
 
* [[Compiling Mudlet]]
 
  
== Lua ==
+
== Wiki Links == <!--T:8-->
Mudlet uses Lua! Learning it is really rewarding - take a look at excellent stuff like the [http://luatut.com/ Lua tutorial] (has an intro+crash course), [http://www.phailed.me/2011/02/learn-lua-the-hard-way-1/ Learning Lua the Hard Way] (very rewarding), [http://www.lua.org/pil/ Programming in Lua] (official, but might be hard to follow) and various [http://lua-users.org/wiki/TutorialDirectory Lua tutorials] (simple and easy).
+
 
 +
<!--T:9-->
 +
* [[Special:MyLanguage/Manual:Contents | Mudlet Manual]]
 +
* [[Special:MyLanguage/Manual:Lua Functions | Mudlet Lua API]]
 +
* [[Special:MyLanguage/FAQ | Frequently Asked Questions]]
 +
* [http://forums.mudlet.org/viewforum.php?f=6&sid=496c6a8681d893ba946c212101866004 Mudlet Packages]
 +
* [[Special:MyLanguage/Compiling Mudlet|Compiling Mudlet]]
 +
* [[Translating Mudlet]]
 +
 
 +
== MUD standards == <!--T:10-->
 +
 
 +
<!--T:11-->
 +
We will preserve the documentation of MUD standards that may get lost (because the original site is breaking down or is already offline) as they are implemented in Mudlet. We may also look into developing some of them in the future.
 +
* [[Standards:MMP | MUD Mapping Protocol]]
 +
* [[Standards:Discord_GMCP | Discord Rich Presence over GMCP]]
 +
 
 +
== Lua == <!--T:12-->
 +
 
 +
<!--T:13-->
 +
Mudlet uses Lua! Learning it is really rewarding - take a look at excellent stuff like the [http://luatut.com/ Lua tutorial] (has an intro+crash course), [http://tylerneylon.com/a/learn-lua/ Learn Lua in 15 mins], [http://www.phailed.me/2011/02/learn-lua-the-hard-way-1/ Learning Lua the Hard Way] (very rewarding), [http://www.lua.org/pil/ Programming in Lua] (official, but might be hard to follow) and various [http://lua-users.org/wiki/TutorialDirectory Lua tutorials].
 +
 
  
== Special Links ==
+
== Special Links == <!--T:14-->
 +
 
 +
<!--T:15-->
 
* [[:Special:AllPages | All Pages]]
 
* [[:Special:AllPages | All Pages]]
 +
* [[Special:MyLanguage/Report Spam|Report spam]] if you notice suspicious behavior
  
== Using MediaWiki ==
 
Interested in contributing to this site? Use the following links to learn more about MediaWiki. Please register and login before editing, as that helps combat spambots. Note that the following links are not related to Mudlet!
 
  
 +
== Using MediaWiki == <!--T:16-->
 +
 +
<!--T:17-->
 +
Interested in contributing to this site? Use the following links to learn more about MediaWiki: (Note that the following links are not related to Mudlet)
 +
 +
<!--T:18-->
 
* [http://www.mediawiki.org/wiki/Help:Formatting Wiki syntax]
 
* [http://www.mediawiki.org/wiki/Help:Formatting Wiki syntax]
 
* [http://en.wikipedia.org/wiki/Help:Table Wiki table syntax]
 
* [http://en.wikipedia.org/wiki/Help:Table Wiki table syntax]
 +
 +
</translate>
 +
 +
|}
 +
|}
 +
|}

Revision as of 00:46, 24 September 2018

Other languages:
Deutsch • ‎English • ‎Nederlands • ‎Türkçe • ‎français • ‎italiano • ‎polski • ‎suomi • ‎Ελληνικά • ‎русский • ‎العربية • ‎中文(台灣)‎ • ‎한국어
Welcome to the Mudlet Wiki!

About Mudlet

A cross-platform, open source, and super fast MUD client with scripting in Lua.

New to Mudlet? Why not start with the basics, or take a look at Mudlet Manual. Or perhaps you want to find the answer to a Frequently Asked Question. If you don't have it yet, download it - it's free, and works on Windows, macOS, and Linux computers.

Are you having troubles with Mudlet? We can help. Start here.


External Links


Wiki Links

MUD standards

We will preserve the documentation of MUD standards that may get lost (because the original site is breaking down or is already offline) as they are implemented in Mudlet. We may also look into developing some of them in the future.

Lua

Mudlet uses Lua! Learning it is really rewarding - take a look at excellent stuff like the Lua tutorial (has an intro+crash course), Learn Lua in 15 mins, Learning Lua the Hard Way (very rewarding), Programming in Lua (official, but might be hard to follow) and various Lua tutorials.


Special Links


Using MediaWiki

Interested in contributing to this site? Use the following links to learn more about MediaWiki: (Note that the following links are not related to Mudlet)