Advertisement
Daemonion

RMA 1.0006 merge level editor error log fixes

Nov 21st, 2012
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. LE error logs
  2. Merge RMA + vanilla 1.0006
  3.  
  4. All maps:
  5.  
  6. (1)
  7. Error: Duplicate item name found: 'physics\object'
  8. General fix: Global search config folder for ]:physic_object
  9. Look for items missing or re-using the $spawn = "..." line
  10. Specific fix: Open system.ltx, and change bed_matras line 598:
  11.  
  12. before fix:
  13. [bed_matras]:physic_object
  14. visual = physics\decor\bed_matras.ogf
  15. fixed_bone = joint1
  16.  
  17. after fix:
  18. [bed_matras]:physic_object
  19. $spawn = "bed\bed_matras"
  20. visual = physics\decor\bed_matras.ogf
  21. fixed_bone = joint1
  22.  
  23.  
  24. (2)
  25. Error: Duplicate item name found: 'script\script object'
  26. General fix: Global search config folder for ]:script_object
  27. Look for items missing or re-using the $spawn = "..." line
  28.  
  29.  
  30. (3)
  31. Error: Duplicate item name found: 'devices\quest_items\bar_lucky_pda'
  32. Fix: rename $spawn to match what is in the []
  33.  
  34. Before fix in quest_items.ltx
  35. [rad_jaw_zam_pda]:identity_immunities
  36. GroupControlSection = spawn_group
  37. discovery_dependency =
  38. $spawn = "devices\quest_items\bar_lucky_pda"
  39.  
  40. After fix
  41. [rad_jaw_zam_pda]:identity_immunities
  42. GroupControlSection = spawn_group
  43. discovery_dependency =
  44. $spawn = "devices\quest_items\rad_jaw_zam_pda"
  45.  
  46.  
  47. (4)
  48. Level: l02_garbage
  49. Error: duplicate item: gar_particle_muhi_zone
  50. fix: rename in LE
  51.  
  52.  
  53. (5)
  54. Level: l08u_brainlab
  55. Error: duplicate light_uglovaya_1_glass_0001
  56. fix: rename in LE
  57.  
  58.  
  59. (6)
  60. Level: l10u_bunker
  61. Error: Level doesn't contain HOM objects!
  62. fix: ignore, non-issue
  63.  
  64.  
  65. (7)
  66. Level: l10u_secret_lab
  67. Error: Level doesn't contain HOM objects!
  68. fix: ignore, non-issue
  69.  
  70.  
  71. (8)
  72. Level: l12u_sarcofag
  73. Error: Duplicate object name already exists: 'light_alarm_glass_0000'
  74. fix: rename in LE
  75.  
  76.  
  77. (9)
  78. Level: l13u_warlab
  79. Error: Level doesn't contain HOM objects!
  80. fix: ignore, non-issue
  81.  
  82.  
  83. (10)
  84. Error: Duplicate item name found: 'script\script object'
  85. fix: system.ltx
  86.  
  87. before fix:
  88. [mattress]:script_object
  89. visual = physics\decor\sleeping_decor_inviz.ogf
  90. script_binding = bind_physic_object.init
  91.  
  92. after fix:
  93. [mattress]:script_object
  94. $spawn = "bed\mattress"
  95. visual = physics\decor\sleeping_decor_inviz.ogf
  96. script_binding = bind_physic_object.init
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement