1 Player atravessa player 20/10/2012, 19:52
Warrior
Ajudante
Oque faz?:Com esse sistema o player pode atravessar player por que tipo e para evitar transtornos como alguém trancar a posta não deixando o player passar por um lugar entende fazendo isso você vai evitar esses "transtornos"
bom e simples e fácil ..
Abra o Client~Side e na modGameLogic procure por:
e mude para:
Créditos:
Thales12 por fazer o tutorial.
E a min por trazer aqui pra vocês
bom e simples e fácil ..
Abra o Client~Side e na modGameLogic procure por:
- Código:
' Check to see if a player is already on that tile
For i = 1 To Player_HighIndex
if IsPlaying(i) And GetPlayerMap(i) = GetPlayerMap(MyIndex) Then
If GetPlayerX(i) = x Then
If GetPlayerY(i) = y Then
CheckDirection = True
Exit Function
End If
End If
End If
Next i
e mude para:
- Código:
' Check to see if a player is already on that tile
' For i = 1 To Player_HighIndex
'if IsPlaying(i) And GetPlayerMap(i) = GetPlayerMap(MyIndex) Then
' If GetPlayerX(i) = x Then
' If GetPlayerY(i) = y Then
' CheckDirection = True
' Exit Function
' End If
' End If
' End If
' Next i
Créditos:
Thales12 por fazer o tutorial.
E a min por trazer aqui pra vocês