74 lines
2.2 KiB
Text
74 lines
2.2 KiB
Text
function main ()
|
|
local items_table = {
|
|
"af_compass",
|
|
"af_oasis_heart",
|
|
"jup_b1_half_artifact",
|
|
"af_quest_b14_twisted",
|
|
|
|
"jup_a9_conservation_info",
|
|
"jup_a9_power_info",
|
|
"jup_a9_way_info",
|
|
"jup_a9_evacuation_info",
|
|
"jup_a9_meeting_info",
|
|
"jup_a9_losses_info",
|
|
"jup_a9_delivery_info",
|
|
"jup_b10_ufo_memory",
|
|
"jup_b10_ufo_memory_2",
|
|
"jup_b10_notes_01",
|
|
"jup_b10_notes_02",
|
|
"jup_b10_notes_03",
|
|
"jup_b205_sokolov_note",
|
|
"jup_b206_plant",
|
|
"jup_b209_monster_scanner",
|
|
"jup_b200_tech_materials_wire",
|
|
"jup_b200_tech_materials_acetone",
|
|
"jup_b200_tech_materials_textolite",
|
|
"jup_b200_tech_materials_transistor",
|
|
"jup_b200_tech_materials_capacitor",
|
|
"jup_b202_bandit_pda",
|
|
"device_flash_snag",
|
|
"jup_b9_blackbox",
|
|
"jup_b32_scanner_device",
|
|
"jup_b46_duty_founder_pda",
|
|
"jup_b207_merc_pda_with_contract",
|
|
"jup_b47_jupiter_products_info",
|
|
"jup_b47_merc_pda",
|
|
"toolkit_1",
|
|
"toolkit_2",
|
|
"toolkit_3",
|
|
"zat_b33_safe_container",
|
|
"zat_b57_gas_item",
|
|
"zat_b12_key_1",
|
|
"zat_b12_key_2",
|
|
"zat_b12_documents_1",
|
|
"zat_b12_documents_2",
|
|
"device_pda_port_bandit_leader",
|
|
"zat_b40_notebook",
|
|
"zat_b40_pda_1",
|
|
"zat_b40_pda_2",
|
|
"device_pda_zat_b5_dealer",
|
|
"zat_b20_noah_pda",
|
|
"zat_a23_access_card",
|
|
"zat_a23_gauss_rifle_docs",
|
|
"zat_b44_barge_pda",
|
|
"zat_b39_joker_pda",
|
|
"zat_b22_medic_pda",
|
|
"pri_b35_lab_x8_key",
|
|
"pri_b306_envoy_pda",
|
|
"pri_b36_monolith_hiding_place_pda",
|
|
"pri_a25_explosive_charge_item",
|
|
"pri_a19_american_experiment_info",
|
|
"pri_a19_lab_x16_info",
|
|
"pri_a19_lab_x10_info",
|
|
"pri_a19_lab_x7_info",
|
|
"pri_a19_lab_x18_info",
|
|
"zat_a23_labx8_key",
|
|
"lx8_service_instruction",
|
|
}
|
|
local actor = db.actor
|
|
local actor_id = actor:id()
|
|
local actor_position = actor:position()
|
|
for i = 1, #items_table do
|
|
alife():create(items_table[i], actor_position, 0, 0, actor_id)
|
|
end
|
|
end
|