I'm getting this error and I dont know why, the file is there. It was working at one point and now its not, no matter what files i try to include. if i make a new lua and include it same thing. I have already tried AddCSLuaFile on the init.lua and in the shared.lua
[code]
Couldn't include file 'teams\playerteam.lua' (File not found) (@gamemodes/chamber/gamemode/shared.lua (line 15))
[/code]
shared.lua
[code]
GM.Name = "OneInTheChamber v.1a"
GM.Author = "Masterj1337"
GM.Email = "masterj1337@pwnagegaming.org"
GM.Website = "pwnagegaming.org"
function GM:Initialize()
self.BaseClass.Initialize( self )
end
include( "teams/playerteam.lua" )
[/code]
init.lua
[code]
AddCSLuaFile( "cl_init.lua" )
AddCSLuaFile( "shared.lua" )
AddCSLuaFile( 'teams/playerteam.lua' )
include( 'shared.lua' )
[/code]
any suggestions or solutions?