1

我制作的简单代码遇到了一些麻烦:

SWEP.PrintName          = "Gestionnaire d'alarmes Administrateur"           
SWEP.Author         = "Frass"
SWEP.Instructions       = "Clic Gauche : Ouvrir le gestionnaire"

SWEP.Spawnable = true
SWEP.AdminOnly = true

SWEP.Primary.ClipSize       = -1
SWEP.Primary.DefaultClip    = -1
SWEP.Primary.Automatic      = false
SWEP.Primary.Ammo       = "none"

SWEP.Secondary.ClipSize     = -1
SWEP.Secondary.DefaultClip  = -1
SWEP.Secondary.Automatic    = true
SWEP.Secondary.Ammo     = "none"

SWEP.Weight         = 5
SWEP.AutoSwitchTo       = false
SWEP.AutoSwitchFrom     = false

SWEP.Slot           = 1
SWEP.SlotPos            = 2
SWEP.DrawAmmo           = false
SWEP.DrawCrosshair      = true


SWEP.ViewModel          = "models/weapons/v_pistol.mdl"
SWEP.WorldModel         = "models/weapons/w_pistol.mdl"

local ShootSound = Sound( "buttons/button14.wav" )

function SWEP:PrimaryAttack()

    self:TabletMenu()

end


function TabletMenu() (reduced, there's a lot of code inside)

当我尝试在 GMOD 中使用我的 SWEP 时,控制台给了我这个错误:

[ERROR] lua/weapons/alarmtabletld.lua:44: attempt to call method 'TabletMenu' (a nil value)
  1. unknown - lua/weapons/alarmtabletld.lua:44

我真的不明白这个错误是怎么回事......一些帮助可能真的很好!

4

1 回答 1

0

您正在调用一个TabletMenu不作为SWEP表的一部分存在的函数。它可能在其他地方定义吗?

于 2018-07-30T16:08:29.023 回答