can not spawn in place that has been specified
#1

I am confused, maybe the people here can help me
I've done debugging, code I've loaded correctly
but when I enter the code, my character did not spawn correctly

make my server takes a lot of ram
Код:
enum mapinfos
{
	mapid = 1,
	NamaMap[64],
	HumanX[24],
	HumanY[24],
	HumanZ[24],
	ZombieX[24],
	ZombieY[24],
	ZombieZ[24]
};
new MapInfo[mapinfos];

public OnPlayerSpawn(playerid)
{
	if(GetPlayerTeam(playerid) == ZOMBIE)
    {
    	SetPlayerInterior(playerid, MapInfo[Interior]);
		SetPlayerPos(playerid, MapInfo[HumanX], MapInfo[HumanY], MapInfo[HumanZ]); // tag mismatch 194
    }
    else
    {
	    SetPlayerInterior(playerid, MapInfo[Interior]);
		SetPlayerPos(playerid, MapInfo[ZombieX], MapInfo[ZombieY], MapInfo[ZombieZ]); // tag mismatch 194
    }
	return 1;
}
Reply


Messages In This Thread
can not spawn in place that has been specified - by kloning1 - 19.12.2016, 00:54
Re: can not spawn in place that has been specified - by Hansrutger - 19.12.2016, 02:48
Re: can not spawn in place that has been specified - by Luicy. - 19.12.2016, 08:39
Re: can not spawn in place that has been specified - by kloning1 - 22.12.2016, 23:57

Forum Jump:


Users browsing this thread: 1 Guest(s)