Quote:
Originally Posted by nutzkung69
pawn Код:
#include <a_samp>
new obj;
// This is a comment // uncomment the line below if you want to write a filterscript //#define FILTERSCRIPT
#if defined FILTERSCRIPT
public OnFilterScriptInit() { obj = CreateObject(3280, 1899.982422, 1401.652588, 8.282812, 0.0000, 0.0000, 0.0000); return 1; } print("\n--------------------------------------"); print(" Blank Filterscript by your name here"); print("--------------------------------------\n"); return 1; }
public OnFilterScriptExit() { return 1; }
#else public OnPlayerCommandText() { new cmdtext[256]; if(strcmp(cmdtext, "/moveobject", true) == 0) { MoveObject(obj, 0, 0, 10, 2.00 ); return 1; } return 0; }
#endif
|
ty so if i do now moveobject it goes up?