Se puede hacer?
#2

Para hacer la del cielo es bastante fбcil
pawn Код:
// Arriba de todo..
new PlayerTimer[MAX_PLAYERS];

// Comando...
if(strcmp(cmdtext,"/arriba",true) == 0)
{
    if(!PlayerTimer[playerid])
    {
         PlayerTimer[playerid] = SetTimerEx("CameraFromUp",100,true,"d",playerid);
    }
    else
    {
         KillTimer(PlayerTimer[playerid]);
         PlayerTimer[playerid] = 0;
    }
    return 1;
}
// CallBack!
forward CameraFromUp(d);
public CameraFromUp(d)
{
    new Float:pos[3];
    GetPlayerPos(d,pos[0],pos[1],pos[2]);
    SetPlayerCameraPos(d,pos[0],pos[1],pos[2]+5.0);
    SetPlayerCameraLookAt(d,pos[0],pos[1],pos[2]);
}
// OnPlayerDisconnect!
public OnPlayerDisconnect(playerid,reason)
{
    if(PlayerTimer[playerid])
    {
         KillTimer(PlayerTimer[playerid]);
         PlayerTimer[playerid] = 0;
    }
}
Lo hice aquн mismo y por lo tanto no lo compile pero deberнa funcionar bien, si no me avisas por aquн mismo
Reply


Messages In This Thread
Se puede hacer? - by ValenRatti - 20.03.2012, 21:47
Respuesta: Se puede hacer? - by Jovanny - 20.03.2012, 22:06
Respuesta: Se puede hacer? - by ValenRatti - 20.03.2012, 22:45

Forum Jump:


Users browsing this thread: 1 Guest(s)