Abra o Client Side e na frmMain crie 1 checkbox com:
dps procure na modgameLogic por:
e mude para:
Créditos:
Totalmente ao Thales12 por criar o tutorial - Maker's Brasil
http://www.animecake.net/
Name: chkAtk
Caption: Auto Attack
dps procure na modgameLogic por:
- Código:
If CanMoveNow Then
Call CheckMovement ' Check if player is trying to move
Call CheckAttack ' Check to see if player is trying to attack
End If
e mude para:
- Código:
If CanMoveNow Then
If frmMain.chkAtk.Value = YES Then
ControlDown = True
End If
Call CheckMovement ' Check if player is trying to move
Call CheckAttack ' Check to see if player is trying to attack
End If
Créditos:
Totalmente ao Thales12 por criar o tutorial - Maker's Brasil
http://www.animecake.net/
Última edição por Juton em Qui Jul 28, 2011 9:37 pm, editado 2 vez(es)