abra o Client~Side vá na frmMain crie 1 CheckBox no lugar q vc achar melhor com:
CÓDIGO:
E mude para:
CÓDIGO:
na modGameLogic procure por:Name: chkRun
Caption: Correr Automaticamente
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