Hallo ich brauche mal hilfe ich habe ein Zollschranke gebastelt und ein 5 m radius ingebaut aber ich möchte
das sich die schranke nach 5 sec scließen soll wen man /auf eingegeben hat und ab besten noch
wen man den befehl /auf eingiebt das dan den spieler 100$ abgezogen wird.
Danke jetzt schon mal und könnte jemand das bei mr eifügen oder zeigen wo ich es einfügen soll thx
MFG ShowTime
#include <a_samp>
#pragma tabsize 0
#pragma tabsize 0
new Tor;
stock PlayerToPoint(Float:radi, playerid, Float:x, Float:y, Float:z)
{
if(IsPlayerConnected(playerid))
{
new Float:oldposx, Float:oldposy, Float:oldposz;
new Float:tempposx, Float:tempposy, Float:tempposz;
GetPlayerPos(playerid, oldposx, oldposy, oldposz);
tempposx = (oldposx -x);
tempposy = (oldposy -y);
tempposz = (oldposz -z);
if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi)))
{
return 1;
}
}
return 0;
}
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" pdgerage Filterscript by BoNeS");
print("--------------------------------------\n");
Tor= CreateObject(968, 60.202377, -1529.952881, 4.788054, 0.0000, 270.6186, 263.9066);
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[]) {
if (strcmp(cmdtext, "/auf", true)==0)
{
if(PlayerToPoint(5.0, playerid, 64.2256,-1527.3058,4.8064))// zoll eins
{
SetObjectRot(Tor,0.0000,0.0000, 263.9066);
}
return 1;
}
if (strcmp(cmdtext, "/zu", true)==0)
{
if(PlayerToPoint(5.0, playerid, 64.2256,-1527.3058,4.8064)) // zoll eins
{
SetObjectRot(Tor,0.0000,270.6186, 263.9066);
}
return 1;
}
return 0;
}