Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/07/21 in all areas

  1. This is the official thread that contains MTA player count stats. As you may know, MTA is still one of the most popular multiplayer games worldwide (it should blend in to the top 10/top 15 of most lists found on the internet.. but old games simply don't get media attention or publicity).. so here are some interesting figures. Updated: 30/10/2020 08:45am Statistics (click to enlarge) Highest: 52,098 concurrent players - 2nd April, 2020 Players online at the same time (always close to 30,000 concurrent players): Unique players per day: Unique players per week: Unique players per month:
    1 point
  2. @iDannzobrigado funcionou perfeitamente,
    1 point
  3. A blindagem do veículo faça server-side. A imortalidade do jogador dentro do veículo faça client-side. -- SERVER-SIDE function blindar(thePlayer) if (getElementModel(source) == 601) then -- (source = veículo que o jogador entrou) Se o modelo do veículo é o 601 (S.W.A.T.) então: if (isVehicleDamageProof(source)) then -- Se o veículo que o jogador entrou já estiver blindado, então: outputChatBox ("Este veículo já está blindado!", thePlayer, 255, 255, 255) else -- Se o veículo que o jogador entrou não está blindado, então: setVehicleDamageProof (source, true) -- Blinda o veículo. outputChatBox ("Este veículo ficou blindado.", thePlayer, 255, 255, 255) end end end addEventHandler("onVehicleEnter", root, blindar) -- Ativa a função blindar quando alguém entrar em algum veículo. -- CLIENT-SIDE function danoBlindado() local blindadocar = getPedOccupiedVehicle (localPlayer) -- blindadocar recebe o veículo que o jogador está dentro. (será false caso o jogador esteja a pé) if (blindadocar) then -- Se o jogador está em um veículo, então: (blindadocar não é false) if (getElementModel(blindadocar) == 601) then -- Se o modelo do veículo que o jogador está é o 601 (S.W.A.T.) então: cancelEvent() -- Cancela o dano no jogador. end end end addEventHandler("onClientPlayerDamage", localPlayer, danoBlindado) -- Ativa sempre que o localPlayer tomar dano.
    1 point
  4. And what doesn't work exactly? I do not see any issues to be honest.
    1 point
  5. What is a Helper? Helpers are regular members of the Community who dedicate some of their time to help others. They are recognized by MTA for standing out as friendly and helpful support for scripting, technical and other topics. Helpers serve as role models for the Community and are easily approachable for general advice, problem solving or pointing to the right direction. Helpers can move threads into the correct sections, but cannot assist with moderation, unless they are also a Moderator. They can be identified by their unique rank and colored name. How can I become a Helper? Helpers are recruited through invitation only. There is no way to apply for this role, however we are on constant lookout for, and pick members who provide solid, helpful advice over a longer period of time. To make communication easier between MTA Staff and Helpers, they have their own private channels to liaise and discuss general Forum and Discord issues. It is required to have a Forum account in order to become a Helper, but there are no activity requirements. List of Helpers Tekken iDannz Cuervo_fi Paweł The_GTA Reyomin Vampire Abasalt_Yar
    1 point
  6. Tente incluir uma screenshot da tela de crash, isso pode ajudar a identificar
    1 point
×
×
  • Create New...