Lua update. New phrases. Try to remove some duplicates by avoiding use of space and : in short common phrases. Removed localisation of some script names, since we can't localise that in frontend yet anyway, without screwing up multiplayer.
--------------------------------
-- NO JUMPING
--------------------------------
loadfile(GetDataPath() .. "Scripts/Locale.lua")()
function onGameInit()
Goals = loc("Jumping is disabled")
end
--function onGameStart()
-- ShowMission(LOC_NOT("NO JUMPING"), LOC_NOT("- Jumping is disabled"), LOC_NOT("Good luck out there!"), 0, 0)
--end
function onNewTurn()
SetInputMask(band(0xFFFFFFFF, bnot(gmLJump + gmHJump)))
end