DevClub


Você não está conectado. Conecte-se ou registre-se

Photo

Correr Automaticamente por CheckBox

Ver o tópico anterior Ver o tópico seguinte Ir para baixo  Mensagem [Página 1 de 1]

Leonardo

avatar
Novato
abra o Client~Side vá na frmMain crie 1 CheckBox no lugar q vc achar melhor com:

Name: chkRun
Caption: Correr Automaticamente
na modGameLogic procure por:

CÓDIGO:
Código:
' Check if player has the shift key down for running
            If ShiftDown Then
                Player(MyIndex).Moving = MOVING_RUNNING
            Else
                Player(MyIndex).Moving = MOVING_WALKING
            End If

E mude para:
CÓDIGO:
Código:

 ' Check if player has the shift key down for running
            If ShiftDown Then
                Player(MyIndex).Moving = MOVING_WALKING
            Else
                Player(MyIndex).Moving = MOVING_RUNNING
                    If frmMain.chkRun.Value = YES Then
                        Player(MyIndex).Moving = MOVING_WALKING
                    End If
            End If

Math320

avatar
Novato
Sistema Simples e ajudando os preguisosos que nem eu hasuhasuh +1

Att. Math320

GustavoNunes

GustavoNunes
Novato
O código correto seria este:
Código:
' Check if player has the shift key down for running
            If ShiftDown Then
                Player(MyIndex).Moving = MOVING_WALKING
            Else
                Player(MyIndex).Moving = MOVING_RUNNING
                If frmMain.chkRun.Value = YES Then
                        Player(MyIndex).Moving = MOVING_RUNNING
                    End If
            End If
Pois ao marcar a caixa ele só ia andar automaticamente.

Conteúdo patrocinado


Ver o tópico anterior Ver o tópico seguinte Ir para o topo  Mensagem [Página 1 de 1]

Tópicos semelhantes

-

» Pegando item automaticamente

Permissões neste sub-fórum
Não podes responder a tópicos