Не работает пишет в консоле такую ошибку:Код кривой не работает до ужаса кривой почему нельзя написать его проще ? если что он добавляеться в jobs.lua
Вот пример:
Lua:local team = TEAM_MAYOR -- Профессия Мэра local timed = 300 -- Время в секундах, после которого пропадает бессмертие hook.Add("PlayerSpawn", "mayorgod", function(ply) if ply:Team() == team then DarkRP.notify( ply, 1, 4, "Так как вы только стали Мэром" ) DarkRP.notify( ply, 1, 4, "Вы получили бессмертие на ".. timed .." секунд!" ) ply:GodEnable() end timer.Simple( timed, function() DarkRP.notify( ply, 1, 4, "Вы снова смертны." ) ply:GodDisable() end ) end)
[ERROR] gamemodes/darkrp/gamemode/libraries/simplerr.lua:530: [ERROR] Lua is unable to understand file "darkrp_customthings/jobs.lua" because its author made a mistake around line number 432.
The best help I can give you is this:
Right before the 'local', Lua encountered something it could not make sense of.
Hints:
- Did you forget something here? (Perhaps a closing bracket)
- Is it a typo?