Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 16/03/22 in all areas

  1. Greetings, I'm in charge of an organization called core abusers. We made mistakes in time and I am banned from the game from November 17, 2020. We caught the exe and the game vulnerability and broadcast it live on YouTube and as a result I was banned. I've served my sentence and I'm doing it even more, it's been 2 years and it's taken people six months to stop getting used to it and it's been two years for me. If I'm given one last chance, I'm not going to step into any dirty media and I'm not going to get involved in anything. I think these bans are too long and I don't think anyone deserves those periods, it's been 2 years and I really want my ban on gaming lifted. I'm waiting for your answer. -Respectfully Serial 755A03C71B36D219DDFDF0E07DD94534
    1 point
  2. Good evening. I start this thread with the idea of making a list of requirements that a RP server must have to be good. 1. Server - Set the game mode (Roleplay) - Set IC time - Set an automatic restart 2. Account management script - Creation of accounts - Save data and record - Username - Email - Password (DO NOT SAVE UNDER ANY CONCEPT) - Account login - Username - Password 3. Character management script - Character creation - Save data - Name last Name - Age - Nationality - Sex - CREATE DATA - DNI - Initial Money - Initial position - Character Login - Load data 4. Death Management Script - Create death by Headshot - Detect player death - Place dead animation - Set respawn time - Respawn - Confiscate weapons - Charge medical rate 5. Chat Management Script - Create IC chats - t > Text - /shout Text - /whisper Text - /me Text - /ame (Not necessary) - Create OOC chats - /b text - /togb - to turn off the b to the client - /mp Player Text - /togmp - to turn off mp to the client 6. Interior management script - Create public interiors with no useful function. - Police station - Hospital - Bank - Stores - Gas stations 7. Economic management script - Create cashiers - Money deposit function - Withdraw function - Function to give money to another player 8. Vehicle management script - Vehicle unlock function - Vehicle start function
    1 point
  3. vehTimers = {} -- Tabela de timers anexados aos veículos. addEventHandler ("onVehicleExit", root, function (thePed, seat) -- Função ativada quando alguém sair de algum veículo. if (seat == 0) then -- Se quem saiu do veículo era o motorista, então: for i,v in pairs (Carro) do -- Para cada veículo da tabela Carro, faça: if not (isElement(v)) then -- Se um veículo da tabela Carro não existe mais, então limpa ele da tabela. Carro[i] = nil end if (theSource == v) then -- Se o veículo que o jogador saiu é o mesmo que este veículo específico da tabela, então: vehTimers[source] = setTimer (function (theSource) -- Inicia um timer de 10 segundos, vinculado ao veículo da tabela. (theSource = source) vehTimers[theSource] = nil -- Limpa a variável deste timer. if not (isElement(theSource)) then return end -- Se o veículo que o player saiu já não existe mais, então cancela essa função e nada acontece. destroyElement (v) -- Destrói o veículo. Carro[i] = nil -- Limpa ele da tabela Carro. end, 10000, 1, source) -- Passa o source por parâmetro para dentro do setTimer, pois dentro do setTimer o source original não existe. break -- Encerra o looping para não precisar verificar os demais veículos, pois ele já foi encontrado. end end end end) addEventHandler ("onVehicleEnter", root, function (thePed, seat) -- Função ativada quando alguém entrar em algum veículo. if (seat == 0) then if (isTimer(vehTimers[source])) then killTimer (vehTimers[source]) -- Cancela o timer caso alguém entre de motorista no veículo antes do tempo acabar. vehTimers[source] = nil end end end) Obs: Tenha um sistema que impeça que outros players entrem no veículo que não é deles.
    1 point
  4. Stolen resource accusations ARE NOT ALLOWED. Some users are coming into this forum and accusing servers of stealing resources. This obviously causes endless pages of fighting. Guilty or not, they make the accused server look guilty. Beyond the security measures provided by MTA it is your responsibility to secure your resources. Most of the problems arising from your failure to do so, aren't things MTA developers or support staff can arbitrate. If there is a problem with a server somehow abusing the server list (ie cloning another server name), then file a moderation report through https://forum.multitheftauto.com/topic/26205-server-list-spam/ and we will consider that. We will also consider invididual reports about leaked or stolen gamemodes, just don't post it in public and cause drama all over the forums. Join Discord and request to be added to private support — do not send messages to me.
    1 point
×
×
  • Create New...