Simple teleport command error
#1

  • D:\Games\GTA San Andreas\samp03bsvr_RC4-1_win32\gamemodes\ViltRP.pwn(658 ) : error 004: function "PlayerToPoint" is not implemented
    D:\Games\GTA San Andreas\samp03bsvr_RC4-1_win32\gamemodes\ViltRP.pwn(668 ) : error 004: function "PlayerToPoint" is not implemented
    Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase

2 Errors.

pawn Код:
#include <a_samp>

forward PlayerToPoint(Float:radi, playerid, Float:x, Float:y, Float:z);
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/help", cmdtext, true, 10) == 0)
    {
        SendClientMessage(playerid,0x00BCFFFF,"_________[Help Command Text]_________");
        SendClientMessage(playerid,0x00BCFFFF,"|_____________Line1_________________|");
        SendClientMessage(playerid,0x00BCFFFF,"|_____________Line2_________________|");
        SendClientMessage(playerid,0x00BCFFFF,"|_____________Line3_________________|");
        SendClientMessage(playerid,0x00BCFFFF,"|_____________Line4_________________|");
        SendClientMessage(playerid,0x00BCFFFF,"|_____________Line5_________________|");

        return 1;
    }
    if(strcmp(cmdtext, "/enter", true, 10)==0)
    {
        if(PlayerToPoint(3.0,playerid,413,1700,-2249.9922))
        {
            SendClientMessage(playerid,0x00ABFFFF,"Welcome to the LAPD");
            SetPlayerInterior(playerid, 14);
            SetPlayerPos(playerid,1550.9105,-1683.8849,1723.1050);
            return 1;
        }
    }
    if(strcmp(cmdtext, "/exit", true, 10)==0)
    {
        if(PlayerToPoint(3.0,playerid,1550.9105,-1683.8849,1723.1050))
        {
            SetPlayerPos(playerid,413,1700,-2249.9922);
            return 1;
        }
    }
    return 0;
}
Why do I get that problem?
Reply


Messages In This Thread
Simple teleport command error - by Vilt™ - 25.08.2010, 13:37
Re: Simple teleport command error - by speediekiller2 - 25.08.2010, 13:41
Re: Simple teleport command error - by Mystique - 25.08.2010, 13:43
Re: Simple teleport command error - by Jeffry - 25.08.2010, 13:44
Re: Simple teleport command error - by Vilt™ - 25.08.2010, 14:15
Re: Simple teleport command error - by Jeffry - 25.08.2010, 14:17
Re: Simple teleport command error - by Vilt™ - 25.08.2010, 14:20
Re: Simple teleport command error - by Jeffry - 25.08.2010, 14:47
Re: Simple teleport command error - by Mr.Obscure - 25.08.2010, 14:49
Re: Simple teleport command error - by WillyP - 25.08.2010, 14:53

Forum Jump:


Users browsing this thread: 5 Guest(s)