White141516 Posted June 30, 2020 Share Posted June 30, 2020 Existe algum comando para levantar alguém? tipo um slap só que sem dar danos e essas coisas. Link to comment
ber Posted June 30, 2020 Share Posted June 30, 2020 Não cheguei a testar, mas ta ae: function getPlayerID(id) v = false for i, player in ipairs (getElementsByType("player")) do if getElementData(player, "ID") == id then v = player break end end return v end function levantarP(player, command, id, ...) if hasObjectPermissionTo("player", "command.kick") == false then return end if(id) then local playerID = tonumber(id) if(playerID) then local Player2 = getPlayerID(playerID) if(Player2) then local x, y, z = getElementPosition(Player2) setElementPosition(Player2, x, y, z + 2) outputChatBox("Você levantou o jogador "..Player2, player, 255, 0, 0, true) end end end end addCommandHandler("levantar", levantarP) Só digitar /levantar ID (apenas staffs conseguem usar o comando) Link to comment
White141516 Posted July 4, 2020 Author Share Posted July 4, 2020 On 30/06/2020 at 11:55, ber said: Não cheguei a testar, mas ta ae: function getPlayerID(id) v = false for i, player in ipairs (getElementsByType("player")) do if getElementData(player, "ID") == id then v = player break end end return v end function levantarP(player, command, id, ...) if hasObjectPermissionTo("player", "command.kick") == false then return end if(id) then local playerID = tonumber(id) if(playerID) then local Player2 = getPlayerID(playerID) if(Player2) then local x, y, z = getElementPosition(Player2) setElementPosition(Player2, x, y, z + 2) outputChatBox("Você levantou o jogador "..Player2, player, 255, 0, 0, true) end end end end addCommandHandler("levantar", levantarP) Só digitar /levantar ID (apenas staffs conseguem usar o comando) Obrigado :V Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now