Main Page: Difference between revisions
Jump to navigation
Jump to search
Restore documentation portal Tag: Manual revert |
Update Lua API overview |
||
| Line 15: | Line 15: | ||
<li>[[:Category:Lua API|Lua API overview]]</li> | <li>[[:Category:Lua API|Lua API overview]]</li> | ||
<li>[[:Category:Lua Functions|Complete function catalog]]</li> | <li>[[:Category:Lua Functions|Complete function catalog]]</li> | ||
<li>[[Lua events|Complete event and callback catalog]]</li> | |||
<li>[[:Category:Resource Functions|Resource lifecycle functions]]</li> | <li>[[:Category:Resource Functions|Resource lifecycle functions]]</li> | ||
<li>[[:Category:Lua Examples|Lua examples]]</li> | <li>[[:Category:Lua Examples|Lua examples]]</li> | ||
| Line 28: | Line 29: | ||
<li>[[:Category:Client Functions|Client-side functions]]</li> | <li>[[:Category:Client Functions|Client-side functions]]</li> | ||
<li>[[:Category:Shared Functions|Shared functions]]</li> | <li>[[:Category:Shared Functions|Shared functions]]</li> | ||
<li>[[:Category:Server Events|Server-side events]]</li> | |||
<li>[[:Category:Client Events|Client-side events]]</li> | |||
<li>[[:Category:Event Functions|Event functions]]</li> | <li>[[:Category:Event Functions|Event functions]]</li> | ||
<li>[[:Category:Network Functions|Network functions]]</li> | <li>[[:Category:Network Functions|Network functions]]</li> | ||
| Line 46: | Line 49: | ||
<div>[[:Category:Life State Functions|Health and life state]]</div> | <div>[[:Category:Life State Functions|Health and life state]]</div> | ||
<div>[[:Category:World Functions|World time and weather]]</div> | <div>[[:Category:World Functions|World time and weather]]</div> | ||
<div>[[:Category:Monster Functions|Monsters]]</div> | |||
<div>[[:Category:Interaction Functions|Interactions]]</div> | |||
</div> | </div> | ||
</div> | </div> | ||
| Line 59: | Line 64: | ||
<div>[[:Category:Animation Functions|Animations]]</div> | <div>[[:Category:Animation Functions|Animations]]</div> | ||
<div>[[:Category:Camera Functions|Camera]]</div> | <div>[[:Category:Camera Functions|Camera]]</div> | ||
<div>[[Lua events|Events and callbacks]]</div> | |||
</div> | </div> | ||
</div> | </div> | ||
| Line 75: | Line 81: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
See [[AddEventHandler|addEventHandler]], [[SetPlayerName|setPlayerName]], [[SpawnPlayer|spawnPlayer]], and [[OutputChatBox|outputChatBox]] for parameter details and additional examples. | See [[onPlayerJoin]], [[AddEventHandler|addEventHandler]], [[SetPlayerName|setPlayerName]], [[SpawnPlayer|spawnPlayer]], and [[OutputChatBox|outputChatBox]] for parameter details and additional examples. | ||
<div style="display:flex; flex-wrap:wrap; gap:1rem; margin-top:1.25rem;"> | <div style="display:flex; flex-wrap:wrap; gap:1rem; margin-top:1.25rem;"> | ||
| Line 89: | Line 95: | ||
<div style="flex:1 1 22rem; border-top:3px solid #6f8461; background:#f5f2e9; padding:1rem 1.15rem;"> | <div style="flex:1 1 22rem; border-top:3px solid #6f8461; background:#f5f2e9; padding:1rem 1.15rem;"> | ||
<div style="font-size:1.2rem; font-weight:bold; margin-bottom:0.4rem;">Documentation status</div> | <div style="font-size:1.2rem; font-weight:bold; margin-bottom:0.4rem;">Documentation status</div> | ||
<div style="line-height:1.6;">The reference currently contains ''' | <div style="line-height:1.6;">The reference currently contains '''163 documented Lua functions''' and '''62 public events'''. APIs marked [[:Category:Experimental Lua API|experimental]] have validated contracts but may still change while the multiplayer runtime is under active development.</div> | ||
</div> | </div> | ||
</div> | </div> | ||
[[Category:Lua API]] | [[Category:Lua API]] | ||
Revision as of 22:33, 14 August 2026
Gothic 1 Remake Multiplayer
G1R:MP Scripting Wiki
Build multiplayer resources and gamemodes with Lua 5.1. This wiki documents the server, client, networking, gameplay, database, and RmlUi APIs exposed by G1R:MP.
Lua 5.1 • server and client resources • authoritative gameplay • RmlUi
Start here
Find the right entry point for your first resource.
Reference by execution side
Check where a function is available before using it.
Gameplay
Scripting systems
Your first server script
The following example welcomes a joining player and places them at an authoritative spawn point:
addEventHandler("onPlayerJoin", root, function(playerId)
setPlayerName(playerId, "Newcomer")
spawnPlayer(playerId, 12.0, 24.0, 2.0, 90)
outputChatBox("Welcome to G1R:MP!", playerId, 225, 195, 110)
end)
See onPlayerJoin, addEventHandler, setPlayerName, spawnPlayer, and outputChatBox for parameter details and additional examples.
Documentation status
The reference currently contains 163 documented Lua functions and 62 public events. APIs marked experimental have validated contracts but may still change while the multiplayer runtime is under active development.