08/06/2023 21:38
Consegui dessa forma, ainda não entendo 100% tipo uns 80% sim, mas consegui assim revisando vídeo de variáveis, onde apresenta arrays.
Código:
new NPCS[999]; //Array global no topo
Código:
public OnGameModeInit()
{
NPCS[1] = ConnectNPC("mot1", "mot1");
NPCS[2] = ConnectNPC("ped001", "ped001");
v = AddStaticVehicle(445, 2253.3933, -83.8092, 26.5205, 357.8683, 60, 0);
return 1;
}
Código:
public OnPlayerSpawn(playerid)
{
SetPlayerPos(playerid, Float:2269.9187, Float:-78.2428, Float:26.5715);
NPCS[1] = SetPlayerSkin(NPCS[0], 7);
NPCS[2] = SetPlayerSkin(NPCS[1], 10);
return 1;
}