Vice City: Multiplayer

VC:MP Discussion => General Discussion => Topic started by: Kewun on Aug 15, 2016, 09:45 AM

Title: .col custom object
Post by: Kewun on Aug 15, 2016, 09:45 AM
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>
Title: Re: .col custom object
Post by: Xmair on Aug 15, 2016, 09:46 AM
You cannot make the path "". You should try:
<collision type="autogenerate"/>
This will autogenerate the collisions, untested tho.
Title: Re: .col custom object
Post by: Kewun on Aug 15, 2016, 09:48 AM
so what i can make the path? i  tried removing the collision path line, still getting kicked
Title: Re: .col custom object
Post by: Kewun on Aug 15, 2016, 09:52 AM
even "autogenerate" wont work
Title: Re: .col custom object
Post by: Diego^ on Aug 15, 2016, 10:37 AM
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.
Title: Re: .col custom object
Post by: Sebastian on Aug 15, 2016, 11:47 AM
Use "none" instead of "autogenerate" to stop the server requiring the colision file.
Title: Re: .col custom object
Post by: MatheuS on Aug 15, 2016, 01:24 PM
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.
Title: Re: .col custom object
Post by: Kewun on Aug 15, 2016, 02:42 PM
meh
Title: Re: .col custom object
Post by: Kewun on Aug 15, 2016, 02:44 PM
still not working
Title: Re: .col custom object
Post by: Kewun on Aug 15, 2016, 02:44 PM
and i didnt steal it, i simply took it. Learn the diffrence between stealing and taking something which is released. @Diego^
Title: Re: .col custom object
Post by: MatheuS on Aug 15, 2016, 02:46 PM
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. ???
Title: Re: .col custom object
Post by: Kewun on Aug 15, 2016, 03:15 PM
invalid definition .
Title: Re: .col custom object
Post by: Kewun on Aug 15, 2016, 03:28 PM
fixed