localmodname="governing"-- name of the mod , need to be used later in namespace mod variable
localmodpath=minetest.get_modpath("governing")-- path of the mod
localmodstor=minetest.get_mod_storage()-- request of storage for the mod, if valid, otherwise false/nil
localworlddir=minetest.get_worldpath()-- path of the world were the mod is running, otherwise false/nil
localmodmail=minetest.get_modpath("mail")-- path of the mail mod if available for sending messages internaly on private, otherwise false/nil
localmodgeoip=minetest.get_modpath("geoip")-- if available, their commands wil be used, otherwise we provided
localmoddefault=minetest.get_modpath("default")-- path of default mod if available, otherwise false/nil
localmodkillme=minetest.get_modpath("killme")-- if killme is present as mod if available, otherwise we use own
localmodcommand=minetest.get_modpath("game_commands")-- updated killme is present as mod if available, otherwise we use own
localmodcreative=minetest.get_modpath("creative")-- if creative is available, otherwise false/nil
localmodantispawn=minetest.get_modpath("antispam")-- if rnd1 anticheat mod is loaded, cos only wolrs with mt4
localmodanticheat=minetest.get_modpath("anticheat")-- if rnd1 anticheat mod is loaded, cos only wolrs with mt4
localmodbeowulf=minetest.get_modpath("beowulf")-- if rnd1 anticheat mod is loaded, cos only wolrs with mt4
localmodhudbars=minetest.get_modpath("hudbars")-- if the hudbars mod is loaded and working, from wuzzy
localmodhbhunger=minetest.get_modpath("hbhunger")-- if the hudbars hunger mod is loaded and working, from wuzzy
localcheckapikey=minetest.settings:get("governing.checkapikey")or""-- need for geoip improved ip information, then geoip normal will be used
localis_46=minetest.has_feature("add_entity_with_staticdata")-- detect minetest engine 4.0.16 or mayor
localis_50=minetest.has_feature("object_use_texture_alpha")-- detect mineitest engine more modern than 5.0.0
localis_53=minetest.has_feature("object_step_has_moveresult")-- detect mineitest engine more modern than 5.3.1
localis_54=minetest.has_feature("direct_velocity_on_players")-- detect mineitest engine more modern than 5.4.0
localhttpapi=minetest.request_http_apiandminetest.request_http_api()-- Only works at init time and must be called from the mod's main scope (not from a function).
localcreative_mode_cache=minetest.settings:get_bool("creative_mode")-- detection if game is running in main creative
localS
--[[ end - all local variables ]]
--[[ init - translation boilerplace, currently some issues with intlib mod ]]
ifminetest.get_translator~=nilthen
S=minetest.get_translator(modname)-- 5.x translation function