неожиданный символ рядом с ')' в строке 10
Я новичок в программировании и следовал всему в "LUA Tutorial 10b"
hook.Add( "PlayerSay", "CommandIdent", function( ply, text, team )
if( text == "!hurt" ) then
ply:SetHealth( ply:Health() - 25 )
if( ply:Health() <= 0 ) then
ply:Kill()
end
return "OUCH!"
end
if( string.sub( text, 1, 4, ) == "/ooc" ) then
return "[OOC]" .. string.sub( text, 5 )
end
end )
Скрипт должен переводиться "/ ooc (message) "to" [OOC] (message) ", когда пользователь вводит его в игру.