11.05.2015, 04:11
Serй breve, tengo una barra que abre y sirve bien pero la animaciуn de movimiento no sale, a lo que me refiero es que cuando abre se va directo hacia donde deberнa abrirse pero muy rбpido.. no se abre lentamente como los otros objetos.
A continuaciуn les dejo el cуdigo:
Espero y me puedan decir cual es el error, ya intente de todo asta cambiar el 3.0 a diferentes valores y nada :/ gracias de antemano.
A continuaciуn les dejo el cуdigo:
pawn Код:
new BarrierLSPD;
public OnGameModeInit()
{
BarrierLSPD = CreateObject(968, 1544.71228, -1630.80835, 13.16060, 0.00000, -90.00000, -90.00000);
return 1;
}
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
if((newkeys & KEY_CROUCH) && !(oldkeys & KEY_CROUCH))
{
if(Informacion[playerid][Faccion] == 1)
{
if(IsPlayerInRangeOfPoint(playerid, 10.0, 1544.70496, -1630.79773, 12.96850))
{
MoveObject(BarrierLSPD, 1544.71228, -1630.80835, 13.16060, 3.0, 0.00000, 0.00000, -90.00000);
SetTimerEx("CloseBarrier", 6000, false, "i", playerid);
}
}
}
return 1;
}
public CloseBarrier(playerid)
{
MoveObject(BarrierLSPD, 1544.71228, -1630.80835, 13.16060, 3.0, 0.00000, -90.00000, -90.00000);
return 1;
}