Hey Leute,
Ich komme einfach nicht auf den einen Error bei meinen RandomSpawns:
C:\Users\Vitalij\Desktop\Games\GTA-SA\gamemodes\CW.pwn(1461) : warning 213: tag mismatch
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Warning.
Unter den Includes
new Float:CopSpawns[][4] =
{
{1550.5629,-1683.9796,1723.1050,1.0},//1
{1550.5629,-1683.9796,1723.1050,2.0}//2
};
OnPlayerSpawn
if(gTeam[playerid] == TEAM_SAPD)
{
new rand = random(sizeof(CopSpawns));
SetPlayerPos(playerid, CopSpawns[rand][0], CopSpawns[rand][1],CopSpawns[rand][2]);
SetPlayerVirtualWorld(playerid, CopSpawns[rand][3]);//Error
}
Hoffe ihr könnt helfen
lg