05.04.2013, 20:03
You don't need a player ID parameter for that label. So, instead of this:
Do this:
pawn Код:
for(new i=0;i<MAX_PLAYERS;i++)
{
evac[i] = Create3DTextLabel("Evacuation Point", 0xCCFF99FF,Map[CPx],Map[CPy],Map[CPz], 40.0, 0, 0);
}
pawn Код:
new Text3D:evac; // top of script
evac = Create3DTextLabel("Evacuation Point", 0xCCFF99FF,Map[CPx],Map[CPy],Map[CPz], 40.0, 0, 0);