Deletion log

Jump to navigation Jump to search

Below is a list of the most recent deletions.

Logs
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 01:54, 16 August 2022 Rubenwardy talk contribs restored page Mod interoperability (72 revisions)
  • 01:54, 16 August 2022 Rubenwardy talk contribs restored page Player physics (2 revisions)
  • 22:15, 15 August 2022 Rubenwardy talk contribs deleted page Modding Intro/de (content was: "{{Languages}} Eine andere Hilfe ist verfügbar: <big>'''Das [https://rubenwardy.com/minetest_modding_book/en/index.html Minetest Modding Online Tutorial Buch] ist eine vollständigere und einfacher zu verstehende Anleitung. Allerdings ist sie nur auf Englisch verfügbar.'''</big> ------------------------- Minetest hat ein Scripting '''API''''. (''''A'''pplication ''''P'''rogr...", and the only contributor was "Niwla" (talk))
  • 22:03, 15 August 2022 Rubenwardy talk contribs deleted page register alias force (content was: "#REDIRECT minetest.register_alias_force {{delete|Changed to minetest.register_alias_force}}")
  • 22:03, 15 August 2022 Rubenwardy talk contribs deleted page spawn falling node (content was: "#REDIRECT minetest.spawn_falling_node {{delete|Changed to minetest.spawn_falling_node}}")
  • 22:02, 15 August 2022 Rubenwardy talk contribs deleted page Voxel Manipulator (content was: "#REDIRECT VoxelManip", and the only contributor was "Prestidigitator" (talk))
  • 22:02, 15 August 2022 Rubenwardy talk contribs deleted page VoxelManip (better documented in Modding Book and lua API ref)
  • 22:02, 15 August 2022 Rubenwardy talk contribs deleted page MinetestWiki:Lua API Wiki Documentation Cleanup (content was: "The Minetest Developer Wiki is being plagued by a large number of outdated pages, most of which are pending deletion. This page lists information about what needs to be done. == The problem == A huge amount of pages about the Lua API are outdated. Most of the content has bee just copied from the official documentation at one day, and unsurprisingly never updated since then (because it was a shitty idea to begin with, who's going to manually update the whole wiki just to duplic...")
  • 22:00, 15 August 2022 Rubenwardy talk contribs restored page Modding FAQ (28 revisions) (sasdasd)
  • 21:58, 15 August 2022 Rubenwardy talk contribs deleted page Calinou (content was: "#REDIRECT User:Calinou", and the only contributor was "Hybrid Dog" (talk))
  • 21:57, 15 August 2022 Rubenwardy talk contribs deleted page AreaStore (lua_api is better)
  • 21:56, 15 August 2022 Rubenwardy talk contribs deleted page Installing Weblate (better documented elsewhere)
  • 21:55, 15 August 2022 Rubenwardy talk contribs deleted page EnvRef (deprecated)
  • 21:54, 15 August 2022 Rubenwardy talk contribs deleted page Project Overview (stub)
  • 21:54, 15 August 2022 Rubenwardy talk contribs deleted page Settings (lua_api is better)
  • 21:53, 15 August 2022 Rubenwardy talk contribs deleted page treedef (better documented in Modding Book and lua API ref)
  • 21:52, 15 August 2022 Rubenwardy talk contribs deleted page minetest.get all craft recipes (better documented in Modding Book and lua API ref)
  • 21:52, 15 August 2022 Rubenwardy talk contribs deleted page NodeTimerRef (better documented in Modding Book and lua API ref)
  • 21:52, 15 August 2022 Rubenwardy talk contribs deleted page Community (content was: "Welcome! The community is what Minetest generally revolves around, making Minetest more of a social sandbox game, especially if you are playing with friends on a public or private server. There are many ways to participate in the Minetest community, two of which are: * Internet Relay Chat ** General discussion (English) (usually this channel has the most users): [irc://irc.libera.chat/minetest #minetest on Libera] ** General discussion (French): [irc://irc.libera.chat/minete...")
  • 21:52, 15 August 2022 Rubenwardy talk contribs deleted page GitHub (content was: "==What is GitHub?== GitHub is a website offering source code hosting for free software projects. Its features include issue trackers, an easy to use web interface, a built in wiki software, and simple facilities for merging and branching. GitHub is based around the version control system called Git. It uses Git to facilitate most of its basic features, like repositories, merging, and archiving. ==How can I join?== You are not required to join GitHub to develop for Minet...")
  • 21:52, 15 August 2022 Rubenwardy talk contribs deleted page minetest.setting getbool (content was: "{{DISPLAYTITLE:minetest.setting_getbool}} {{delete | Deprecated in favour of minetest.Settings}} == Syntax == <source>minetest.setting_getbool("name")</source> == Description == Returns either the boolean that is stored in minetest.conf under <source enclose="none">name</source>, or <source enclose="none">nil</source> if the variable is not found. This function reads a string. If the string equals any of <code>y</code>, <code>yes</code>, <code>true</code>, o...")
  • 21:52, 15 August 2022 Rubenwardy talk contribs deleted page minetest.setting get pos (content was: "{{DISPLAYTITLE:minetest.setting_get_pos}} {{delete | Deprecated in favour of minetest.Settings}} == Syntax == <source>minetest.setting_get_pos("name")</source> == Description == Returns the position that is stored in minetest.conf under the variable <source enclose="none">name</source>, or <source enclose="none">nil</source> if the value is not found. The syntax in the config file is as follows: <source lang="text"> varname = X, Y, Z </source> Where <c...")
  • 21:51, 15 August 2022 Rubenwardy talk contribs deleted page HTTPApiTable (content was: "{{UnofficialLua}} Table of functions used to request files over HTTP, returned by minetest.request_http_api() == Methods == * <source enclose="none">fetch(HTTPRequest, callback)</source> ** Performs given request asynchronously and calls callback upon completion ** callback: `function(HTTPRequestResult)` ** Use this HTTP function if you are unsure, the others are for advanced use. * <source enclose="none">fetch_async(HTTPRequest)</source> -returns handle ** Per...")
  • 21:51, 15 August 2022 Rubenwardy talk contribs deleted page minetest.request http api() (content was: "{{UnofficialLua}} {{DISPLAYTITLE:minetest.request_http_api}} == Syntax == <source>minetest.request_http_api()</source> == Description == * returns HTTPApiTable containing http functions if the calling mod has been granted access by being listed in the <code>secure.http_mods</code> or <code>secure.trusted_mods</code> setting, otherwise returns <code>nil</code>. * Only works at init time and must be called from the mod's main scope (not from a function). * Function only exis...")
  • 21:51, 15 August 2022 Rubenwardy talk contribs deleted page PseudoRandom (content was: "{{UnofficialLua}} A pseudorandom number generator. Can be created via <source enclose="none">PseudoRandom(seed)</source>.<br/> Note that math.random works about 17 times as fast as this. == Methods == * <source enclose="none">next()</source> — return next integer random number <code>[0...32767]</code> * <source enclose="none">next(min, max)</source> — return next integer random number <code>[min...max]</code>; <source enclose="none">max - min</source> must be <code>32767</...")
  • 21:51, 15 August 2022 Rubenwardy talk contribs deleted page minetest.setting get (content was: "{{DISPLAYTITLE:minetest.setting_get}} {{delete | Deprecated in favour of minetest.Settings}} == Syntax == <source>minetest.setting_get("name")</source> == Description == Returns the value of an option stored in minetest.conf as a string.<br/> Note that you can use settingtypes.txt to add your own settings to the configuration in the main menu. <br/> == Example == <source> local player_name = minetest.setting_get("name") </source> == See Also == *mine...")
  • 21:51, 15 August 2022 Rubenwardy talk contribs deleted page minetest.setting set (content was: "{{DISPLAYTITLE:minetest.setting_set}} {{delete | Deprecated in favour of minetest.Settings}} == Syntax == <source>minetest.setting_set("name", "value")</source> == Description == Stores <source enclose="none">value</source> as a simple string under <source enclose="none">name</source> in minetest.conf. == Example == <source> minetest.setting_set("myoption", "Hello, World!") </source> == See Also == *minetest.setting_get *minetest.setting_get_pos *...")
  • 21:50, 15 August 2022 Rubenwardy talk contribs deleted page digprop functions (deprecated)
  • 21:50, 15 August 2022 Rubenwardy talk contribs deleted page SimpleSoundSpec (lua_api is better)
  • 21:50, 15 August 2022 Rubenwardy talk contribs deleted page C++/eo (content was: "{{Languages}} '''C++''' estas programlingvo en kiu Minetest-motoro estas programita. Volanta lerni C++ povas fari tion ĉe http://cplusplus.com Se vi scias Irrlicht, C++/C kaj Lua, publikigu flikaĵojn ĉe git. Hodiaŭ ni uzas standardon '''C++11'''. Category:Core Engine Category:Development Tools", and the only contributor was "Reedych" (talk))
  • 21:50, 15 August 2022 Rubenwardy talk contribs deleted page C++/fr (content was: "{{Languages}} '''C++''' est le langage de programmation utilisé pour le moteur de Minetest. Si vous souhaitez apprendre le C++, allez sur http://cplusplus.com Si vous êtes à l’aise avec Irrlicht, C, C++ et Lua, n’hésitez pas à soumettre des correctifs par git. Category:Core Engine Category:Development Tools", and the only contributor was "0x539" (talk))
  • 21:50, 15 August 2022 Rubenwardy talk contribs deleted page C++/ja (content was: "{{Languages}} '''C++'''はプログラム言語であり、Minetestのエンジンのプログラムに使用されています。 C++を学びたい場合は http://cplusplus.com をご覧ください。 IrrlichtやC++/CやLuaの開発に触れたいならば、ご遠慮無くgitでパッチを送信してください。 Category:Core Engine Category:Development Tools", and the only contributor was "Rui" (talk))
  • 21:50, 15 August 2022 Rubenwardy talk contribs deleted page C++ (content was: "{{Languages}} '''C++''' is the Programming language which the Minetest Engine is programmed in. If you want to learn C++, go to http://cplusplus.com Then once you have a feel for [http://irrlicht.sourceforge.net/docu/ Irrlicht], C++/C and Lua, feel free to submit patches via git. We are currently using '''C++11''' norm. Category:Core Engine Category:Development Tools")
  • 21:50, 15 August 2022 Rubenwardy talk contribs deleted page Server commands (content was: "{{delete|see below}} This page is obsolete. Please refer to [https://wiki.minetest.net/Server_commands this page] for a list. (Calinou, if you see this, please delete this page. Thanks!) ~ Bigfoot (Founder - docs team) (talk) 00:16, 6 October 2017 (UTC)")
  • 21:49, 15 August 2022 Rubenwardy talk contribs deleted page types (unneeded)
  • 21:49, 15 August 2022 Rubenwardy talk contribs deleted page timeofday (content was: "{{UnofficialLua}} You can find out current time if you use Minetest. Get timeofday. Float, 0...1; 0 = midnight, 0.5 = midday. Category:Types")
  • 21:49, 15 August 2022 Rubenwardy talk contribs deleted page minetest.get last run mod (better documented in Modding Book and lua API ref)
  • 21:49, 15 August 2022 Rubenwardy talk contribs deleted page IRC (content was: "This page has been moved. Go to [http://wiki.minetest.net/IRC http://wiki.minetest.net/IRC].")
  • 21:49, 15 August 2022 Rubenwardy talk contribs deleted page on punch (content was: "{{delete|This wiki does not want to replicate lua_api.txt}}")
  • 21:49, 15 August 2022 Rubenwardy talk contribs deleted page position (content was: "{{delete|Was an outdated redirect to an outdated page}}")
  • 21:49, 15 August 2022 Rubenwardy talk contribs deleted page Modding FAQ/de (content was: "{{Languages/de}} Umm I don't know german but this is a test!", and the only contributor was "Celeron55" (talk))
  • 21:48, 15 August 2022 Rubenwardy talk contribs deleted page minetest.register playerevent (content was: "{{UnofficialLua}} {{delete|was empty page}}")
  • 21:46, 15 August 2022 Rubenwardy talk contribs deleted page timers to add (content was: "{{delete|This wiki does not want to replicate lua_api.txt}}")
  • 21:46, 15 August 2022 Rubenwardy talk contribs deleted page sky colour (content was: "{{UnofficialLua}} the background, called sky, can be the default minetest sky, a colour or textures, see player:set_sky the default sky is part of the source code and of course it depends on the tod the client gets")
  • 21:46, 15 August 2022 Rubenwardy talk contribs deleted page set node (content was: "{{delete|This wiki is not meant to replicate lua_api.txt}}")
  • 21:46, 15 August 2022 Rubenwardy talk contribs deleted page player set textures (content was: "{{delete|Outdated}} {{DISPLAYTITLE:default.player_set_textures}} '''This function will be removed in next stable release''' == Syntax == <source>default.player_set_textures(player, filename)</source> == Description == Set texture for player. == Parameters == # Player object # path to file with texture, ending to .png == Example == ==== player_textures mod ==== <source> minetest.register_on_joinplayer(function(player) local playername = player:get_player_name() -- get p...")
  • 21:46, 15 August 2022 Rubenwardy talk contribs deleted page nodeupdate (content was: "{{UnofficialLua}} {{DISPLAYTITLE:nodeupdate}} == Description == This function is deprecated and removed. Use minetest.check_for_falling instead. The <code>nodeupdate</code> function was removed in commit [https://github.com/minetest/minetest/commit/b8f06ad37e142004335e8c2ffaec5fe73b620196 <code>b8f06ad</code>] and all traces removed in commit [https://github.com/minetest/minetest/commit/c0dac4d9284b61c5ff411cbd45786ed14c200f37 <code>c0dac4d</code>]([https://github.com/mine...")
  • 21:46, 15 August 2022 Rubenwardy talk contribs deleted page minetest.setting setbool (content was: "{{UnofficialLua}} {{DISPLAYTITLE:minetest.setting_setbool}} {{delete | Deprecated in favour of minetest.Settings}} == Syntax == <source>minetest.setting_setbool(name, value)</source> == Description == Changes a boolean of the minetest configuration. * <code>name</code>: The name of the setting (a string) * <code>value</code>: The value of the boolean setting, either <code>true</code> or <code>false</code>. == Example == This code sets the setting “enable_pv...")
  • 21:46, 15 August 2022 Rubenwardy talk contribs deleted page minetest.setting save (content was: "{{UnofficialLua}} {{DISPLAYTITLE:minetest.setting_save}} == Syntax == <source>minetest.setting_save()</source> == Description == saves all settings to the config file")
  • 21:46, 15 August 2022 Rubenwardy talk contribs deleted page minetest.run callbacks (content was: "{{UnofficialLua}} == Syntax == <source>minetest.run_callbacks(callbacks, mode, ...)</source> == Description == * returns a result of callbacks' function(s) * callbacks: a table of functions * mode: a number * ...: the function values used for callbacks' functions")
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)