16.02.2018, 05:14
Quote:
I know how to use it.
I dont have more than limit objects and i have only 1 filterscript. I need CreateObject for objects where can be spawned vehicles, for another objects i'm using streamer (CreateDynamicObject) |
Код:
#define FILTERSCRIPT #include <a_samp> public OnFilterScriptInit() { print("\n--------------------------------------"); print("Example Script"); print("--------------------------------------\n"); CreateObject(-1005, 1796.89, -1548.20, 5687.70, 0.00, 0.00, 0.00); //Example Coords and custom model ID return 1; } public OnFilterScriptExit() { return 1; }