mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-05 01:50:25 +01:00
25 lines
794 B
Lua
Executable File
25 lines
794 B
Lua
Executable File
--[[
|
|
Sprint mod for Minetest by GunshipPenguin
|
|
|
|
To the extent possible under law, the author(s)
|
|
have dedicated all copyright and related and neighboring rights
|
|
to this software to the public domain worldwide. This software is
|
|
distributed without any warranty.
|
|
]]
|
|
|
|
--Configuration variables, these are all explained in README.md
|
|
SPRINT_METHOD = 1
|
|
SPRINT_SPEED = 1.35
|
|
SPRINT_JUMP = 1.1
|
|
SPRINT_STAMINA = 10
|
|
SPRINT_TIMEOUT = 0.5 --Only used if SPRINT_METHOD = 0
|
|
|
|
if SPRINT_METHOD == 0 then
|
|
dofile(minetest.get_modpath("sprint") .. "/wsprint.lua")
|
|
elseif SPRINT_METHOD == 1 then
|
|
dofile(minetest.get_modpath("sprint") .. "/esprint.lua")
|
|
else
|
|
minetest.log("error", "Sprint Mod - SPRINT_METHOD is not set properly, using e to sprint")
|
|
dofile(minetest.get_modpath("sprint") .. "/esprint.lua")
|
|
end
|