Salve galerinha quem escreve aqui é o GuuhDreotti e hoje vou postar para vocês 4 (Quatro) comandos que achei na source do phobos para vocês utilizarem em suas sources.

Comandos e suas funções :

/gvup - Se você digitar esse comando a gravidade da rodada fica zero e todos voam! ;

/gvdown - Se você digitar esse comando a gravidade fica muito alta e você fica pesado de mais! ;

/windleft - Se você digitar esse comando, começa a ventar muito forte para o lado esquerdo! ;

/windright Se você digitar esse comando, começa a ventar muito forte para o lado direito! .

Comando :

Gvup

        elif command == "gvup":
            if self.privilegeLevel==10:
                for playerCode, client in self.room.clients.items():
                    client.sendData("\x05"+"\x16", [0, -10])

Gvdown
        elif command == "gvdown":
            if self.privilegeLevel==10:
                for playerCode, client in self.room.clients.items():
                    client.sendData("\x05"+"\x16", [0, 20])
Windleft
        elif command == "windleft":
            if self.privilegeLevel==10:
                for playerCode, client in self.room.clients.items():
                    client.sendData("\x05"+"\x16", [-100, 10])


Windright
        elif command == "windright":
            if self.privilegeLevel==10:
                for playerCode, client in self.room.clients.items():
                    client.sendData("\x05"+"\x16", [100, 10])



Créditos
Gfdants 
Phobos 
Lyly 
Oly 

CreatedMice