代码搜索:Lua
找到约 9,588 项符合「Lua」的源代码
代码结果 9,588
www.eeworm.com/read/183589/9152559
lua nicebufftimer.lua
BuffTime_CONFIG_ONOFF = "显示魔法增益时间";
BuffTime_CONFIG_ONOFF_INFO = "选中则显示魔法增益的剩余时间";
BuffTimefor_CONFIG_ONOFF = "精确时间";
BuffTimefor_CONFIG_ONOFF_INFO = "选中则显示魔法增益的精确剩余时间";
BuffTime_CONFIG_HEADER
www.eeworm.com/read/183589/9152571
lua screenshot.lua
--[[
-- Screenshot
-- Create it by pigbaby belong to gLim group
-- Version: 1.1
]]
SCREENSHOT_CONFIG_HEADER = "截图设置";
SCREENSHOT_CONFIG_HEADER_INFO = "截图是自动隐藏用户界面并在图片上显示月光宝盒的标志";
SC
www.eeworm.com/read/182843/9188388
lua autofringe.lua
-- Autofringe Script
-- Robert Edwards 2003
-- This script is in the public domain and can be used for any purpose
-- I just hope its useful.
function ShowError(message)
mappy.msgBox("E
www.eeworm.com/read/182843/9188389
lua placer.lua
-- Example Placer script
-- called when the mouse moves and a button pressed that is set to Placer.lua
function main ()
local x = mappy.getValue (mappy.MOUSEBLOCKX)
local y = mappy.getValue (m
www.eeworm.com/read/379134/9206721
lua save.lua
$debug
function savevar (n,v)
if v = nil then return end;
if type(v) = "number" then print(n.."="..v) return end
if type(v) = "string" then print(n.."='"..v.."'") return end
if type(v) = "table"
www.eeworm.com/read/379134/9206723
lua type.lua
www.eeworm.com/read/379134/9206724
lua globals.lua
k,v=nextvar(k)
while k do
print(k)
k,v=nextvar(k)
end
www.eeworm.com/read/379134/9206735
lua test.lua
$debug
function somaP (x1,y1,x2,y2)
return x1+x2, y1+y2
end
function norma (x,y)
return x*x+y*y
end
function retorno_multiplo ()
print (norma(somaP(2,3,4,5)))
end