Nah átírogattam de nem értem mit akar még mindig
Nem értem mivan azzal a sorral.
PLs nézzétek meg.
#define FILTERSCRIPT
#include <a_samp>
#include <a_objects>
#if defined FILTERSCRIPT
forward GateCheck(playerid);
new kapum;
public OnFilterScriptInit()
{
kapum=CreateObject(976, 2624.2002, 2303.7002, 9.9, 0, 0, 0); //object (kapu) ID és a koordinata
SetTimer(\"GateCheck\",1000,1);
return 1;
}
public GateCheck(playerid)
{
new name[24];
GetPlayerName( playerid, name, sizeof name );
if (strfind(name, \"[PK]\", true) == -1)
{
if(IsPlayerInRangeOfPoint(playerid, 10, 2624.2002, 2303.7002, 9.9)) //object (kapu) koordinata
{
MoveObject(kapum, 2632.8999, 2303.8, 10, 2.00); //nyitott kapu koordinata a 6.00 a sebessége
}
else
{
MoveObject(kapum, 2624.2002, 2303.7002, 9.9, 6.00); //zárt kapu koordinata
}
}
else return;
}
#endif
Itt a hiba:
F:\\Documents and Settings\\Davee\\Dokumentumok\\uwillkapu.pwn(27) : error 017: undefined symbol \"IsPlayerInRangeOfPoint\"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
[gmod]Javítottam a code taget.[/gmod]