[VSK5] Official AccBoatParam.xml
[VSK5] Official AccBoatParam.xml
Here is the Official ACC BoatParam file made by nadeo : AccBoatParam.xml
Hope it will help you to tune your own Imported Boat.
Edited 09-22-2008 : New xml file for the new patched VSK5
Hope it will help you to tune your own Imported Boat.
Edited 09-22-2008 : New xml file for the new patched VSK5
Last edited by sunburn on 22 Sep 2008, 19:02, edited 2 times in total.
sunburn
- fosterbarry
- Amiral
- Posts: 328
- Joined: 13 May 2006, 02:05
- Location: Australia
The BoatParam file for the new (patched) ACC will be posted as soon as the author returns from Trapani Cento Cup... 
You will probably also have an updated table presented in this thread in not too long.
Harald

You will probably also have an updated table presented in this thread in not too long.
Harald
Done.euphoria wrote:The BoatParam file for the new (patched) ACC will be posted
I'll try to find a moment to do that yes, but i don't know when.euphoria wrote:You will probably also have an updated table presented in this thread in not too long.
sunburn
Is anyone else having trouble opening this file?
When I try to open it this is all I get

When I try to open it this is all I get
Edit: Fixed, had to open it with a different programThe XML page cannot be displayed
Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
--------------------------------------------------------------------------------
A string literal was expected, but no opening quote character was found. Error processing resource 'file:///C:/Documents an...
<Xs Conv=KnotToMs>0.00 5.00 10.00 15.00 20.00 25.00 30.00 40.00 </Xs>
---------^

Last edited by Jesse on 25 Sep 2008, 02:58, edited 1 time in total.
I am trying to use the AccBoatParam.xml as my base for the Farr 40 I am making. When i try to import the solid.3ds, .xml, and .txt I get an erroe message that reads "Unknown parameter : DurationCurves." Is it posible that this is occuring because I am using VSK 32nd cup? If so does anyone know where to get an older version of the AccBoatParam? Or have any helpful information?
If you have the last version of VSK32AC (2.0.2) , then it should be ok.
If you don't want to patch your game, then you have to delete the duration curves.
Exemple :
<ManoeuvreHaulUp>
<Duration>5</Duration>
<TeamActionId>Hisser</TeamActionId>
<SlowDownCoef>1</SlowDownCoef>
<Sound1Id>SoundHisserSpi</Sound1Id>
<Sound1Time>0</Sound1Time>
<Sound2Id>SoundGonflerSpi</Sound2Id>
<Sound2Time>0.9</Sound2Time>
</ManoeuvreHaulUp>
If you don't want to patch your game, then you have to delete the duration curves.
Exemple :
<ManoeuvreHaulUp>
<Duration>5</Duration>
<TeamActionId>Hisser</TeamActionId>
<SlowDownCoef>1</SlowDownCoef>
<Sound1Id>SoundHisserSpi</Sound1Id>
<Sound1Time>0</Sound1Time>
<Sound2Id>SoundGonflerSpi</Sound2Id>
<Sound2Time>0.9</Sound2Time>
</ManoeuvreHaulUp>
sunburn
Hi all,
I downloaded the Official ACC XML file(1st post of this thread), but I receive failure messages while trying to open it ...
Is it possible that double quotes (") have to be added??
But there would have to be numerous double quotes to be added and that makes it strange, because this thread seems to be older....has the xml standard been changed?
Jörg
I downloaded the Official ACC XML file(1st post of this thread), but I receive failure messages while trying to open it ...
Is it possible that double quotes (") have to be added??
But there would have to be numerous double quotes to be added and that makes it strange, because this thread seems to be older....has the xml standard been changed?
Greets<IdName>MainSailAcc</IdName>
<SailType>MainSail</SailType>
<VppCurves>
<Xs Conv="KnotToMs">0.00 5.00 10.00 15.00 20.00 25.00 30.00 40.00 </Xs>
<Curves>
<Curve>
<Xs Conv=DegToRad>0.00 7.00 14.99 15.00 20.00 22.00 24.00 40.00 45.00 50.00 70.00 80.00 90.00 100.00 110.00 120.00 130.00 180.00 </Xs>
<Ys Conv=KnotToMs>0.00 0.00 0.00 0.20 0.20 0.20 0.20 0.20 0.20 0.30 0.30 0.30 0.30 0.30 0.30 0.30 0.30 0.20 </Ys>
</Curve>
Jörg
Hi Jorg
http://www.w3schools.com/xml/xml_syntax.asp
http://www.w3schools.com/xml/xml_syntax.asp
XML Attribute Values Must be Quoted
XML elements can have attributes in name/value pairs just like in HTML.
In XML, the attribute values must always be quoted.
Study the two XML documents below. The first one is incorrect, the second is correct:
Code: Select all
<note date=12/11/2007>
<to>Tove</to>
<from>Jani</from>
</note>
<note date="12/11/2007">
<to>Tove</to>
<from>Jani</from>
</note>
I have a copy of "AccBoatParam.xml", if you wish I will mail it to you, pm me if requiredThe error in the first document is that the date attribute in the note element is not quoted.