Hallo ,also ich hab ne farage ich mochte 1 gate das aus 2 torn besteht mit 1nem fs und mit einem befehl öffenen das eine tor hab ich aber ka wie ich das in dem fs rein tu also wo ich dans rein tun sollk?Pls helft mir #include <a_samp>
#pragma tabsize 0
#define COLOR_YELLOW 0xFFFF00AA
#define FILTERSCRIPT
#if defined FILTERSCRIPT
new y_gate;
public OnFilterScriptInit()
{
y_gate = CreateObject(986, 1548.804443, -1632.485352, 14.093480, 0.0000, 0.0000, 90.0000);
print("\n--------------------------------------");
print(" Blank Filterscript by W4nnA");
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
#else
#endif
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(cmdtext, "/pdauf", true) == 0){
MoveObject(y_gate,1548.804443, -1634.387207, 14.093480,4);
SendClientMessage(playerid, COLOR_YELLOW,"ACHTUNG: Nur Für Cops!");
return 1;
}
if (strcmp(cmdtext, "/pdzu", true) == 0){
MoveObject(y_gate,1548.804443, -1632.485352, 14.093480,4);
SendClientMessage(playerid, COLOR_YELLOW,"ACHTUNG: Nur Für Cops!");
return 1;
}
return 0;
}