gamemode problems
#1

error 017: undefined symbol "GetPointDistanceToPointExMorph"


what to do?
this is the section the error comes up in

PHP код:
public NameTimer()
{
    for(new 
0;MAX_PLAYERS;i++)
     {
         if(
IsPlayerConnected(i))
         {
             for(new 
0;MAX_PLAYERS;q++)
             {
                if(
IsPlayerConnected(q))
                {
                     new 
Float:p1x;
                    new 
Float:p1y;
                    new 
Float:p1z;
                    new 
Float:p2x;
                    new 
Float:p2y;
                    new 
Float:p2z;
                    if(
IsPlayerConnected(i) && IsPlayerConnected(q))
                    {
                        
GetPlayerPos(i,p1x,p1y,p1z);
                        
GetPlayerPos(q,p2x,p2y,p2z);
                        if(
GetPointDistanceToPointExMorph(p1x,p1y,p1z,p2x,p2y,p2z) < pdistance)
                        {
                            if(
PlayerInfo[q][pMaskuse] != 1)
                            {
                                
ShowPlayerNameTagForPlayer(i,q,1);
                            }
                        }
                        else
                        {
                            
ShowPlayerNameTagForPlayer(i,q,0);
                        }
                    }
                }
            }
        }
    }

Reply


Messages In This Thread
gamemode problems - by Tom1412 - 23.01.2011, 18:07
Re: gamemode problems - by Mike Garber - 23.01.2011, 18:23
Re: gamemode problems - by Tom1412 - 23.01.2011, 18:38

Forum Jump:


Users browsing this thread: 1 Guest(s)