Helló!
Hogyan tudnám megoldani, hogy csak Pisti névre nyíljon a kapu?
Ez már meg van:
#include <a_samp>
forward CheckGate();
new mygate;
public OnFilterScriptInit()
{
SetTimer(\"CheckGate\", 1000, true); // Set a timer of 1000 miliseconds (1 second)
}
public CheckGate()
{
new mygate_status;
for(new i;i<MAX_PLAYERS;i++)
{
if(!IsPlayerConnected(i)) continue;
if(IsPlayerInRangeOfPoint(i,10.0,-1508.00000000,1006.40002441,9.75000000))mygate_status=1;
}
if(mygate_status)MoveObject(mygate, -1508.00000000,1006.40002441,2.59999990,6);
else MoveObject(mygate, -1508.00000000,1006.40002441,9.75000000, 6);
}