Posts: 983
Threads: 98
Joined: Feb 2012
Reputation:
0
Maybe your gamemode reached the maximum of objects that are created using (CreateObject) .
The maximum amount of normal objects are (1000), in order to have more, use streamer (CreateDynamicObject) as well.
My suggestion is to convert all your CreateObject objects to CreateDynamicObject. and I think it will work fine for you.
Posts: 385
Threads: 10
Joined: Dec 2013
Reputation:
0
erm, bump?
I have some createobject code in a script used for AttachObjectToObject, I was planning to move em to dynamic objects later, although the amount of createobjects I have is less than 100, so mapping shouldn't be a problem right?
Posts: 983
Threads: 98
Joined: Feb 2012
Reputation:
0
Wait wait, you're using (EditObject) for a dynamic object... you cannot do that!
Use EditDynamicObject.
Posts: 385
Threads: 10
Joined: Dec 2013
Reputation:
0
nono, lol ok let me explain it.
The objecteditor, uses CreateObject for creating objects.
when I /exportobjects them, I automatically convert them to CreateDynamicObject, though while mapping, the ones that's loaded with the editor are CreateObject, therefore it uses EditObject.
my problem is that after approx 20 seconds the object vanishes, the editing arrows aswell, though I still have the object in the editor, it looks like it deletes, but is still there, it's very weird. :/
the problem occured outta nowhere, I didn't make any changes to the editor script which could possibly cause this issue
Posts: 447
Threads: 105
Joined: Feb 2013
Try to reconvert it , and recompile from pawno.
EDIT : I recommend to use Streamer.
Posts: 385
Threads: 10
Joined: Dec 2013
Reputation:
0
you mean edit the editor and make it create Dynamic objects when mapping? instead of createobject?
well yea I can do that but I don't see how that's going to fix it as the CreateObjects worked fine before lol.
ohwell if there's really no other solution then I'll do that.
Posts: 624
Threads: 110
Joined: Apr 2012
Reputation:
0
Maybe you have reached the max of your objects limit, Streamer provides you lot more objects to created as it max
is way too high than normal one's. So i suggest you to use streamer plugin and give it a try.