Próbáld meg ezt. Nekem jó:
addCommandHandler( \"setpassword\",
function( thePlayer, command, password )
if (exports.global:isScripter(thePlayer) or exports.global:isTulaj(thePlayer)) then
if #password < 3 then
outputChatBox( \"Min 3 karakter!!\", thePlayer )
return
end
local success = setServerPassword( password )
if success then
outputChatBox( \"Új jelszó: \" .. password, thePlayer )
else
outputChatBox( \"Hiba.\", thePlayer )
end
else
outputChatBox( \"Ez nem jött össze, sorry.\", thePlayer )
end
end
)
addCommandHandler( \"removepassword\",
function( thePlayer, command )
if (exports.global:isScripter(thePlayer) or exports.global:isTulaj(thePlayer)) then
local success = setServerPassword( nil )
if success then
outputChatBox( \"Már nincs jelszó!\", thePlayer )
else
outputChatBox( \"Hiba.\", thePlayer )
end
else
outputChatBox( \"Ez nem jött össze, sorry.\", thePlayer )
end
end
)