ayuda urgente con AttachObjectToVehicle
#7

Quote:
Originally Posted by pinpon
Посмотреть сообщение
Intenta poniendo el cтdigo haci:

pawn Код:
for(new i = 0; i <= MAX_PLAYERS; i++)//Significa que podrа ser enviado y utilizado por todos los jugadores.
{
   //funciones
}
ejemplo:

pawn Код:
for(new i = 0; i <= MAX_PLAYERS; i++)
{
new carga1;
carga1 = CreateObject( 1685,0,0,0,0,0,0,80 );
AttachObjectToVehicle( carga1,GetPlayerVehicleID(playerid), 0.000000, 1.300000, 0.400000, 0.000000, 0.000000, 0.000000 );
}
NO

pawn Код:
//ya que antes creamos la variable new carga1[MAX_PLAYERS];
carga1[playerid] = CreateObject( 1685,0,0,0,0,0,0,80 );
AttachObjectToVehicle( carga1[playerid],GetPlayerVehicleID(playerid), 0.000000, 1.300000, 0.400000, 0.000000, 0.000000, 0.000000 );
DestroyObject(carga1[playerid]);
// y si lo usas en una callback sin parametros
for(new x=0;x<MAX_PLAYERS;x++)
    carga1[x] = CreateObject(...)
Etc, con estos ejemplos puedes hacerlo
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)