Jump to content

Clebson

Members
  • Posts

    10
  • Joined

  • Last visited

About Clebson

  • Birthday 23/01/1998

Details

  • Gang
    Brasil
  • Location
    Brasil
  • Occupation
    Chefão
  • Interests
    Script

Recent Profile Visitors

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

Clebson's Achievements

Member

Member (5/54)

0

Reputation

  1. Onde encontro esse resource runcode para colocar no meu servidor?
  2. Alguém me ajuda com essa questão. O Execute Command no meu painel P
  3. Como add um resource na acl admin sem desligar o servidor e sem ser pelo painel P Tem que ser pelo console
  4. Como pegar um link e colocar em um script de config? No meu script ta assim local url = "https://discord.com/api/webhooks/<webhookid>/<webhooksecret>" function msg(mensagem) sendOptions = { queueName = "dcq", connectionAttempts = 10, connectionTimeout = 20000, formFields = { content = ""..mensagem.."", }, } fetchRemote(url, sendOptions, callBack) end function callBack() end local time = getRealTime() local hours = time.hour local minutes = time.minute local seconds = time.second local monthday = time.monthday local month = time.month local year = time.year local formattedTime = string.format('%02d/%02d/%02d - %02d:%02d:%02d', monthday, month + 1, year + 1900, hours, minutes, seconds)
  5. pegarT = createMarker(-2416.79, -613.949, 132.562 -1, "cylinder", 1.1,255,255,255,50) ------------------------------------------ function salariop(player) if isElementWithinMarker(player, pegarT) then if isObjectInACLGroup ( "user." ..getAccountName(getPlayerAccount(player)), aclGetGroup ( Grupo )) then if getElementData(player, "TrabalhoPolicial") then setElementData(player, "TrabalhoPolicial", false) exports.Infobox:addBox(player,"Você saiu de Serviço","info", player, 255, 255, 255, true) setElementModel(player, 1) else setElementData(player, "TrabalhoPolicial", true) exports.Infobox:addBox(player,"Você entrou em Serviço, Bom trabalho","info", player, 255, 255, 255, true) setElementModel(player, 1) end else exports.Infobox:addBox(player,"Você Não Tem Permição","error", player, 255, 255, 255, true) end end end addCommandHandler("trabalhar", salariop) function salario (thePlayer) for i,player in ipairs(getElementsByType("player")) do if ( player ) then if getElementData(player, "TrabalhoPolicial") then local players = getPlayerCount() if players >= PlayersM then givePlayerMoney(player,Dinheiroganho) exports.Infobox:addBox (player, "Você Recebeu Seu Salário pagamento #00ff00R$ "..Dinheiroganho.." #ffffff!", "success" ) else exports.Infobox:addBox(player,"Você não recebeu seu salario por não ter mais de 5 civis na cidade","error", true) end end end end end setTimer(salario,3600000,0) -------------------------------------------- addEventHandler("onMarkerHit", pegarT, function(player) if getElementType(player) == "player" then outputChatBox(" ", player, 255,255,255, true) outputChatBox("#ffff00Digite /trabalhar para Entrar e Sair de Serviço.", player, 255,255,255, true) outputChatBox(" ", player, 255,255,255, true) end end)
  6. How do I make a script to block only for ACL Vip a specific command ex: /vip
  7. Português BR Alguém tem um script que quando da /comando o player entrar em uma ACL e depois da /comando sair da ACL. Mais precisa está em ACL especifica pra poder dá o comando? Inglês Does anyone have a script that when the /command the player enters an ACL and after the /command exits the ACL. More accurate is in specific ACL to be able to give the command?
  8. Como faço um script para bloquear apenas para ACL Vip um comando especifico ex: /vip Alguem me ajuda pfv
×
×
  • Create New...