This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
dev:core:funref:is_creative [2019-10-02 15:07] 82.67.173.193 created examples |
dev:core:funref:is_creative [2020-01-22 09:53] (current) admin ↷ Page moved from reference:advtrains:is_creative to dev:core:funref:is_creative |
||
---|---|---|---|
Line 6: | Line 6: | ||
===== Syntax ===== | ===== Syntax ===== | ||
<code lua> | <code lua> | ||
- | advtrains.is_creative(playername) | + | advtrains.is_creative(name) |
</ | </ | ||
===== Parameters ===== | ===== Parameters ===== | ||
- | * '' | + | * '' |
+ | |||
+ | ===== Returns ===== | ||
+ | True if the creative mode is enabled for the player, false otherwise. | ||
===== Errors and warnings ===== | ===== Errors and warnings ===== | ||
- | It gives an error if the '' | + | It gives an error if the '' |
> 2019-01-01 15:00:00: Error[Server]: | > 2019-01-01 15:00:00: Error[Server]: | ||
Line 36: | Line 39: | ||
<file lua is_creative.lua> | <file lua is_creative.lua> | ||
function advtrains.is_creative(name) | function advtrains.is_creative(name) | ||
- | | + | |
- | error(" | + | error(" |
- | end | + | end |
- | if minetest.check_player_privs(name, | + | if minetest.check_player_privs(name, |
- | return true | + | return true |
- | end | + | end |
- | return minetest.settings: | + | return minetest.settings: |
end | end | ||
</ | </ |