Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 21/08/20 in Posts

  1. Indeed, you can't make it with moveObject function. So you can make it in different ways such as : doing it with variables and onClientRender event or doing it using interpolateBetween, getTickCount, setElementPosition and onClientRender event. Hope it helps!
    1 point
  2. Já resolvi, eu coloquei na ACL console resource.admin e deu certo! obrigado, THANKS
    1 point
  3. Pode ser que o nome do resource admin esteja diferente. Se tiver, renomeie para admin. Se não for isso, baixe o resource admin original e substitua.
    1 point
  4. Digite no Console do servidor o comando info admin e verifique se está tudo ok Certifique-se de estar logado no servidor e digite start, se mostrar ACL: Access denied for 'start' significa que a sua conta não está na ACL. Pode ser também que a sua ACL esteja com problemas - você pode obter a versão atual desse arquivo aqui: https://github.com/multitheftauto/mtasa-blue/blob/master/Server/mods/deathmatch/acl.xml. Edit: você mandou o vídeo depois que postei aqui; No seu caso você realmente possui acesso ao painel, o problema é provavelmente com permissões do resource admin ou o próprio resource com problemas. Você pode descobrir mais olhando o seu console quando tentar iniciar algum resource. De qualquer forma, recomendo que faça o que eu disse acima e obtenha o acl.xml original.
    1 point
  5. Doing something like that with no experience will create a potential security vulnerability almost 100% sure. You can use some server administrator that has already been vouched and pentested like webmin http://www.webmin.com/ With this you can administer your ubuntu box and also launch, monitor and stop your server. Good luck
    1 point
  6. É impossível obter jogadores que não estão online. Mas vc pode obter todos os logins registrados em tal ACL Group. addCommandHandler ("listgroup", function (thePlayer, cmd, aclGroup) -- Teste usando /listgroup Admin if (aclGroup) then if (not aclGetGroup(aclGroup)) then return outputChatBox ("ACL Group '"..aclGroup.."' não existe.", thePlayer, 255, 0, 0) end local table = aclGroupListObjects (aclGetGroup(aclGroup)) outputChatBox ("Logins registrados na ACL Group "..aclGroup..":", thePlayer) for _,name in pairs(table) do local objType = gettok (name, 1, string.byte('.')) -- objType recebe tudo que estiver antes do ponto. if (objType == "user") then -- Se o que estiver antes do ponto for "user", então: local login = gettok (name, 2, string.byte('.')) -- login recebe tudo que estiver depois do ponto. outputChatBox (login, thePlayer) end end else outputChatBox ("Erro de sintaxe. Use /listgroup <ACLGroup>", thePlayer, 255, 0, 0) end end)
    1 point
  7. الأفضل ماتسوي لوب بعد ما تجيب النتيجة من القاعدة على طول شوف النتيجة وسوي تحقق انها جدول أول type (value) == "table" وفيه نصيحة كويسة لو تسويها بيكون افضل لك بدال ماتسوي قاعدة مختلفة لكل مود يمديك تسوي مود واحد فيه قاعدة البيانات وملف واحد ويمديك تضيف فيه اكثر من جدول بنفس القاعدة وتسوي لها اكسبورت بدال ماتسوي 3 اتصالات بكل مود mysql كذا بتقلل الرام وتقدر بكل بسهولة لو قررت مستقبلًا تحوله
    1 point
  8. estimatedCosts isn't defined, so it's nil. (nothing)
    0 points
×
×
  • Create New...