Hallo
kann mir wer bei den gates helfen?
ich habe jetzt hier ein gate das will ich zum fraktionsgate machen. Wie mache ich das?
#include <a_samp>
#pragma tabsize 0
#define COLOR_YELLOW 0xFFFF00AA
#define FILTERSCRIPT
#if defined FILTERSCRIPT
new admin4_gate;
public OnFilterScriptInit()
{
admin4_gate = CreateObject(3280, 755.44641113281, -1383.70703125, 12.688069343567, 0.0000, 0.0000, 0.0000);
print("\n--------------------------------------");
print(" Blank Filterscript by your name here");
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
#else
#endif
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(cmdtext, "/xxx", true) == 0){
MoveObject(admin4_gate,755.44641113281, -1383.70703125, 24.68807220459,4);
SendClientMessage(playerid, COLOR_YELLOW,"ACHTUNG: Admin Gelände!");
return 1;
}
if (strcmp(cmdtext, "/xxx", true) == 0){
MoveObject(admin4_gate,755.44641113281, -1383.70703125, 12.688069343567,4);
SendClientMessage(playerid, COLOR_YELLOW,"ACHTUNG: Admin Gelände!");
return 1;
}
return 0;
}
und wie mache ich das das tor nur admins öffnen können?