16.09.2009, 20:31
ok, I solved that problem but now something else..
There is a lot of crash with this streamer i maded, can you something bad in this,
I think the problem is here..?
There is a lot of crash with this streamer i maded, can you something bad in this,
I think the problem is here..?
Код:
public R_CreateStreamedObject(cModel,Float:cX, Float:cY, Float:cZ, Float:crX, Float:crY, Float:crZ)
{
if(ObjeSayisi < MAX_KURULACAKOBJE)
{
Obje[ObjeSayisi][oID] = cModel;
Obje[ObjeSayisi][oX] = cX;
Obje[ObjeSayisi][oY] = cY;
Obje[ObjeSayisi][oZ] = cZ;
Obje[ObjeSayisi][rX] = crX;
Obje[ObjeSayisi][rY] = crY;
Obje[ObjeSayisi][rZ] = crZ;
ObjeSayisi++;
}
else return -1;
return ObjeSayisi-1;
}

