#include <a_samp>
#pragma tabsize 0#define COLOR_GREEN 0x33AA33AA#define FILTERSCRIPT#if defined FILTERSCRIPTnew y_gate;
public OnFilterScriptInit(){y_gate = CreateObject(980, 1442.217041, -642.036987, 97.484535, 0, 0, -56.2500170097); // object (116)
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, "/desty", true) == 0){ MoveObject(y_gate,1450.516968,-646.725708,97.301,346); SendClientMessage(playerid, COLOR_GREEN,"AUTOS"); return 1; } if (strcmp(cmdtext, "/desty2", true) == 0){ MoveObject(y_gate,1442.217041,-642.036987,97.4845,35); SendClientMessage(playerid, COLOR_GREEN,"AUTOS!"); return 1; } return 0; }