运行 Garry's Mod 服务器时出现 lua 错误

[ERROR] gamemodes/starwarsrp/gamemode/modules/base/sv_gamemode_functions.lua:256: 尝试索引本地变量 'jobTable' (一个空值)
  1. 未知 - gamemodes/starwarsrp/gamemode/modules/base/sv_gamemode_functions.lua:256

这里是第 256 和 257 行:

 256 if jobTable.ShowSpare2 then
 257      return jobTable.ShowSpare2(ply)
点赞
用户2858170
用户2858170

jobTablenil。不允许对 nil 值进行索引。这意味着你不能像这样写 jobTable[1]jobTable.ShowSpare(ply)

要么找出在你的代码中 jobTable 为何为 nil,要么如果你不能确保它不为 nil,就避免对其进行索引,可以执行以下操作:

if jobTable then return jobTable.ShowSpare(ply)

或者

return jobTable and jobTable.ShowSpare(ply)
2020-05-28 07:17:56