19.12.2010, 17:58
(
Последний раз редактировалось Jack-; 19.12.2010 в 18:06.
Причина: updated it
)
Can someone help me by telling me whats wrong with this
971,2908.698974,2088.360351,5.949101,0.000000,0.00 0000,0.201737, this is the gate open
971,2908.698974,2088.360351,12.570116,0.000000,0.0 00000,0.201737, this is the gate closed
971,2908.698974,2088.360351,5.949101,0.000000,0.00 0000,0.201737, this is the gate open
971,2908.698974,2088.360351,12.570116,0.000000,0.0 00000,0.201737, this is the gate closed
Код:
#include <a_samp> new vgate; public OnFilterScriptInit() { print("\n--------------------------------------"); print(" Blank Filterscript by your name here"); print("--------------------------------------\n"); vgate = CreateObject(971,2908.698974,2088.360351,12.570116,0.000000,0.000000,0.201737);//closed return 1; } if(strcmp(cmdtext,"/ovgate", true) == 0) { MoveObject(vgate, 2908.698974,2088.360351,5.949101, 1.500000); return 1; } } } if(strcmp(cmdtext,"/cvgate", true) == 0) { MoveObject(vgate, 2908.698974,2088.360351,12.570116, 1.500000); return 1; } } }