Kann mir mal Jemdn erklären wie ich Play spawn ändern kann=?
if (PlayerInfo[playerid][pMember] == 1 || PlayerInfo[playerid][pLeader] == 1)//Police Force spawn
{
rand = random(sizeof(gCopPlayerSpawns));
SetPlayerPos(playerid, gCopPlayerSpawns[rand][0], gCopPlayerSpawns[rand][1], gCopPlayerSpawns[rand][2]); // Warp the player
SetPlayerFacingAngle(playerid, 270.0);
GivePlayerWeapon(playerid, 24, 65);
GivePlayerWeapon(playerid, 3, 1);
SetPlayerInterior(playerid,0);
PlayerInfo[playerid][pInt] = 0;
return 1;
}
if (PlayerInfo[playerid][pMember] == 2 || PlayerInfo[playerid][pLeader] == 2)//C.I.A spawn
{
rand = random(sizeof(gCopPlayerSpawns));
SetPlayerPos(playerid, gCopPlayerSpawns[rand][0], gCopPlayerSpawns[rand][1], gCopPlayerSpawns[rand][2]); // Warp the player
GivePlayerWeapon(playerid, 31, 900);
GivePlayerWeapon(playerid, 32, 900);
GivePlayerWeapon(playerid, 34, 750);
PlayerInfo[playerid][pInt] = 0;
return 1;
}
ich moechte das, dass FBI woanders Spawnt. Geht das mit Samp-debug doer wie erkölärt mir das mal Bitte