CreateNPC

NL.CreateNPC(Dofile, InitFuncName)

函数功能

使用Lua脚本创建NPC,并执行Dofile文件中的InitFuncName函数。

参数说明

返回值

创建成功则返回 对象index, 失败则返回负数

InitCallBack(CharIndex)

参数说明

CharIndex: 数值型 响应事件的对象index,该值由Lua引擎传递给本函数。

返回值

返回0即可

参考实例

init.lua

if(TestNPC == nil)then
  TestNPC = NL.CreateNpc("lua/testnpc.lua","MyCharInit");
end

testnpc.lua

function MyCharInit(_myIndex)
  return true;
end