Hello ! I've made this script:
function buletin(thePlayer, commandName)
if commandName == "buletin" then
local nume_jucator = getPlayerName(thePlayer):gsub("_", " ")
triggerEvent('sendAme', thePlayer, "duce mana dreapta catre buzunarul drept urmand s-o bage in el, apuca ce e acolo si scoate.")
triggerEvent('sendAdo', thePlayer, "Se poate observa ca a scos un portofel.")
triggerEvent('sendAme', thePlayer, "il deschide.")
triggerEvent('sendAdo', thePlayer, "Se poate observa un buletin si alte acte.")
triggerEvent('sendAme', thePlayer, "duce mana stanga catre buletin urmand sa-l scoata si sa-l citeasca, apoi baga buletinul inapoi, inchide portofelul si-l baga in buzunar.")
outputChatBox("#C0C0C0San Andreas #66B2FFSan #FFFF33Andr#FF0000eas #C0C0C0San Andreas", thePlayer, 255, 255, 255, true)
outputChatBox(" ", thePlayer, 0, 0, 0)
outputChatBox("#FFFF66Nume si Prenume:#FFFFFF "..nume_jucator, thePlayer, 255, 255, 255, true)
outputChatBox("#FFFF66Domiciliu:#FFFFFF Los Santos", thePlayer, 255, 255, 255, true)
outputChatBox("#FFFF66Data Nasterii:#FFFFFF "..exports.global:getPlayerDoB(thePlayer), thePlayer, 255, 255, 255, true)
end
end
addCommandHandler ("buletin", buletin)
function askid(thePlayer, commandName, targetPlayer)
if commandName == "askid" then
local nume_jucator = getPlayerName(thePlayer):gsub("_", " ")
if not (targetPlayer) then
outputChatBox ("Comanda: /"..commandName.." [ID Jucator]", thePlayer, 255, 255, 255)
else
local targetPlayer, tinta = exports.global:findPlayerByPartialNick(thePlayer, targerPlayer)
outputChatBox("I-ai aratat buletinul lui "..tinta.. ".", thePlayer, 255, 178, 102)
outputChatBox("Buletinul lui "..nume_jucator, tinta, 255, 178, 102)
outputChatBox(" ", tinta, 0, 0, 0)
outputChatBox("#C0C0C0San Andreas #66B2FFSan #FFFF33Andr#FF0000eas #C0C0C0San Andreas", targetPlayer, 255, 255, 255, true)
outputChatBox(" ", targetPlayer, 0, 0, 0)
outputChatBox("#FFFF66Nume si Prenume:#FFFFFF "..nume_jucator, targetPlayer, 255, 255, 255, true)
outputChatBox("#FFFF66Domiciliu:#FFFFFF Los Santos", targetPlayer, 255, 255, 255, true)
outputChatBox("#FFFF66Data Nasterii:#FFFFFF "..exports.global:getPlayerDoB(thePlayer), targetPlayer, 255, 255, 255, true)
end
end
end
addCommandHandler ("askid", askid)
<meta>
<script src="script.lua" type="server" />
</meta>
When i type "/askid 3" or "/askid Vladus_Griffin", give me error and i don't know why.
Error: ERROR: !buletin/script.lua:28: attempt to concatenate local 'tinta' (a nil value)
Can you help me please ?