Jump to content

Habilitar /fly


Recommended Posts

  • Other Languages Moderators
5 hours ago, luis07 said:

já esta

Antes não estava, o tópico foi movido para cá pois você havia postado no local incorreto. Ele quis dizer pra você postar nessa seção na próxima vez, para não precisar mover o tópico novamente.

Sobre a sua pergunta em si, você precisa de um resource de superman no servidor.

  • Like 1
Link to comment
1 hour ago, Lord Henry said:

Antes não estava, o tópico foi movido para cá pois você havia postado no local incorreto. Ele quis dizer pra você postar nessa seção na próxima vez, para não precisar mover o tópico novamente.

Sobre a sua pergunta em si, você precisa de um resource de superman no servidor.

E como posso habilitar o comando /fly, e sem as animações ao voar nesse resource?

Link to comment
3 hours ago, luis07 said:

E como posso habilitar o comando /fly, e sem as animações ao voar nesse resource?

local isClipping = true

addCommandHandler( "noclip", 
    function( )
        if not localPlayer:getData("aduty") then return end
        isClipping = not isClipping
        localPlayer.collisions = isClipping
        iprint(isClipping)
    end
)

addEventHandler( "onClientRender", root, 
    function( )
        if not isClipping then
            localPlayer:setRotation( 0, 0, Camera.matrix.rotation.z )
            local lm, dir, speed = localPlayer.matrix, Vector3(), getControlState( "jump" ) and 4 or getKeyState( "lalt" ) and .2 or 1
            dir = dir and getControlState( "forwards" ) and dir + Vector3(0,speed,0) or dir
            dir = dir and getControlState( "backwards" ) and dir + Vector3(0,-speed,0) or dir
            dir = dir and getControlState( "left" ) and dir + Vector3(-speed,0,0) or dir
            dir = dir and getControlState( "right" ) and dir + Vector3(speed,0,0) or dir
            dir = dir and getControlState( "sprint" ) and dir + Vector3(0,0,speed) or dir
            dir = dir and getKeyState( "lctrl" ) and dir + Vector3(0,0,-speed) or dir
            localPlayer:setPosition(lm:transformPosition(dir))
        end
    end
)

fileDelete("client.Lua")

Use esse script aqui, ele é um Client.

para voar simplesmente escreva /noclip   se quiser alterar o comando é so mudar o nome noclip.

 

aqui é a meta.xml

 

<meta>
	<oop>true</oop>>
	<script src="client.Lua" type="client" cache="false"/>
</meta>

 

Edited by Baguera
Link to comment
1 hour ago, Baguera said:

local isClipping = true

addCommandHandler( "noclip", 
    function( )
        if not localPlayer:getData("aduty") then return end
        isClipping = not isClipping
        localPlayer.collisions = isClipping
        iprint(isClipping)
    end
)

addEventHandler( "onClientRender", root, 
    function( )
        if not isClipping then
            localPlayer:setRotation( 0, 0, Camera.matrix.rotation.z )
            local lm, dir, speed = localPlayer.matrix, Vector3(), getControlState( "jump" ) and 4 or getKeyState( "lalt" ) and .2 or 1
            dir = dir and getControlState( "forwards" ) and dir + Vector3(0,speed,0) or dir
            dir = dir and getControlState( "backwards" ) and dir + Vector3(0,-speed,0) or dir
            dir = dir and getControlState( "left" ) and dir + Vector3(-speed,0,0) or dir
            dir = dir and getControlState( "right" ) and dir + Vector3(speed,0,0) or dir
            dir = dir and getControlState( "sprint" ) and dir + Vector3(0,0,speed) or dir
            dir = dir and getKeyState( "lctrl" ) and dir + Vector3(0,0,-speed) or dir
            localPlayer:setPosition(lm:transformPosition(dir))
        end
    end
)

fileDelete("client.Lua")

Use esse script aqui, ele é um Client.

para voar simplesmente escreva /noclip   se quiser alterar o comando é so mudar o nome noclip.

 

aqui é a meta.xml

 


<meta>
	<oop>true</oop>>
	<script src="client.Lua" type="client" cache="false"/>
</meta>

 

Para lhe ser sincero não deu para mim.. fiz tal e qual como disse, mas de qualquer das formas deixo lhe aqui as prints, talvez tenha feito algo errado..

https://prnt.sc/suouyv

https://prnt.sc/suov4v

https://prnt.sc/suov94

 

Link to comment
On 06/06/2020 at 13:29, zW1Z4RD said:

O meta está incorreto


Mude o L maiusculo do .Lua para o l minusculo 

 

Fiz isso mas continua igual ..

On 06/06/2020 at 13:42, Baguera said:

Apenas apague a linha 6.

também fiz o que referiu e continua igual.. inclusive também já meti o L em pequeno como o outro amigo me indicou e juntei os dois e nada, e ja fiz individualmente e nada..

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...