Thread Exception

Ron_Smith

Member
Can anyone help with the following - when I start my own route in TS12 I get the following:

Asset.LookupKUIDTable> unable tofind 'acslib' in kuid-table
(file asset.gs)


Stack dump:


<kuid2:44090:15333:2>


function$KUID@Asset::LookupKUIDTable(string), line -1
function$void@Open::ACS_Init(), line 76
function $void@Open::Init(), line62
function $void@MeshObject::Init(Asset), line 316

How do I fix this exception ?

Ron
 
May be this? Make sure you have the updated acslib Mesh library for ACS couplers and hoses,<kuid2:44090:58300:2> updated Nov 2018
 
function$KUID@Asset::LookupKUIDTable(string), line -1
You are using an asset that requires the acs library. An asset that requires this library must have a line in its KUID table with the identifier 'acslib' and the kuid of the library asset. For instance:
Code:
kuid-table
{
  enginesound                           <kuid:126323:53050>
  hornsound                             <kuid:116296:54104>
  enginespec                            <kuid:248163:100533>
  interior                              <kuid:116296:13135>
  driver                                <kuid:116296:360>
  fireman                               <kuid:116296:25258>
  coupler_i                             <kuid:44090:702>
  coupler_c                             <kuid:44090:703>
  vac_i                                 <kuid:44090:700>
  vac_c                                 <kuid:44090:701>
  vac_h                                 <kuid:44090:701>
  lamp                                  <kuid:116296:128>
  headcodes_html                        <kuid:44090:4512>
  acslib                                <kuid:60850:89100>
  numberit_library                      <kuid:75134:99003>
  mesh_library_acs                      <kuid:44090:58000>
  0                                     <kuid:-3:10004>
  1                                     <kuid:-10:149>
  2                                     <kuid:44179:60013>
  3                                     <kuid:-3:10004>
  4                                     <kuid:116296:131322>
  5                                     <kuid:116296:131321>
  6                                     <kuid:-10:172>
  7                                     <kuid2:116296:360:3>
  8                                     <kuid2:116296:13135:3>
  9                                     <kuid2:116296:25258:1>
  10                                    <kuid2:116296:54104:1>
  11                                    <kuid2:116296:131321:3>
  12                                    <kuid2:116296:131322:3>
}

This error can occur if the kuid table was 'cleaned up' and this required entry was not re-inserted. Or, perhaps, the line is there but it is corrupted.
 
Back
Top