Jump to content

[Ajuda] Com variavel no script


Recommended Posts

alguém sabe me dizer como faço a definição de uma variavel especifica pra 1 player só? e não para todos?
POR EXEMPLO:

local VARIAVEL1 = false

VARIAVEL1(thePlayer) = true

(quero q a variavel 1 fique apenas para 1 jogador e não todos do servidor como faço essa definição? (sou novo no script lua)

SCRIPT:

local PlayerJoin = false
addEventHandler ("onPlayerJoin", root, 
    function ()
        PlayerJoin [thePlayer] = true 
        outputChatBox("Player Entrou.")
    end
)
function Verification()
    if PlayerJoin[thePlayer] == true then 
        outputChatBox("VARIAVEL TRUE")
    else 
        outputChatBox("VARIAVEL FALSE")
    end 
end
addCommandHandler("teste", Verification)

 

@Lord Henry

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...