abra o Client~Side vá na frmMain crie 1 CheckBox no lugar q vc achar melhor com:
na modGameLogic procure por:
Créditos:A mim Thales12 por fazer o sistema e tutorial.
Name: chkRun
Caption: Correr Automaticamente
na modGameLogic procure por:
- 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
- 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
Créditos:A mim Thales12 por fazer o sistema e tutorial.