Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ftb-gamepedia/oredict
An extension that mimics the ore dictionary in Minecraft.
https://github.com/ftb-gamepedia/oredict
ftb-wiki mediawiki mediawiki-extension minecraft ore-dictionary
Last synced: about 2 months ago
JSON representation
An extension that mimics the ore dictionary in Minecraft.
- Host: GitHub
- URL: https://github.com/ftb-gamepedia/oredict
- Owner: FTB-Gamepedia
- License: mit
- Created: 2014-12-04T15:47:24.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-08-08T03:14:30.000Z (5 months ago)
- Last Synced: 2024-08-09T04:53:18.793Z (5 months ago)
- Topics: ftb-wiki, mediawiki, mediawiki-extension, minecraft, ore-dictionary
- Language: PHP
- Homepage: https://www.mediawiki.org/wiki/Extension:OreDict
- Size: 248 KB
- Stars: 4
- Watchers: 7
- Forks: 6
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# OreDict
A MediaWiki extension that mimics the Ore Dictionary in Minecraft Forge.## Installation
This extension works together with [the Tilesheets extension](https://github.com/hydrawiki/tilesheets), so you'll want to install that as well.### Installation Steps
* Place the `OreDict` directory (this repository) into the extension directory at the root of your MediaWiki Install.
* Load the extension in your LocalSettings.php file (for more information, see [Extension Registration](https://www.mediawiki.org/wiki/Manual:Extension_registration))
* For MediaWiki 1.25+, simply add `wfLoadExtension('OreDict')`
* For MediaWiki 1.24 and below, add `require_once("$IP/extensions/FooBar/FooBar.php")`
* Run the MediaWiki update script
* `php maintenance/Update.php` (if in your MediaWiki root directory)## Configuration
Some group(s) will need to have the `editoredict` and `importoredict` rights, otherwise the extension will not be usable.
Typically, groups of power should have `editoredict`, and bots should have `importoredict`.### Example Config
```
$wgGroupPermissions['bureaucrat']['editoredict'] = true;
$wgGroupPermissions['sysop']['editoredict'] = true;
$wgGroupPermissions['bot']['importoredict'] = true;
```For more information about settings up User Rights, see the [Official MediaWiki Documentation](https://www.mediawiki.org/wiki/Manual:User_rights)
## Additional Information
For detailed usage information, see the [help wiki](https://help.gamepedia.com/Extension:OreDict).