Jump to content

[ajuda]tem algum erro no meu script?


Recommended Posts

[ajuda]tem algum erro no meu script?

objetivo do meu script:aparecer uma mensagem de 5 em 5 minutos,e quando um player entra,uma mensagem de bem vindo.

 

function MChat
    setTimer(function()
    outputChatBox("Seja bem vindo,nosso discord:mtasa://54.39.46.146:22043,leia as nossas regras!! " .. math.random(1,4), root, 255, 255, 255) 
end, 300000, 0)

function MChat2()
local joinedPlayerName = getPlayerName ( source )
local serverName = getServerName( )
outputChatBox("Seja bem vindo"..joinedPlayerName.."ao servidor"..serverName.."!", source, 255, 255, 255)
end
addEventHandler("onPlayerJoin",getRootElement(),greetPlayer)

Link to comment
9 minutos atrás, DNL291 disse:

Você não está definindo o nome da função não addEventHandler, ' greetPlayer ' será nulo. E depois de 'MChat' tem dois parêntesis '()'.

Da próxima vez use o botão <> para postar seu código, leia .

como assim " você não está definindo o nome da função não addEventHandler, '  greetPlayer  ' será nulo", não entendi ...

 

Edited by playerpocket
Link to comment
function MChat()
    setTimer(function()
    outputChatBox("Seja bem vindo,nosso discord:mtasa://54.39.46.146:22043,leia as nossas regras!!", root, 255, 255, 255) 
end, 300000, 0)
end

function MChat2()
local joinedPlayerName = getPlayerName ( source )
local serverName = getServerName( )
outputChatBox("Seja bem vindo"..joinedPlayerName.."ao servidor"..serverName.."!", source, 255, 255, 255)
end
addEventHandler("onPlayerJoin", getRootElement(), MChat2)

Retirei math.random pois n entendi a necessidade dele ali

Edited by Eficiencia
Link to comment
2 minutes ago, Eficiencia said:

function MChat()
    setTimer(function()
    outputChatBox("Seja bem vindo,nosso discord:mtasa://54.39.46.146:22043,leia as nossas regras!!", root, 255, 255, 255) 
end, 300000, 0)
end

function MChat2()
local joinedPlayerName = getPlayerName ( source )
local serverName = getServerName( )
outputChatBox("Seja bem vindo"..joinedPlayerName.."ao servidor"..serverName.."!", source, 255, 255, 255)
end
addEventHandler("onPlayerJoin", getRootElement(), MChat2)

Retirei math.random pois n entendi a necessidade dele ali

obrigado,eu olhei esse exemplo de script na wiki,fiquei estranhando o math.random,mas achei melhor deixar lá.

 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...