03.06.2011, 02:16
(
Последний раз редактировалось usrb1n; 03.06.2011 в 06:08.
)
I am trying to make a simple neon scripts, but that's not my problem
I will give you some example.
This code should create the object 969 at that coords, and it works on my local server. But on my public server nothing happens when I load the script.
I will give you some example.
pawn Код:
#define FILTERSCRIPT
#include <a_samp>
new object;
public OnFilterScriptInit()
{
object = CreateObject(969,999.23895264,-645.79333496,120.66536713,0.00000000,1.24694824,23.80175781); //
return 1;
}
public OnFilterScriptExit()
{
DestroyObject(object);
return 1;
}