MCPcopy Create free account
hub / github.com/crossuo/crossuo / LoadWithMul

Method LoadWithMul

xuocore/uodata.cpp:456–492  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

454}
455
456bool CFileManager::LoadWithMul()
457{
458 if (!m_ArtIdx.Load(UOFilePath("artidx.mul")))
459 {
460 return false;
461 }
462 if (!m_ArtMul.Load(UOFilePath("art.mul")))
463 {
464 return false;
465 }
466 if (!m_GumpIdx.Load(UOFilePath("gumpidx.mul")))
467 {
468 return false;
469 }
470 if (!m_GumpMul.Load(UOFilePath("gumpart.mul")))
471 {
472 return false;
473 }
474 if (!m_SoundIdx.Load(UOFilePath("soundidx.mul")))
475 {
476 return false;
477 }
478 if (!m_SoundMul.Load(UOFilePath("sound.mul")))
479 {
480 return false;
481 }
482 if (!m_MultiIdx.Load(UOFilePath("multi.idx")))
483 {
484 return false;
485 }
486 if (!m_MultiMul.Load(UOFilePath("multi.mul")))
487 {
488 return false;
489 }
490
491 return true;
492}
493
494bool CFileManager::LoadWithUop()
495{

Callers

nothing calls this directly

Calls 2

UOFilePathFunction · 0.85
LoadMethod · 0.45

Tested by

no test coverage detected