代码搜索:Lua
找到约 9,588 项符合「Lua」的源代码
代码结果 9,588
www.eeworm.com/read/192391/5157091
lua forest.lua
loadMappy( "forest.pms", "monastery_out.tga" )
setStartBlock( 5, 24 )
addLevelTrigger( "", 6, 18, "cottage", 5, 7 )
addTextTrigger( "", 11, 12, "You dare not enter\nwithout instructions;\nyou w
www.eeworm.com/read/192391/5157100
lua cottage.lua
loadMappy( "cottage.pms", "lato_in.tga" )
setStartBlock( 5, 7 )
addLevelTrigger( "noghoul", 6, 8, "forest", 6, 19 )
addLevelTrigger( "ghoul", 6, 8, "forest_ghoul", 6, 19 )
addItemTrigger( "",
www.eeworm.com/read/192391/5157132
lua player.lua
speed = 100
hitpoints = 250
sanity = 30;
swordSkill = 90;
swordDamage = 5;
swordRange = 75;
swordAngle = 60;
swordDelay = 0;
swordSlowdownFactor = 0;
spearSkill = 80;
spearDamage = 7;
s
www.eeworm.com/read/192391/5157212
lua doall.lua
-- emulate the command line behaviour of Lua 4.0
-- usage: lua doall.lua f1.lua f2.lua f3.lua ...
for i=1,table.getn(arg) do
dofile(arg[i])
end
www.eeworm.com/read/192391/5157215
xpm lua.xpm
/* XPM */
static char *magick[] = {
/* columns rows colors chars-per-pixel */
"32 32 6 1",
" c Gray0",
". c #000000008080",
"X c #808080808080",
"o c #c0c0c0c0c0c0",
"O c Gray100",
"+ c None
www.eeworm.com/read/192391/5157217
lua compat.lua
-------------------------------------------------------------------
-- Real globals
-- _ALERT
-- _ERRORMESSAGE
-- _VERSION
-- _G
-- assert
-- error
-- metatable
-- next
-- print
-- require
www.eeworm.com/read/192391/5157219
magic lua.magic
# Lua precompiled files. Versions 2.3 and 4.1 were never officially released.
0 string \33Lua precompiled chunk for Lua
>4 byte 0x23 2.3*
>4 byte 0x24 2.4
>4 byte 0x25 2.5
>4 byte 0x30 3.0
>4
www.eeworm.com/read/192391/5157221
1 lua.1
.\" lua.man,v 1.8 2003/04/02 00:05:20 lhf Exp
.TH LUA 1 "2003/04/02 00:05:20"
.SH NAME
lua \- Lua interpreter
.SH SYNOPSIS
.B lua
[
.I options
]
[
.I script
[
.I args
]
]
.SH DESCRIPTIO
www.eeworm.com/read/192391/5157225
h lua.h
/*
** $Id: lua.h,v 1.1.1.1 2006/02/20 15:43:37 kajala Exp $
** Lua - An Extensible Extension Language
** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil
** http://www.lua.org mailto:i
www.eeworm.com/read/192391/5157284
c lua.c
/*
** $Id: lua.c,v 1.1.1.1 2006/02/20 15:43:38 kajala Exp $
** Lua stand-alone interpreter
** See Copyright Notice in lua.h
*/
#include
#include
#include
#i