It would be nice if krakatoa supported the asset-tracking feature in max.
In the meantime I was hope some tools might assist in scene management. Here is a snippet I made to find the dependant .prt files.
scn = for i in $geometry where (classof i.baseobject == KrakatoaPRTLoader) collect i
for j in scn do
(
format "$'%'\n" j.name to:listener
for k in j.filelist do
(
format "\t%\n" k to:listener
if (doesfileExist k) == false do print "Not Found!!!"
)
)
Ben.