31.07.2009, 15:21
what is wrong whit this?
whats wrong
pawn Код:
#include <a_samp>
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
new obj;
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()
{
if(strcmp(cmdtext, "/moveobject", true) == 0)
{
MoveObject(obj, 0, 0, 10, 2.00 );
return 1;
}
return 0;
}

