Jump to content

Laxante101

Members
  • Posts

    103
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Laxante101

  1. você pode tentar usar setBrowserRenderingPaused(theBrowser, true) para pausar a renderização do navegador antes de destruí-lo. Isso pode ajudar a resolver o problema. Edit: I didn't see that they had mentioned that,
  2. Na verdade existe maneiras variadas de fazer isso, vai da pessoa pra escolher qual é melhor pra seu código. Muito legal esse seu exemplo
  3. I'm glad your problem was solved
  4. Everything in its own time, after your projects you know you continue.
  5. Se você tem alguma dúvida nessa area da lua pode me mandar mensagem sem exitar, tentarei te ajudar da melhor forma
  6. I think you shouldn't continue with this snake game project, as it's a very futile thing unless you really want to do and improve it.
  7. It looks like the Brazilian government blocked X/Twitter
  8. This will be quite revolutionary and different, if you can make it look LOL it will be impressive
  9. Use a função SetTime para congelar o tempo, há um exemplo na wiki para fazer isso, mas ele tem alguns erros de sintaxe. Use este exemplo aqui: function freezeTime() setTime(0, 0) end setTimer(freezeTime, 1000, 0) Este código irá chamar a função setTime a cada 1 segundo. Dando o efeito que ele está congelado.
  10. O vídeo que você assistiu sobre persistência na programação, especialmente em Lua ou em qualquer linguagem, aborda um conceito fundamental para o desenvolvimento de habilidades em programação. A persistência é a capacidade de continuar tentando, mesmo diante de desafios e frustrações. No vídeo, provavelmente foram apresentados exemplos práticos que mostram como enfrentar erros e dificuldades de forma construtiva. A programação, por natureza, envolve resolução de problemas, e a persistência é essencial para superá-los. Ao lidar com bugs ou conceitos complexos, é importante manter a calma, buscar soluções e aprender com os erros. Além disso, o vídeo pode ter enfatizado a importância de praticar regularmente, estabelecer metas de aprendizado e não ter medo de pedir ajuda, não fazer modificações medíocres como forma de treinamento. Lembre-se que tem o fórum para você pedir ajuda, sempre terá alguém que terá prazer em ajudar você.
  11. Try deleting your MTA folder, saving your settings that are in coreconfing.xml, after installing the complete MTA ppr, install it again, this will make the MTA go back to the way it was supposed to be.
  12. Hello The error "Unable to convert: undefined to type: String" in 3ds Max indicates that the plugin script "GTA_COLplugin.ms" is encountering a problem at line 81. This is like a debug, you just need to resolve the error on line 81
  13. Hello Alfredo649 I thought it was that your pc was very weak but it has a 4070 ti and 32GB of ram , try updating your video card drivers, old versions of the drivers can sometimes cause incompatibility, although your DirectX is up to date, the absence of it D3D9 .dll can cause problems, I looked at its diagnostics and certificate installation errors (err:2148081668) could indicate a problem with secure connections. Make sure your system is fully up to date and consider reinstalling any affected software. If none of these solutions have solved the problem, please tell us all the details of what is happening here.
  14. My god man, was that just now? Q
  15. Very nice, this must be really cool to play
  16. Todos os métodos de tratamento de eventos onResourceStart onPlayerJoin onPlayerLeave onPlayerDeath onVehicleSpawn onVehicleDestroy Sincronização de dados setElementData obterElementData Você pode usar tabelas globais para armazenar variáveis e acessá-las em diferentes arquivos de script. Você também pode criar módulos que contenham funções e variáveis que podem ser acessadas em diferentes arquivos de script.
  17. O que você está tentando fazer provavelmente não vai funcionar. Você tem uma concessionária vazada que tem o nome de outra cidade em várias partes do painel que usa carros do GTA 5, e você quer integrar esse script com um script de upgrade para carros do GTA SA. O script de ajuste é construído usando o próprio sistema de atualização MTA/GTA:SA, e você tem uma concessionária que tem skins do GTA 5. Não faz sentido tentar usar os dois no mesmo servidor, a menos que você troque essa concessionária e construa uma do zero, ou obtenha uma que use os próprios carros de estoque da MTA ou modifique esse painel, ou construa os modelos de carro do zero e adicione um sistema de atualização com carros do GTA 5. Este não é um projeto fácil.
  18. The shared side is a way to share variables and functions between the client and server in the MTA. However, it is important to understand how it works to avoid errors and unexpected behavior. When you define a variable on the shared side, it is shared between the client and the server. However, the variable is not automatically synchronized between the two. This means that if you change the variable on the server, it will not automatically be updated on the client, and vice versa. To synchronize shared variables, you need to use a synchronization mechanism, such as an event handler or a command. This is necessary because the MTA does not automatically synchronize shared variables between the client and the server. In your example, you defined the SCRIPT_activity and SCRIPT_text variables on the shared side and tried to access them on the server without using an event handler or command. This did not work because the variables were not synchronized between the client and the server. When you used an event handler (onResourceStart) or a command (writeText), you synchronized the shared variables between the client and the server. This allowed the variables to be accessed correctly on the server.
  19. If you find the folder, just apply what I said. However, I'm also looking for it, it would be more logical for this one, but I haven't found anything related to ASI yet.
  20. Blocking ASI Loaders is implemented in the MTA source code file for security and stability reasons. core/ScriptCore.cpp. You will need to locate the bool function CScriptCore::IsASIAllowed(const char* szFileName) and modify its behavior, To disable blocking of ASI Loaders, you can simply return true whenever the IsASIAllowed function is called. This will allow all ASI files to be loaded without restrictions.If you want to create a whitelist for some ASI files, you can modify the IsASIAllowed function to check if the ASI file is whitelisted before allowing it to be loaded.
  21. Add more debug logging to your Lua and JavaScript code to trace the data flow and identify where the problem occurs, and also Check that the "updateLeaderboard" event is being fired correctly and that "leaderboardData" is being sent to the client.
  22. I still don't understand what you want help with
  23. Olá pequeno gafanhoto! voce poderia me enviar seu a pasta do seu codigo?, posso te ajudar com isso prefiro consertar e enviar do que tentar explicar
×
×
  • Create New...