.col custom object

Started by Kewun, Aug 15, 2016, 09:45 AM

Previous topic - Next topic

Kewun

I have a custom object with only .dff and .txd

i dont have any .col file, is it really required? without .col, i cant join server. i get kicked for invalid defintion in objects.xml

<?xml version="1.0" encoding="ASCII"?>
<objectlist>
   <object id="0">
      <flags value="0" />
      <collision path="" />
      <texture path="lombada.txd" />
      <model path="lombada.dff" distance="350" />
   </object>
</objectlist>

Xmair

#1
You cannot make the path "". You should try:
<collision type="autogenerate"/>
This will autogenerate the collisions, untested tho.

Credits to Boystang!

VU Full Member | VCDC 6 Coordinator & Scripter | EG A/D Contributor | Developer of VCCNR | Developer of KTB | Ex-Scripter of EAD

Kewun

so what i can make the path? i  tried removing the collision path line, still getting kicked

Kewun

even "autogenerate" wont work

Diego^

I use this:

<?xml version="1.0" encoding="ASCII"?>
<objectlist>
<object id="0">
<flags value="0" />
<texture path="lombada.txd" />
<collision type="autogenerate" />
<model path="lombada.dff" distance="1000" />
</object>
</objectlist>

And it works on my server.

Off: Congratulations for stealing this custom object ;D.
BRL's Developer.

Sebastian

Use "none" instead of "autogenerate" to stop the server requiring the colision file.

MatheuS

Quote from: Diego^ on Aug 15, 2016, 10:37 AMI use this:

<?xml version="1.0" encoding="ASCII"?>
<objectlist>
<object id="0">
<flags value="0" />
<texture path="lombada.txd" />
<collision type="autogenerate" />
<model path="lombada.dff" distance="1000" />
</object>
</objectlist>

And it works on my server.

Off: Congratulations for stealing this custom object ;D.

I found strange, because it was I who created.
if( !sucess ) tryAgain();
Thanks to the VCMP community. It was the happiest period of my life.

Kewun


Kewun


Kewun

and i didnt steal it, i simply took it. Learn the diffrence between stealing and taking something which is released. @Diego^

MatheuS

Quote from: Kewun on Aug 15, 2016, 02:44 PMand i didnt steal it, i simply took it. Learn the diffrence between stealing and taking something which is released. @Diego^

I created and not posted anything released on forum, was created specifically for Diego server. ???
if( !sucess ) tryAgain();
Thanks to the VCMP community. It was the happiest period of my life.

Kewun


Kewun