Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/04/23 in all areas

  1. -- Server-side addCommandHandler("tpcord", function(thePlayer, cmd, x, y, z) if not x or not y or not z then -- Se alguma coordenada não for declarada junto ao comando, então: outputChatBox("Erro de sintaxe: /tpcord <posX> <posY> <posZ>", thePlayer) return end local veh = getPedOccupiedVehicle(thePlayer) -- veh recebe o veículo que o jogador está. Será false se o jogador não estiver em um veículo. if veh then -- Se o jogador está em um veículo, então: setElementPosition(veh, tonumber(x), tonumber(y), tonumber(z)) -- Teleporta o veículo para essas coordenadas. -- OBS: tonumber converte o texto do comando para número. else -- Se o jogador não está em um veículo, então: setElementPosition(thePlayer, tonumber(x), tonumber(y), tonumber(z), true) -- Teleporta o jogador para essas coordenadas. -- OBS: O true serve para cancelar qualquer animação que o jogador esteja fazendo para evitar bugs. end end) Obs: Não use vírgulas no comando. Cada coordenada é separada por espaço.
    1 point
  2. Speed Effect & Nitro Effect Preview: https://streamable.com/89uc5l
    1 point
  3. local bases = { -- ["comando"] = {x, y, z, r, "nome"}, ["tpbloods"] = {2219.984, -1143.273, 25.797, 353.328, "Bloods"}, ["tpgrove"] = {2463.633, -1659.423, 13.311, 88.373, "Grove"}, ["tpcrips"] = {2183.58, -1761.268, 13.375, 359.602, "Crips"}, ["tpsiliciana"] = {2418.157, -2009.204, 13.396, 90.592, "Siliciana"}, } function teleBases(cmd, thePlayer) if isObjectInACLGroup("user." ..getAccountName(getPlayerAccount(thePlayer)), aclGetGroup("Staff")) then if getElementData(thePlayer, "Expediente-STAFF") == "Sim" then if not Flying[thePlayer] then Flying[thePlayer] = true setElementAlpha(thePlayer, 0) triggerClientEvent(thePlayer, "onClientFlyToggle", thePlayer) end local x, y, z, r, nome = unpack(bases[cmd]) setElementPosition(thePlayer, x, y, z) setElementRotation(thePlayer, 0, 0, r) showInfobox(thePlayer, "Você teleportou para a base "..nome, "success") else atendimento(thePlayer) end end end for cmd,item in pairs(bases) do addCommandHandler(cmd, teleBases) end ---------------------------------------------------------------------------------------------------------------------------- function showInfobox(element, message, tipo) exports["[HYPE]NOTIFY"]:addNotification(element, message, tipo) end atendimento = function (element) return triggerClientEvent(element, "HypeNotify", element, "Você não está em modo atendimento use /pro", "error") end Fiz de cabeça, não testado.
    1 point
  4. Community (download) GitHub
    1 point
×
×
  • Create New...