27.12.2014, 08:45
Well, I think you can set a timer at 100 ms wich it's setted to true and will move non-stop. For example under OnGameModeInit() or OnFilterScriptInit():
I don't have '', so replace them with correct symbol.
And then create the public:
MoveObject.
pawn Код:
SetTimer(''Move'', 100, true);
And then create the public:
pawn Код:
forward Move();
public Move()
{
MoveObject(...................);
return 1;
}