Jump to content

'~DaLesTe^'

Members
  • Posts

    91
  • Joined

  • Last visited

Details

  • Gang
    Familia Neurotica

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

'~DaLesTe^''s Achievements

Punk-@ss B*tch

Punk-@ss B*tch (12/54)

0

Reputation

  1. Mandei solicitação no discord. Estou disposto a pagar alguém para programar.

  2. Boa noite, Estou procurando alguém para pagar o serviço de criação de códigos lua para MTA:SA, estou disposto a pagar pelos resources criados. Procuro pessoa séria e que realmente entenda a programação, não sei se posso publicar este tópico aqui, me avise caso não for permitido. Obrigado.
  3. Venho através deste tópico alertar e reportar um famoso site de MODS/SCRIPTS para MTA:SA na qual está injetando vírus através do navegador. Segue o link do site>> www.mtabrasil.com.br Segue um print para evidência https://prnt.sc/0XMUpJNUf9LY Obrigado pela atenção.
  4. @Travis Ótima ideia, porém vai dar muito trabalho em. Se tudo sair como planejado vai ser muito legal....
  5. code dano = {} local player = source function bloquear(source) dano[player] = 1 setTimer(tirar,8000,1,source) end addEventHandler ( "onPlayerDamage", root, bloquear ) function tirar(source) dano[player] = 0 end function clientPickupHit(thePlayer,pickup, matchingDimension) local pickupType = getPickupType( source ) if (dano[player] == 1) then if (pickupType == 0) or (pickupType == 1) then outputChatBox("Não é possivel pegar pickup em combate!",player, 255, 0, 0) cancelEvent() end end end addEventHandler("onPickupHit", root, clientPickupHit) error: table index is nil thx for help, i finished.
  6. this script should work: when the player receives damage, stay blocked from picking up pickups for 8 seconds, after that, it is possible. however, after the player takes damage and receives "dano = 1", it is still possible to get the pickup as if the cancelEvent () was not there. it only works on the severside, changing events to the server, but it block all players pickups... what's wrong?
  7. Hello, sorry for bothering you again. I want to change this code so that I call the ID instead of its name, note that in line 1 another code is called "game_id2" in which he define the ID, I want to replace the / checkbinds playername with / checkbinds playerID example: /checkbinds 2 Code: I know it's not allowed to ask to edit scripts, if you can't, guide me on how to do this. Thanks.
  8. not work Serverside: Clientside: the player still takes damage after teleporting
  9. Thanks very much. When the player receives damage wait 5 seconds to pickup health / armor how i put it ? if (getPickupType(pickup) == 1) then -- If it's an armour pickup cancelEvent() -- Cancel the event outputChatBox("Wait 5 seconds for pickups.", source, 255, 0, 0)
  10. bad argument #1 to 'pairs' (table expected, got nil)
  11. Thanks bro, but i have another error. Code:
  12. Okay, but it's spamming the messages: outputChatBox ( "Aguarde ".. (CommandSpam [ source ] and math.floor ( getTimerDetails ( CommandSpam [ source ] ) / 1000 ) or 5 ) .." segundos para se teleportar novamente!", source) and outputuhatBox ( "it is not possibl e to teleport in c omb at" , source , 255 , 0 , 0 , true ) ... on all kinds of commands I type, not just teleports.
  13. How to put "it is not possible to teleport in combat" while the player tries to teleport?
×
×
  • Create New...