├── CMakeLists.txt ├── CMakeModules ├── CheckDepends.cmake ├── ConfigureChecks.cmake ├── Find3dsMaxSDK.cmake ├── FindCEGUI.cmake ├── FindCppTest.cmake ├── FindCustomMFC.cmake ├── FindDInput.cmake ├── FindDSound.cmake ├── FindDirectXSDK.cmake ├── FindEFXUtil.cmake ├── FindExternal.cmake ├── FindFMOD.cmake ├── FindFreeType.cmake ├── FindGTK2.cmake ├── FindIconv.cmake ├── FindJpeg.cmake ├── FindLibwww.cmake ├── FindLuabind.cmake ├── FindMercurial.cmake ├── FindMySQL.cmake ├── FindOgg.cmake ├── FindOpenGLES.cmake ├── FindS3TC.cmake ├── FindSTLport.cmake ├── FindSquish.cmake ├── FindVorbis.cmake ├── FindWindowsSDK.cmake ├── FindXF86VidMode.cmake ├── GetRevision.cmake ├── PCHSupport.cmake └── nel.cmake ├── CMakePackaging.txt ├── COPYING ├── CTestConfig.cmake ├── README ├── changelog.template ├── config.h.cmake ├── nel ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── INSTALL ├── NEWS ├── README ├── doc │ ├── Doxyfile.cmake.in │ ├── html │ │ └── index.html │ ├── make_all_dox.sh │ ├── make_nel_dox.bat │ ├── make_nel_dox.sh │ ├── make_nelns_dox.bat │ ├── make_nelns_dox.sh │ ├── make_neltools_dox.bat │ ├── make_neltools_dox.sh │ ├── make_packages_doc.bat │ ├── make_packages_doc.sh │ ├── misc │ │ ├── event_callback.vsd │ │ ├── event_listener.vsd │ │ └── event_pump.vsd │ ├── nel.dox │ ├── nel.hhp │ ├── nelns.dox │ ├── nelns.hhp │ ├── neltools.dox │ ├── neltools.hhp │ └── net │ │ ├── login_system.vsd │ │ ├── nelnet-layer1-server-obj.png │ │ └── net.dxt ├── include │ ├── CMakeLists.txt │ └── nel │ │ ├── 3d │ │ ├── CMakeLists.txt │ │ ├── anim_ctrl.h │ │ ├── anim_detail_trav.h │ │ ├── animatable.h │ │ ├── animated_lightmap.h │ │ ├── animated_material.h │ │ ├── animated_morph.h │ │ ├── animated_value.h │ │ ├── animation.h │ │ ├── animation_optimizer.h │ │ ├── animation_playlist.h │ │ ├── animation_set.h │ │ ├── animation_set_user.h │ │ ├── animation_time.h │ │ ├── async_file_manager_3d.h │ │ ├── async_texture_block.h │ │ ├── async_texture_manager.h │ │ ├── bezier_patch.h │ │ ├── bloom_effect.h │ │ ├── bone.h │ │ ├── bsp_tree.h │ │ ├── camera.h │ │ ├── camera_col.h │ │ ├── channel_mixer.h │ │ ├── clip_trav.h │ │ ├── cloud.h │ │ ├── cloud_scape.h │ │ ├── cloud_scape_user.h │ │ ├── cluster.h │ │ ├── coarse_mesh_build.h │ │ ├── coarse_mesh_manager.h │ │ ├── computed_string.h │ │ ├── cube_grid.h │ │ ├── cube_map_builder.h │ │ ├── debug_vb.h │ │ ├── deform_2d.h │ │ ├── driver.h │ │ ├── driver_material_inline.h │ │ ├── driver_user.h │ │ ├── dru.h │ │ ├── event_mouse_listener.h │ │ ├── fast_ptr_list.h │ │ ├── fasthls_modifier.h │ │ ├── flare_model.h │ │ ├── flare_shape.h │ │ ├── font_generator.h │ │ ├── font_manager.h │ │ ├── frustum.h │ │ ├── heat_haze.h │ │ ├── height_map.h │ │ ├── hls_color_texture.h │ │ ├── hls_texture_bank.h │ │ ├── hls_texture_manager.h │ │ ├── hrc_trav.h │ │ ├── ig_surface_light.h │ │ ├── ig_surface_light_build.h │ │ ├── index_buffer.h │ │ ├── init_3d.h │ │ ├── instance_group_user.h │ │ ├── instance_lighter.h │ │ ├── key.h │ │ ├── landscape.h │ │ ├── landscape_collision_grid.h │ │ ├── landscape_def.h │ │ ├── landscape_face_vector_manager.h │ │ ├── landscape_model.h │ │ ├── landscape_profile.h │ │ ├── landscape_user.h │ │ ├── landscape_vegetable_block.h │ │ ├── landscapeig_manager.h │ │ ├── landscapevb_allocator.h │ │ ├── landscapevb_info.h │ │ ├── layered_ordering_table.h │ │ ├── light.h │ │ ├── light_contribution.h │ │ ├── light_influence_interpolator.h │ │ ├── light_trav.h │ │ ├── light_user.h │ │ ├── lighting_manager.h │ │ ├── load_balancing_trav.h │ │ ├── lod_character_builder.h │ │ ├── lod_character_instance.h │ │ ├── lod_character_manager.h │ │ ├── lod_character_shape.h │ │ ├── lod_character_shape_bank.h │ │ ├── lod_character_texture.h │ │ ├── logic_info.h │ │ ├── material.h │ │ ├── matrix_3x4.h │ │ ├── mesh.h │ │ ├── mesh_base.h │ │ ├── mesh_base_instance.h │ │ ├── mesh_blender.h │ │ ├── mesh_block_manager.h │ │ ├── mesh_geom.h │ │ ├── mesh_instance.h │ │ ├── mesh_morpher.h │ │ ├── mesh_mrm.h │ │ ├── mesh_mrm_instance.h │ │ ├── mesh_mrm_skinned.h │ │ ├── mesh_mrm_skinned_instance.h │ │ ├── mesh_multi_lod.h │ │ ├── mesh_multi_lod_instance.h │ │ ├── mesh_vertex_program.h │ │ ├── meshvp_per_pixel_light.h │ │ ├── meshvp_wind_tree.h │ │ ├── mini_col.h │ │ ├── motion_blur.h │ │ ├── mrm_builder.h │ │ ├── mrm_internal.h │ │ ├── mrm_level_detail.h │ │ ├── mrm_mesh.h │ │ ├── mrm_parameters.h │ │ ├── nelu.h │ │ ├── noise_3d.h │ │ ├── occlusion_query.h │ │ ├── ordering_table.h │ │ ├── packed_world.h │ │ ├── packed_zone.h │ │ ├── particle_system.h │ │ ├── particle_system_manager.h │ │ ├── particle_system_model.h │ │ ├── particle_system_process.h │ │ ├── particle_system_shape.h │ │ ├── patch.h │ │ ├── patch_rdr_pass.h │ │ ├── patchdlm_context.h │ │ ├── patchuv_locator.h │ │ ├── play_list_manager.h │ │ ├── play_list_manager_user.h │ │ ├── play_list_user.h │ │ ├── point_light.h │ │ ├── point_light_influence.h │ │ ├── point_light_model.h │ │ ├── point_light_named.h │ │ ├── point_light_named_array.h │ │ ├── portal.h │ │ ├── primitive_profile.h │ │ ├── ps_allocator.h │ │ ├── ps_attrib.h │ │ ├── ps_attrib_maker.h │ │ ├── ps_attrib_maker_bin_op.h │ │ ├── ps_attrib_maker_bin_op_inline.h │ │ ├── ps_attrib_maker_helper.h │ │ ├── ps_attrib_maker_iterators.h │ │ ├── ps_attrib_maker_template.h │ │ ├── ps_color.h │ │ ├── ps_direction.h │ │ ├── ps_dot.h │ │ ├── ps_edit.h │ │ ├── ps_emitter.h │ │ ├── ps_face.h │ │ ├── ps_face_look_at.h │ │ ├── ps_fan_light.h │ │ ├── ps_float.h │ │ ├── ps_force.h │ │ ├── ps_int.h │ │ ├── ps_iterator.h │ │ ├── ps_light.h │ │ ├── ps_located.h │ │ ├── ps_lod.h │ │ ├── ps_macro.h │ │ ├── ps_mesh.h │ │ ├── ps_misc.h │ │ ├── ps_particle.h │ │ ├── ps_particle2.h │ │ ├── ps_particle_basic.h │ │ ├── ps_plane_basis.h │ │ ├── ps_plane_basis_maker.h │ │ ├── ps_quad.h │ │ ├── ps_register_color_attribs.h │ │ ├── ps_register_float_attribs.h │ │ ├── ps_register_int_attribs.h │ │ ├── ps_register_plane_basis_attribs.h │ │ ├── ps_ribbon.h │ │ ├── ps_ribbon_base.h │ │ ├── ps_ribbon_look_at.h │ │ ├── ps_shockwave.h │ │ ├── ps_sound.h │ │ ├── ps_spawn_info.h │ │ ├── ps_tail_dot.h │ │ ├── ps_util.h │ │ ├── ps_zone.h │ │ ├── ptr_set.h │ │ ├── quad_effect.h │ │ ├── quad_grid.h │ │ ├── quad_grid_clip_cluster.h │ │ ├── quad_grid_clip_manager.h │ │ ├── quad_tree.h │ │ ├── radix_sort.h │ │ ├── raw_skin.h │ │ ├── raw_skinned.h │ │ ├── ray_mesh.h │ │ ├── register_3d.h │ │ ├── render_trav.h │ │ ├── root_model.h │ │ ├── scene.h │ │ ├── scene_group.h │ │ ├── scene_user.h │ │ ├── scissor.h │ │ ├── seg_remanence.h │ │ ├── seg_remanence_shape.h │ │ ├── shader.h │ │ ├── shadow_map.h │ │ ├── shadow_map_manager.h │ │ ├── shadow_poly_receiver.h │ │ ├── shadow_skin.h │ │ ├── shape.h │ │ ├── shape_bank.h │ │ ├── shape_bank_user.h │ │ ├── shape_info.h │ │ ├── shifted_triangle_cache.h │ │ ├── skeleton_model.h │ │ ├── skeleton_shape.h │ │ ├── skeleton_spawn_script.h │ │ ├── skeleton_weight.h │ │ ├── static_quad_grid.h │ │ ├── stripifier.h │ │ ├── surface_light_grid.h │ │ ├── tangent_space_build.h │ │ ├── target_anim_ctrl.h │ │ ├── tess_block.h │ │ ├── tess_face_priority_list.h │ │ ├── tess_list.h │ │ ├── tessellation.h │ │ ├── text_context.h │ │ ├── text_context_user.h │ │ ├── texture.h │ │ ├── texture_blank.h │ │ ├── texture_blend.h │ │ ├── texture_bloom.h │ │ ├── texture_bump.h │ │ ├── texture_cube.h │ │ ├── texture_dlm.h │ │ ├── texture_emboss.h │ │ ├── texture_far.h │ │ ├── texture_file.h │ │ ├── texture_font.h │ │ ├── texture_grouped.h │ │ ├── texture_mem.h │ │ ├── texture_multi_file.h │ │ ├── texture_near.h │ │ ├── texture_user.h │ │ ├── tile_bank.h │ │ ├── tile_color.h │ │ ├── tile_element.h │ │ ├── tile_far_bank.h │ │ ├── tile_light_influence.h │ │ ├── tile_lumel.h │ │ ├── tile_noise_map.h │ │ ├── tile_vegetable_desc.h │ │ ├── track.h │ │ ├── track_bezier.h │ │ ├── track_keyframer.h │ │ ├── track_sampled_common.h │ │ ├── track_sampled_quat.h │ │ ├── track_sampled_quat_small_header.h │ │ ├── track_sampled_vector.h │ │ ├── track_tcb.h │ │ ├── transform.h │ │ ├── transform_shape.h │ │ ├── transformable.h │ │ ├── trav_scene.h │ │ ├── u_3d_mouse_listener.h │ │ ├── u_animation.h │ │ ├── u_animation_set.h │ │ ├── u_bone.h │ │ ├── u_camera.h │ │ ├── u_cloud_scape.h │ │ ├── u_driver.h │ │ ├── u_instance.h │ │ ├── u_instance_group.h │ │ ├── u_instance_material.h │ │ ├── u_landscape.h │ │ ├── u_light.h │ │ ├── u_material.h │ │ ├── u_particle_system_instance.h │ │ ├── u_particle_system_sound.h │ │ ├── u_play_list.h │ │ ├── u_play_list_manager.h │ │ ├── u_point_light.h │ │ ├── u_ps_sound_impl.h │ │ ├── u_ps_sound_interface.h │ │ ├── u_scene.h │ │ ├── u_shape.h │ │ ├── u_shape_bank.h │ │ ├── u_skeleton.h │ │ ├── u_text_context.h │ │ ├── u_texture.h │ │ ├── u_track.h │ │ ├── u_transform.h │ │ ├── u_transformable.h │ │ ├── u_visual_collision_entity.h │ │ ├── u_visual_collision_manager.h │ │ ├── u_visual_collision_mesh.h │ │ ├── u_water.h │ │ ├── u_water_env_map.h │ │ ├── vegetable.h │ │ ├── vegetable_blend_layer_model.h │ │ ├── vegetable_clip_block.h │ │ ├── vegetable_def.h │ │ ├── vegetable_instance_group.h │ │ ├── vegetable_light_ex.h │ │ ├── vegetable_manager.h │ │ ├── vegetable_quadrant.h │ │ ├── vegetable_shape.h │ │ ├── vegetable_sort_block.h │ │ ├── vegetable_uv8.h │ │ ├── vegetablevb_allocator.h │ │ ├── vertex_buffer.h │ │ ├── vertex_buffer_heap.h │ │ ├── vertex_program.h │ │ ├── vertex_program_parse.h │ │ ├── vertex_stream_manager.h │ │ ├── viewport.h │ │ ├── visual_collision_entity.h │ │ ├── visual_collision_entity_user.h │ │ ├── visual_collision_manager.h │ │ ├── visual_collision_manager_user.h │ │ ├── visual_collision_mesh.h │ │ ├── water_env_map.h │ │ ├── water_env_map_user.h │ │ ├── water_height_map.h │ │ ├── water_model.h │ │ ├── water_pool_manager.h │ │ ├── water_shape.h │ │ ├── zone.h │ │ ├── zone_corner_smoother.h │ │ ├── zone_lighter.h │ │ ├── zone_manager.h │ │ ├── zone_search.h │ │ ├── zone_smoother.h │ │ ├── zone_symmetrisation.h │ │ └── zone_tgt_smoother.h │ │ ├── CMakeLists.txt │ │ ├── cegui │ │ ├── CMakeLists.txt │ │ ├── inellibrary.h │ │ ├── nellogger.h │ │ ├── nelrenderer.h │ │ ├── nelresourceprovider.h │ │ └── neltexture.h │ │ ├── georges │ │ ├── CMakeLists.txt │ │ ├── form.h │ │ ├── form_dfn.h │ │ ├── form_elm.h │ │ ├── form_loader.h │ │ ├── header.h │ │ ├── load_form.h │ │ ├── type.h │ │ ├── u_form.h │ │ ├── u_form_dfn.h │ │ ├── u_form_elm.h │ │ ├── u_form_loader.h │ │ └── u_type.h │ │ ├── ligo │ │ ├── CMakeLists.txt │ │ ├── ligo_config.h │ │ ├── primitive.h │ │ ├── primitive_class.h │ │ ├── primitive_configuration.h │ │ ├── primitive_utils.h │ │ ├── zone_bank.h │ │ └── zone_region.h │ │ ├── logic │ │ ├── CMakeLists.txt │ │ ├── logic_condition.h │ │ ├── logic_event.h │ │ ├── logic_state.h │ │ ├── logic_state_machine.h │ │ └── logic_variable.h │ │ ├── misc │ │ ├── CMakeLists.txt │ │ ├── aabbox.h │ │ ├── algo.h │ │ ├── app_context.h │ │ ├── array_2d.h │ │ ├── async_file_manager.h │ │ ├── big_file.h │ │ ├── bit_mem_stream.h │ │ ├── bit_set.h │ │ ├── bitmap.h │ │ ├── block_memory.h │ │ ├── bsphere.h │ │ ├── buf_fifo.h │ │ ├── check_fpu.h │ │ ├── class_id.h │ │ ├── class_registry.h │ │ ├── cmd_args.h │ │ ├── co_task.h │ │ ├── command.h │ │ ├── common.h │ │ ├── config_file.h │ │ ├── contiguous_block_allocator.h │ │ ├── cpu_time_stat.h │ │ ├── debug.h │ │ ├── di_event_emitter.h │ │ ├── diff_tool.h │ │ ├── displayer.h │ │ ├── dummy_window.h │ │ ├── dynloadlib.h │ │ ├── eid_translator.h │ │ ├── entity_id.h │ │ ├── enum_bitset.h │ │ ├── eval_num_expr.h │ │ ├── event_emitter.h │ │ ├── event_emitter_multi.h │ │ ├── event_listener.h │ │ ├── event_server.h │ │ ├── events.h │ │ ├── factory.h │ │ ├── fast_floor.h │ │ ├── fast_id_map.h │ │ ├── fast_mem.h │ │ ├── file.h │ │ ├── fixed_size_allocator.h │ │ ├── game_device.h │ │ ├── game_device_events.h │ │ ├── geom_ext.h │ │ ├── grid_traversal.h │ │ ├── gtk_displayer.h │ │ ├── heap_memory.h │ │ ├── hierarchical_timer.h │ │ ├── historic.h │ │ ├── i18n.h │ │ ├── i_xml.h │ │ ├── input_device.h │ │ ├── input_device_manager.h │ │ ├── input_device_server.h │ │ ├── inter_window_msg_queue.h │ │ ├── keyboard_device.h │ │ ├── line.h │ │ ├── log.h │ │ ├── matrix.h │ │ ├── md5.h │ │ ├── mem_displayer.h │ │ ├── mem_stream.h │ │ ├── mouse_device.h │ │ ├── mouse_smoother.h │ │ ├── mutable_container.h │ │ ├── mutex.h │ │ ├── noise_value.h │ │ ├── o_xml.h │ │ ├── object_arena_allocator.h │ │ ├── object_vector.h │ │ ├── p_thread.h │ │ ├── path.h │ │ ├── plane.h │ │ ├── plane_inline.h │ │ ├── polygon.h │ │ ├── pool_memory.h │ │ ├── progress_callback.h │ │ ├── quad.h │ │ ├── quat.h │ │ ├── random.h │ │ ├── reader_writer.h │ │ ├── rect.h │ │ ├── report.h │ │ ├── resource_ptr.h │ │ ├── resource_ptr_inline.h │ │ ├── rgba.h │ │ ├── sha1.h │ │ ├── shared_memory.h │ │ ├── sheet_id.h │ │ ├── singleton.h │ │ ├── smart_ptr.h │ │ ├── smart_ptr_inline.h │ │ ├── speaker_listener.h │ │ ├── sstring.h │ │ ├── static_map.h │ │ ├── stl_block_allocator.h │ │ ├── stl_block_list.h │ │ ├── stop_watch.h │ │ ├── stream.h │ │ ├── stream_inline.h │ │ ├── string_common.h │ │ ├── string_conversion.h │ │ ├── string_id_array.h │ │ ├── string_mapper.h │ │ ├── string_stream.h │ │ ├── system_info.h │ │ ├── system_utils.h │ │ ├── task_manager.h │ │ ├── tds.h │ │ ├── thread.h │ │ ├── time_nl.h │ │ ├── timeout_assertion_thread.h │ │ ├── traits_nl.h │ │ ├── triangle.h │ │ ├── twin_map.h │ │ ├── types_nl.h │ │ ├── ucstring.h │ │ ├── uv.h │ │ ├── value_smoother.h │ │ ├── variable.h │ │ ├── vector.h │ │ ├── vector_2d.h │ │ ├── vector_2f.h │ │ ├── vector_h.h │ │ ├── vector_inline.h │ │ ├── vectord.h │ │ ├── vectord_inline.h │ │ ├── win32_util.h │ │ ├── win_displayer.h │ │ ├── win_event_emitter.h │ │ ├── win_thread.h │ │ ├── win_tray.h │ │ ├── window_displayer.h │ │ ├── words_dictionary.h │ │ └── xml_pack.h │ │ ├── net │ │ ├── CMakeLists.txt │ │ ├── admin.h │ │ ├── buf_client.h │ │ ├── buf_net_base.h │ │ ├── buf_server.h │ │ ├── buf_sock.h │ │ ├── callback_client.h │ │ ├── callback_net_base.h │ │ ├── callback_server.h │ │ ├── cvar_log_filter.h │ │ ├── dummy_tcp_sock.h │ │ ├── email.h │ │ ├── inet_address.h │ │ ├── listen_sock.h │ │ ├── login_client.h │ │ ├── login_cookie.h │ │ ├── login_server.h │ │ ├── message.h │ │ ├── message_recorder.h │ │ ├── module.h │ │ ├── module_builder_parts.h │ │ ├── module_common.h │ │ ├── module_gateway.h │ │ ├── module_manager.h │ │ ├── module_message.h │ │ ├── module_socket.h │ │ ├── naming_client.h │ │ ├── net_displayer.h │ │ ├── net_log.h │ │ ├── net_manager.h │ │ ├── pacs_client.h │ │ ├── service.h │ │ ├── sock.h │ │ ├── tcp_sock.h │ │ ├── transport_class.h │ │ ├── udp_sim_sock.h │ │ ├── udp_sock.h │ │ ├── unified_network.h │ │ ├── unitime.h │ │ └── varpath.h │ │ ├── pacs │ │ ├── CMakeLists.txt │ │ ├── build_indoor.h │ │ ├── chain.h │ │ ├── chain_quad.h │ │ ├── collision_callback.h │ │ ├── collision_desc.h │ │ ├── collision_mesh_build.h │ │ ├── collision_ot.h │ │ ├── collision_surface_temp.h │ │ ├── edge_collide.h │ │ ├── edge_quad.h │ │ ├── exterior_mesh.h │ │ ├── face_grid.h │ │ ├── global_retriever.h │ │ ├── local_retriever.h │ │ ├── move_cell.h │ │ ├── move_container.h │ │ ├── move_container_inline.h │ │ ├── move_element.h │ │ ├── move_element_inline.h │ │ ├── move_primitive.h │ │ ├── primitive_block.h │ │ ├── primitive_world_image.h │ │ ├── quad_grid.h │ │ ├── retrievable_surface.h │ │ ├── retriever_bank.h │ │ ├── retriever_instance.h │ │ ├── surface_quad.h │ │ ├── u_collision_desc.h │ │ ├── u_global_position.h │ │ ├── u_global_retriever.h │ │ ├── u_move_container.h │ │ ├── u_move_primitive.h │ │ ├── u_primitive_block.h │ │ ├── u_retriever_bank.h │ │ └── vector_2s.h │ │ └── sound │ │ ├── CMakeLists.txt │ │ ├── async_file_manager_sound.h │ │ ├── audio_decoder.h │ │ ├── audio_decoder_vorbis.h │ │ ├── audio_mixer_user.h │ │ ├── background_sound.h │ │ ├── background_sound_manager.h │ │ ├── background_source.h │ │ ├── clustered_sound.h │ │ ├── complex_sound.h │ │ ├── complex_source.h │ │ ├── containers.h │ │ ├── context_sound.h │ │ ├── driver │ │ ├── CMakeLists.txt │ │ ├── buffer.h │ │ ├── effect.h │ │ ├── listener.h │ │ ├── music_channel.h │ │ ├── sound_driver.h │ │ └── source.h │ │ ├── group_controller.h │ │ ├── group_controller_root.h │ │ ├── listener_user.h │ │ ├── mixing_track.h │ │ ├── music_channel_fader.h │ │ ├── music_sound.h │ │ ├── music_sound_manager.h │ │ ├── music_source.h │ │ ├── sample_bank.h │ │ ├── sample_bank_manager.h │ │ ├── simple_sound.h │ │ ├── simple_source.h │ │ ├── sound.h │ │ ├── sound_anim_manager.h │ │ ├── sound_anim_marker.h │ │ ├── sound_animation.h │ │ ├── sound_bank.h │ │ ├── sound_pattern.h │ │ ├── source_common.h │ │ ├── source_music_channel.h │ │ ├── stream_file_sound.h │ │ ├── stream_file_source.h │ │ ├── stream_sound.h │ │ ├── stream_source.h │ │ ├── u_audio_mixer.h │ │ ├── u_group_controller.h │ │ ├── u_listener.h │ │ ├── u_source.h │ │ └── u_stream_source.h ├── nel-config.in ├── resources │ ├── nel.bmp │ ├── nel.png │ └── nevraxpill.ico ├── samples │ ├── 3d │ │ ├── CMakeLists.txt │ │ ├── cegui │ │ │ ├── CMakeLists.txt │ │ │ ├── NeLDriver.cpp │ │ │ ├── NeLDriver.h │ │ │ ├── datafiles │ │ │ │ ├── fonts │ │ │ │ │ ├── Commonv2c.ttf │ │ │ │ │ ├── Commonwealth-10.font │ │ │ │ │ ├── Font.xsd │ │ │ │ │ ├── Legal.txt │ │ │ │ │ ├── README │ │ │ │ │ ├── common.txt │ │ │ │ │ ├── tahoma-12.font │ │ │ │ │ └── tahoma.ttf │ │ │ │ ├── imagesets │ │ │ │ │ ├── GPN-2000-001437.tga │ │ │ │ │ ├── Imageset.xsd │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── TaharezLook.imageset │ │ │ │ │ ├── TaharezLook.tga │ │ │ │ │ ├── WerewolfLook.tga │ │ │ │ │ ├── WindowsLook.imageset │ │ │ │ │ ├── WindowsLook.tga │ │ │ │ │ ├── ogregui.imageset │ │ │ │ │ ├── ogregui.tga │ │ │ │ │ ├── werewolfgui.imageset │ │ │ │ │ └── werewolfgui.tga │ │ │ │ ├── layouts │ │ │ │ │ ├── Demo7Windows.layout │ │ │ │ │ └── GUILayout.xsd │ │ │ │ ├── looknfeel │ │ │ │ │ ├── Falagard.xsd │ │ │ │ │ ├── TaharezLook.looknfeel │ │ │ │ │ ├── Vanilla.looknfeel │ │ │ │ │ └── WindowsLook.looknfeel │ │ │ │ ├── n019003l.pfb │ │ │ │ └── schemes │ │ │ │ │ ├── GUIScheme.xsd │ │ │ │ │ ├── TaharezLook.scheme │ │ │ │ │ ├── TaharezLookWidgetAliases.scheme │ │ │ │ │ ├── TaharezLookWidgets.scheme │ │ │ │ │ ├── WindowsLook.scheme │ │ │ │ │ └── WindowsLookWidgets.scheme │ │ │ ├── demonel.rc │ │ │ ├── globals.h │ │ │ ├── icon1.ico │ │ │ ├── main.cpp │ │ │ ├── resource.h │ │ │ └── resource1.h │ │ ├── cluster_viewer │ │ │ ├── CMakeLists.txt │ │ │ ├── fonts │ │ │ │ └── n019003l.pfb │ │ │ ├── groups │ │ │ │ └── street.ig │ │ │ ├── main.cpp │ │ │ ├── main.cvs │ │ │ ├── max │ │ │ │ └── street.max │ │ │ ├── readme.txt │ │ │ └── shapes │ │ │ │ ├── box02.shape │ │ │ │ ├── sphere01.shape │ │ │ │ ├── sphere02.shape │ │ │ │ ├── sphere03.shape │ │ │ │ ├── sphere04.shape │ │ │ │ ├── sphere05.shape │ │ │ │ ├── sphere06.shape │ │ │ │ ├── sphere07.shape │ │ │ │ └── sphere08.shape │ │ ├── font │ │ │ ├── CMakeLists.txt │ │ │ ├── beteckna.ttf │ │ │ └── main.cpp │ │ ├── nel_qt │ │ │ ├── callback.cpp │ │ │ ├── callback.h │ │ │ ├── command_log.cpp │ │ │ ├── command_log.h │ │ │ ├── configuration.cpp │ │ │ ├── configuration.h │ │ │ ├── data │ │ │ │ ├── andbasr.ttf │ │ │ │ ├── andbasr.txt │ │ │ │ └── en.uxt │ │ │ ├── graphics_config.cpp │ │ │ ├── graphics_config.h │ │ │ ├── graphics_viewport.cpp │ │ │ ├── graphics_viewport.h │ │ │ ├── internationalization.cpp │ │ │ ├── internationalization.h │ │ │ ├── main_window.cpp │ │ │ ├── main_window.h │ │ │ ├── nel_qt.cfg │ │ │ ├── nel_qt.cpp │ │ │ ├── nel_qt.h │ │ │ ├── nel_qt_config.h │ │ │ ├── nel_qt_default.cfg │ │ │ ├── qtcolorpicker.h │ │ │ ├── qtcolorpicker_cpp.h │ │ │ ├── sound_utilities.cpp │ │ │ ├── sound_utilities.h │ │ │ ├── undo_redo_binders.cpp │ │ │ └── undo_redo_binders.h │ │ ├── qtnel │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── qnelwidget.cpp │ │ │ ├── qnelwidget.h │ │ │ ├── qnelwindow.cpp │ │ │ └── qnelwindow.h │ │ └── shape_viewer │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── CMakeLists.txt │ ├── georges │ │ ├── CMakeLists.txt │ │ ├── boolean.typ │ │ ├── coolfilesinfo.dfn │ │ ├── default.sample_config │ │ ├── int.typ │ │ ├── main.cpp │ │ ├── positiondata.dfn │ │ ├── sample_config.dfn │ │ ├── sheet_id.bin │ │ └── string.typ │ ├── misc │ │ ├── CMakeLists.txt │ │ ├── command │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── configfile │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ └── simpletest.txt │ │ ├── debug │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── i18n │ │ │ ├── CMakeLists.txt │ │ │ ├── de.uxt │ │ │ ├── en.uxt │ │ │ ├── fr.uxt │ │ │ └── main.cpp │ │ ├── log │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── strings │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ └── types_check │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── net │ │ ├── CMakeLists.txt │ │ ├── chat │ │ │ ├── CMakeLists.txt │ │ │ ├── chat_service.cfg │ │ │ ├── client.cfg │ │ │ ├── client.cpp │ │ │ ├── kbhit.cpp │ │ │ ├── kbhit.h │ │ │ └── server.cpp │ │ ├── class_transport │ │ │ ├── CMakeLists.txt │ │ │ ├── ai_service.cfg │ │ │ ├── ai_service.cpp │ │ │ ├── gd_service.cfg │ │ │ └── gd_service.cpp │ │ ├── login_system │ │ │ ├── CMakeLists.txt │ │ │ ├── client.cfg │ │ │ ├── client.cpp │ │ │ ├── frontend_service.cfg │ │ │ └── frontend_service.cpp │ │ ├── multi_shards │ │ │ ├── client.cpp │ │ │ ├── frontend_service.cpp │ │ │ └── shard_config │ │ │ │ ├── 01_admin_executor_service.lnk │ │ │ │ ├── 02_login_service.lnk │ │ │ │ ├── 03_naming_service_shard1.lnk │ │ │ │ ├── 04_welcome_service_shard1.lnk │ │ │ │ ├── 05_frontend_service_shard1.lnk │ │ │ │ ├── 06_naming_service_shard2.lnk │ │ │ │ ├── 07_welcome_service_shard2.lnk │ │ │ │ ├── 08_frontend_service_shard2.lnk │ │ │ │ ├── 09_naming_service_shard3.lnk │ │ │ │ ├── 10_frontend_service_shard3.lnk │ │ │ │ ├── 11_welcome_service_shard3.lnk │ │ │ │ ├── 12_client.lnk │ │ │ │ ├── admin_executor_service.cfg │ │ │ │ ├── client.cfg │ │ │ │ ├── login_service.cfg │ │ │ │ ├── login_service_database.cfg │ │ │ │ ├── shard1_config │ │ │ │ ├── frontend_service.cfg │ │ │ │ ├── naming_service.cfg │ │ │ │ └── welcome_service.cfg │ │ │ │ ├── shard2_config │ │ │ │ ├── frontend_service.cfg │ │ │ │ ├── naming_service.cfg │ │ │ │ └── welcome_service.cfg │ │ │ │ └── shard3_config │ │ │ │ ├── frontend_service.cfg │ │ │ │ ├── naming_service.cfg │ │ │ │ └── welcome_service.cfg │ │ ├── net_layer3 │ │ │ ├── client.cpp │ │ │ ├── frontend_service.cfg │ │ │ ├── frontend_service.cpp │ │ │ ├── ping_service.cfg │ │ │ └── ping_service.cpp │ │ ├── net_layer4 │ │ │ ├── client.cpp │ │ │ ├── frontend_service.cfg │ │ │ ├── frontend_service.cpp │ │ │ ├── ping_service.cfg │ │ │ └── ping_service.cpp │ │ ├── net_layer5 │ │ │ ├── flood_service.cfg │ │ │ ├── flood_service.cpp │ │ │ ├── frontend_service.cfg │ │ │ ├── frontend_service.cpp │ │ │ ├── gpm_service.cfg │ │ │ ├── gpm_service.cpp │ │ │ ├── ping_service.cfg │ │ │ ├── ping_service.cpp │ │ │ ├── player_service.cfg │ │ │ └── player_service.cpp │ │ ├── service │ │ │ ├── chat_service.cfg │ │ │ └── chat_service.cpp │ │ ├── udp │ │ │ ├── CMakeLists.txt │ │ │ ├── bench_service.cfg │ │ │ ├── bench_service.cpp │ │ │ ├── client.cfg │ │ │ ├── client.cpp │ │ │ ├── graph.cpp │ │ │ ├── graph.h │ │ │ ├── n019003l.pfb │ │ │ ├── readme.txt │ │ │ ├── receive_task.cpp │ │ │ ├── receive_task.h │ │ │ ├── simlag.cpp │ │ │ └── simlag.h │ │ └── udp_ping │ │ │ ├── client.cpp │ │ │ ├── udp_service.cfg │ │ │ └── udp_service.cpp │ ├── pacs │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── object.cpp │ │ ├── object.h │ │ ├── readme.txt │ │ └── shapes │ │ │ ├── arena.shape │ │ │ ├── cylinder.shape │ │ │ └── rectangle.shape │ └── sound │ │ ├── CMakeLists.txt │ │ ├── sound_sources │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── DFN │ │ │ │ ├── alpha.typ │ │ │ │ ├── angle.typ │ │ │ │ ├── backgound_sound_item.dfn │ │ │ │ ├── background_flag_config.dfn │ │ │ │ ├── background_sound.dfn │ │ │ │ ├── basics │ │ │ │ │ ├── _typ.dfn │ │ │ │ │ ├── _type.typ │ │ │ │ │ ├── boolean.typ │ │ │ │ │ ├── filename.typ │ │ │ │ │ ├── float.typ │ │ │ │ │ ├── iboolean.typ │ │ │ │ │ ├── int.typ │ │ │ │ │ ├── string.typ │ │ │ │ │ └── typ.dfn │ │ │ │ ├── complex_sound.dfn │ │ │ │ ├── context_sound.dfn │ │ │ │ ├── direction.dfn │ │ │ │ ├── distance.typ │ │ │ │ ├── doppler.typ │ │ │ │ ├── gain.typ │ │ │ │ ├── listener.dfn │ │ │ │ ├── mixer_config.dfn │ │ │ │ ├── music_sound.dfn │ │ │ │ ├── parameter_id.typ │ │ │ │ ├── pattern_mode.typ │ │ │ │ ├── priority.typ │ │ │ │ ├── rolloff.typ │ │ │ │ ├── simple_sound.dfn │ │ │ │ ├── sound.dfn │ │ │ │ ├── sound_group.dfn │ │ │ │ ├── sound_group_item.dfn │ │ │ │ ├── soundbank.dfn │ │ │ │ ├── transposition.typ │ │ │ │ └── user_var_binding.dfn │ │ │ ├── animations │ │ │ │ ├── readme.txt │ │ │ │ └── test_anim.sound_anim │ │ │ ├── background_sounds │ │ │ │ ├── background_sound.primitive │ │ │ │ └── readme.txt │ │ │ ├── cluster_sound │ │ │ │ ├── readme.txt │ │ │ │ └── test_clusters.sound_group │ │ │ ├── default.mixer_config │ │ │ ├── samplebank │ │ │ │ └── base_samples │ │ │ │ │ ├── beep.wav │ │ │ │ │ └── tuut.wav │ │ │ ├── soundbank │ │ │ │ ├── beep.sound │ │ │ │ └── tuut.sound │ │ │ └── world_editor_classes.xml │ │ └── main.cpp │ │ ├── stream_file │ │ ├── CMakeLists.txt │ │ ├── base_samples.sample_bank │ │ ├── data │ │ │ ├── DFN │ │ │ │ ├── basics │ │ │ │ │ ├── _typ.dfn │ │ │ │ │ ├── _type.typ │ │ │ │ │ ├── boolean.typ │ │ │ │ │ ├── filename.typ │ │ │ │ │ ├── float.typ │ │ │ │ │ ├── iboolean.typ │ │ │ │ │ ├── int.typ │ │ │ │ │ ├── sint16.typ │ │ │ │ │ ├── sint32.typ │ │ │ │ │ ├── sint64.typ │ │ │ │ │ ├── sint8.typ │ │ │ │ │ ├── string.typ │ │ │ │ │ ├── typ.dfn │ │ │ │ │ ├── uint16.typ │ │ │ │ │ ├── uint32.typ │ │ │ │ │ ├── uint64.typ │ │ │ │ │ └── uint8.typ │ │ │ │ └── sound │ │ │ │ │ ├── alpha.typ │ │ │ │ │ ├── angle.typ │ │ │ │ │ ├── backgound_sound_item.dfn │ │ │ │ │ ├── background_flag_config.dfn │ │ │ │ │ ├── background_sound.dfn │ │ │ │ │ ├── complex_sound.dfn │ │ │ │ │ ├── context_sound.dfn │ │ │ │ │ ├── direction.dfn │ │ │ │ │ ├── distance.typ │ │ │ │ │ ├── doppler.typ │ │ │ │ │ ├── gain.typ │ │ │ │ │ ├── listener.dfn │ │ │ │ │ ├── mixer_config.dfn │ │ │ │ │ ├── music_sound.dfn │ │ │ │ │ ├── parameter_id.typ │ │ │ │ │ ├── pattern_mode.typ │ │ │ │ │ ├── priority.typ │ │ │ │ │ ├── rolloff.typ │ │ │ │ │ ├── simple_sound.dfn │ │ │ │ │ ├── sound.dfn │ │ │ │ │ ├── sound_group.dfn │ │ │ │ │ ├── sound_group_item.dfn │ │ │ │ │ ├── soundbank.dfn │ │ │ │ │ ├── stream_file_sound.dfn │ │ │ │ │ ├── stream_sound.dfn │ │ │ │ │ ├── transposition.typ │ │ │ │ │ └── user_var_binding.dfn │ │ │ ├── animations │ │ │ │ ├── readme.txt │ │ │ │ └── test_anim.sound_anim │ │ │ ├── background_sounds │ │ │ │ ├── background_sound.primitive │ │ │ │ └── readme.txt │ │ │ ├── cluster_sound │ │ │ │ ├── readme.txt │ │ │ │ └── test_clusters.sound_group │ │ │ ├── default.mixer_config │ │ │ ├── samplebank │ │ │ │ └── base_samples │ │ │ │ │ ├── beep.wav │ │ │ │ │ └── tuut.wav │ │ │ ├── soundbank │ │ │ │ ├── beep.sound │ │ │ │ ├── default_stream.sound │ │ │ │ ├── stream_file.sound │ │ │ │ └── tuut.sound │ │ │ └── world_editor_classes.xml │ │ └── stream_file.cpp │ │ └── stream_ogg_vorbis │ │ ├── CMakeLists.txt │ │ ├── database │ │ ├── build │ │ │ ├── sheet_id │ │ │ │ ├── sheet_id.bin │ │ │ │ └── sheets.txt │ │ │ ├── sound_samplebanks │ │ │ │ └── base_samples.sample_bank │ │ │ └── sound_sheets │ │ │ │ ├── sounds.packed_sheets │ │ │ │ └── user_var_binding.packed_sheets │ │ ├── leveldesign │ │ │ ├── dfn │ │ │ │ ├── basics │ │ │ │ │ ├── _typ.dfn │ │ │ │ │ ├── _type.typ │ │ │ │ │ ├── boolean.typ │ │ │ │ │ ├── filename.typ │ │ │ │ │ ├── float.typ │ │ │ │ │ ├── iboolean.typ │ │ │ │ │ ├── int.typ │ │ │ │ │ ├── sint16.typ │ │ │ │ │ ├── sint32.typ │ │ │ │ │ ├── sint64.typ │ │ │ │ │ ├── sint8.typ │ │ │ │ │ ├── string.typ │ │ │ │ │ ├── typ.dfn │ │ │ │ │ ├── uint16.typ │ │ │ │ │ ├── uint32.typ │ │ │ │ │ ├── uint64.typ │ │ │ │ │ └── uint8.typ │ │ │ │ └── sound │ │ │ │ │ ├── alpha.typ │ │ │ │ │ ├── angle.typ │ │ │ │ │ ├── backgound_sound_item.dfn │ │ │ │ │ ├── background_flag_config.dfn │ │ │ │ │ ├── background_sound.dfn │ │ │ │ │ ├── complex_sound.dfn │ │ │ │ │ ├── context_sound.dfn │ │ │ │ │ ├── direction.dfn │ │ │ │ │ ├── distance.typ │ │ │ │ │ ├── doppler.typ │ │ │ │ │ ├── gain.typ │ │ │ │ │ ├── listener.dfn │ │ │ │ │ ├── mixer_config.dfn │ │ │ │ │ ├── music_sound.dfn │ │ │ │ │ ├── parameter_id.typ │ │ │ │ │ ├── pattern_mode.typ │ │ │ │ │ ├── priority.typ │ │ │ │ │ ├── rolloff.typ │ │ │ │ │ ├── simple_sound.dfn │ │ │ │ │ ├── sound.dfn │ │ │ │ │ ├── sound_group.dfn │ │ │ │ │ ├── sound_group_item.dfn │ │ │ │ │ ├── soundbank.dfn │ │ │ │ │ ├── stream_sound.dfn │ │ │ │ │ ├── transposition.typ │ │ │ │ │ └── user_var_binding.dfn │ │ │ └── sound │ │ │ │ ├── animations │ │ │ │ └── readme.txt │ │ │ │ ├── background_sounds │ │ │ │ └── readme.txt │ │ │ │ ├── cluster_sounds │ │ │ │ └── readme.txt │ │ │ │ ├── default.mixer_config │ │ │ │ ├── soundbanks │ │ │ │ ├── beep.sound │ │ │ │ ├── default_stream.sound │ │ │ │ └── tuut.sound │ │ │ │ └── test_var_binding.user_var_binding │ │ └── source │ │ │ └── sound │ │ │ └── samplebanks │ │ │ └── base_samples │ │ │ ├── beep.wav │ │ │ └── tuut.wav │ │ └── stream_ogg_vorbis.cpp ├── src │ ├── 3d │ │ ├── CMakeLists.txt │ │ ├── anim_ctrl.cpp │ │ ├── anim_detail_trav.cpp │ │ ├── animatable.cpp │ │ ├── animated_lightmap.cpp │ │ ├── animated_material.cpp │ │ ├── animated_morph.cpp │ │ ├── animated_value.cpp │ │ ├── animation.cpp │ │ ├── animation_optimizer.cpp │ │ ├── animation_playlist.cpp │ │ ├── animation_set.cpp │ │ ├── animation_set_user.cpp │ │ ├── animation_time.cpp │ │ ├── async_file_manager_3d.cpp │ │ ├── async_texture_block.cpp │ │ ├── async_texture_manager.cpp │ │ ├── bezier_patch.cpp │ │ ├── bloom_effect.cpp │ │ ├── bone.cpp │ │ ├── camera.cpp │ │ ├── camera_col.cpp │ │ ├── channel_mixer.cpp │ │ ├── clip_trav.cpp │ │ ├── cloud.cpp │ │ ├── cloud_scape.cpp │ │ ├── cloud_scape_user.cpp │ │ ├── cluster.cpp │ │ ├── coarse_mesh_build.cpp │ │ ├── coarse_mesh_manager.cpp │ │ ├── computed_string.cpp │ │ ├── cube_grid.cpp │ │ ├── cube_map_builder.cpp │ │ ├── debug_vb.cpp │ │ ├── deform_2d.cpp │ │ ├── driver.cpp │ │ ├── driver │ │ │ ├── CMakeLists.txt │ │ │ ├── direct3d │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── driver_direct3d.cpp │ │ │ │ ├── driver_direct3d.def │ │ │ │ ├── driver_direct3d.h │ │ │ │ ├── driver_direct3d_index.cpp │ │ │ │ ├── driver_direct3d_inputs.cpp │ │ │ │ ├── driver_direct3d_light.cpp │ │ │ │ ├── driver_direct3d_material.cpp │ │ │ │ ├── driver_direct3d_matrix.cpp │ │ │ │ ├── driver_direct3d_profile.cpp │ │ │ │ ├── driver_direct3d_render.cpp │ │ │ │ ├── driver_direct3d_shader.cpp │ │ │ │ ├── driver_direct3d_texture.cpp │ │ │ │ ├── driver_direct3d_vertex.cpp │ │ │ │ ├── driver_direct3d_vertex_program.cpp │ │ │ │ ├── stddirect3d.cpp │ │ │ │ └── stddirect3d.h │ │ │ ├── opengl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── EGL │ │ │ │ │ ├── egl.h │ │ │ │ │ ├── eglext.h │ │ │ │ │ └── eglplatform.h │ │ │ │ ├── GL │ │ │ │ │ ├── glext.h │ │ │ │ │ ├── glxext.h │ │ │ │ │ └── wglext.h │ │ │ │ ├── GLES │ │ │ │ │ ├── egl.h │ │ │ │ │ ├── gl.h │ │ │ │ │ ├── glext.h │ │ │ │ │ └── glplatform.h │ │ │ │ ├── KHR │ │ │ │ │ └── khrplatform.h │ │ │ │ ├── driver_opengl.cpp │ │ │ │ ├── driver_opengl.def │ │ │ │ ├── driver_opengl.h │ │ │ │ ├── driver_opengl_extension.cpp │ │ │ │ ├── driver_opengl_extension.h │ │ │ │ ├── driver_opengl_extension_def.h │ │ │ │ ├── driver_opengl_inputs.cpp │ │ │ │ ├── driver_opengl_light.cpp │ │ │ │ ├── driver_opengl_material.cpp │ │ │ │ ├── driver_opengl_matrix.cpp │ │ │ │ ├── driver_opengl_states.cpp │ │ │ │ ├── driver_opengl_states.h │ │ │ │ ├── driver_opengl_texture.cpp │ │ │ │ ├── driver_opengl_vertex.cpp │ │ │ │ ├── driver_opengl_vertex_buffer_hard.cpp │ │ │ │ ├── driver_opengl_vertex_buffer_hard.h │ │ │ │ ├── driver_opengl_vertex_program.cpp │ │ │ │ ├── driver_opengl_window.cpp │ │ │ │ ├── mac │ │ │ │ │ ├── cocoa_application_delegate.h │ │ │ │ │ ├── cocoa_application_delegate.mm │ │ │ │ │ ├── cocoa_event_emitter.cpp │ │ │ │ │ ├── cocoa_event_emitter.h │ │ │ │ │ ├── cocoa_opengl_view.h │ │ │ │ │ ├── cocoa_opengl_view.m │ │ │ │ │ ├── cocoa_window_delegate.h │ │ │ │ │ └── cocoa_window_delegate.mm │ │ │ │ ├── nel-driverogl.pc │ │ │ │ ├── nel-driverogl.pc.in │ │ │ │ ├── stdopengl.cpp │ │ │ │ ├── stdopengl.h │ │ │ │ ├── unix_event_emitter.cpp │ │ │ │ └── unix_event_emitter.h │ │ │ └── opengles │ │ │ │ └── CMakeLists.txt │ │ ├── driver_user.cpp │ │ ├── driver_user2.cpp │ │ ├── dru.cpp │ │ ├── event_mouse_listener.cpp │ │ ├── fast_ptr_list.cpp │ │ ├── fasthls_modifier.cpp │ │ ├── flare_model.cpp │ │ ├── flare_shape.cpp │ │ ├── font_generator.cpp │ │ ├── font_manager.cpp │ │ ├── frustum.cpp │ │ ├── heat_haze.cpp │ │ ├── height_map.cpp │ │ ├── hls_color_texture.cpp │ │ ├── hls_texture_bank.cpp │ │ ├── hls_texture_manager.cpp │ │ ├── hrc_trav.cpp │ │ ├── ig_surface_light.cpp │ │ ├── ig_surface_light_build.cpp │ │ ├── index_buffer.cpp │ │ ├── init_3d.cpp │ │ ├── instance_group_user.cpp │ │ ├── instance_lighter.cpp │ │ ├── key.cpp │ │ ├── landscape.cpp │ │ ├── landscape_collision_grid.cpp │ │ ├── landscape_def.cpp │ │ ├── landscape_face_vector_manager.cpp │ │ ├── landscape_model.cpp │ │ ├── landscape_profile.cpp │ │ ├── landscape_user.cpp │ │ ├── landscape_vegetable_block.cpp │ │ ├── landscapeig_manager.cpp │ │ ├── landscapevb_allocator.cpp │ │ ├── landscapevb_info.cpp │ │ ├── light.cpp │ │ ├── light_contribution.cpp │ │ ├── light_influence_interpolator.cpp │ │ ├── light_trav.cpp │ │ ├── light_user.cpp │ │ ├── lighting_manager.cpp │ │ ├── load_balancing_trav.cpp │ │ ├── lod_character_builder.cpp │ │ ├── lod_character_instance.cpp │ │ ├── lod_character_manager.cpp │ │ ├── lod_character_shape.cpp │ │ ├── lod_character_shape_bank.cpp │ │ ├── lod_character_texture.cpp │ │ ├── logic_info.cpp │ │ ├── material.cpp │ │ ├── matrix_3x4.cpp │ │ ├── mesh.cpp │ │ ├── mesh_base.cpp │ │ ├── mesh_base_instance.cpp │ │ ├── mesh_blender.cpp │ │ ├── mesh_block_manager.cpp │ │ ├── mesh_geom.cpp │ │ ├── mesh_instance.cpp │ │ ├── mesh_morpher.cpp │ │ ├── mesh_mrm.cpp │ │ ├── mesh_mrm_instance.cpp │ │ ├── mesh_mrm_skin.cpp │ │ ├── mesh_mrm_skin_template.cpp │ │ ├── mesh_mrm_skinned.cpp │ │ ├── mesh_mrm_skinned_instance.cpp │ │ ├── mesh_mrm_skinned_template.cpp │ │ ├── mesh_multi_lod.cpp │ │ ├── mesh_multi_lod_instance.cpp │ │ ├── mesh_vertex_program.cpp │ │ ├── meshvp_per_pixel_light.cpp │ │ ├── meshvp_wind_tree.cpp │ │ ├── mini_col.cpp │ │ ├── motion_blur.cpp │ │ ├── mrm_builder.cpp │ │ ├── mrm_internal.cpp │ │ ├── mrm_level_detail.cpp │ │ ├── mrm_mesh.cpp │ │ ├── mrm_parameters.cpp │ │ ├── nel-3d.pc │ │ ├── nel-3d.pc.in │ │ ├── nelu.cpp │ │ ├── noise_3d.cpp │ │ ├── packed_world.cpp │ │ ├── packed_zone.cpp │ │ ├── particle_system.cpp │ │ ├── particle_system_manager.cpp │ │ ├── particle_system_model.cpp │ │ ├── particle_system_process.cpp │ │ ├── particle_system_shape.cpp │ │ ├── particle_system_sound_user.cpp │ │ ├── patch.cpp │ │ ├── patch_lightmap.cpp │ │ ├── patch_noise.cpp │ │ ├── patch_rdr_pass.cpp │ │ ├── patch_render.cpp │ │ ├── patch_vegetable.cpp │ │ ├── patchdlm_context.cpp │ │ ├── patchuv_locator.cpp │ │ ├── play_list_manager.cpp │ │ ├── play_list_manager_user.cpp │ │ ├── play_list_user.cpp │ │ ├── point_light.cpp │ │ ├── point_light_model.cpp │ │ ├── point_light_named.cpp │ │ ├── point_light_named_array.cpp │ │ ├── portal.cpp │ │ ├── primitive_profile.cpp │ │ ├── ps_allocator.cpp │ │ ├── ps_attrib_maker_bin_op.cpp │ │ ├── ps_attrib_maker_helper.cpp │ │ ├── ps_attrib_maker_template.cpp │ │ ├── ps_color.cpp │ │ ├── ps_dot.cpp │ │ ├── ps_emitter.cpp │ │ ├── ps_face.cpp │ │ ├── ps_face_look_at.cpp │ │ ├── ps_fan_light.cpp │ │ ├── ps_float.cpp │ │ ├── ps_force.cpp │ │ ├── ps_int.cpp │ │ ├── ps_light.cpp │ │ ├── ps_located.cpp │ │ ├── ps_mesh.cpp │ │ ├── ps_particle.cpp │ │ ├── ps_particle2.cpp │ │ ├── ps_particle_basic.cpp │ │ ├── ps_plane_basis_maker.cpp │ │ ├── ps_quad.cpp │ │ ├── ps_register_attribs.cpp │ │ ├── ps_register_emitters.cpp │ │ ├── ps_register_forces.cpp │ │ ├── ps_register_particles.cpp │ │ ├── ps_register_zones.cpp │ │ ├── ps_ribbon.cpp │ │ ├── ps_ribbon_base.cpp │ │ ├── ps_ribbon_look_at.cpp │ │ ├── ps_shockwave.cpp │ │ ├── ps_sound.cpp │ │ ├── ps_tail_dot.cpp │ │ ├── ps_util.cpp │ │ ├── ps_zone.cpp │ │ ├── ptr_set.cpp │ │ ├── quad_effect.cpp │ │ ├── quad_grid.cpp │ │ ├── quad_grid_clip_cluster.cpp │ │ ├── quad_grid_clip_manager.cpp │ │ ├── radix_sort.cpp │ │ ├── raw_skin.cpp │ │ ├── raw_skinned.cpp │ │ ├── ray_mesh.cpp │ │ ├── register_3d.cpp │ │ ├── render_trav.cpp │ │ ├── root_model.cpp │ │ ├── scene.cpp │ │ ├── scene_group.cpp │ │ ├── scene_user.cpp │ │ ├── scissor.cpp │ │ ├── seg_remanence.cpp │ │ ├── seg_remanence_shape.cpp │ │ ├── shader.cpp │ │ ├── shadow_map.cpp │ │ ├── shadow_map_manager.cpp │ │ ├── shadow_poly_receiver.cpp │ │ ├── shadow_skin.cpp │ │ ├── shape.cpp │ │ ├── shape_bank.cpp │ │ ├── shape_bank_user.cpp │ │ ├── shape_info.cpp │ │ ├── shifted_triangle_cache.cpp │ │ ├── skeleton_model.cpp │ │ ├── skeleton_shape.cpp │ │ ├── skeleton_spawn_script.cpp │ │ ├── skeleton_weight.cpp │ │ ├── static_quad_grid.cpp │ │ ├── std3d.cpp │ │ ├── std3d.h │ │ ├── stripifier.cpp │ │ ├── surface_light_grid.cpp │ │ ├── tangent_space_build.cpp │ │ ├── target_anim_ctrl.cpp │ │ ├── tess_block.cpp │ │ ├── tess_face_priority_list.cpp │ │ ├── tess_list.cpp │ │ ├── tessellation.cpp │ │ ├── text_context.cpp │ │ ├── text_context_user.cpp │ │ ├── texture.cpp │ │ ├── texture_blank.cpp │ │ ├── texture_blend.cpp │ │ ├── texture_bloom.cpp │ │ ├── texture_bump.cpp │ │ ├── texture_cube.cpp │ │ ├── texture_dlm.cpp │ │ ├── texture_emboss.cpp │ │ ├── texture_far.cpp │ │ ├── texture_file.cpp │ │ ├── texture_font.cpp │ │ ├── texture_grouped.cpp │ │ ├── texture_mem.cpp │ │ ├── texture_multi_file.cpp │ │ ├── texture_near.cpp │ │ ├── texture_user.cpp │ │ ├── tile_bank.cpp │ │ ├── tile_color.cpp │ │ ├── tile_element.cpp │ │ ├── tile_far_bank.cpp │ │ ├── tile_light_influence.cpp │ │ ├── tile_lumel.cpp │ │ ├── tile_noise_map.cpp │ │ ├── tile_vegetable_desc.cpp │ │ ├── track.cpp │ │ ├── track_keyframer.cpp │ │ ├── track_sampled_common.cpp │ │ ├── track_sampled_quat.cpp │ │ ├── track_sampled_quat_small_header.cpp │ │ ├── track_sampled_vector.cpp │ │ ├── transform.cpp │ │ ├── transform_shape.cpp │ │ ├── transformable.cpp │ │ ├── trav_scene.cpp │ │ ├── u_bone.cpp │ │ ├── u_camera.cpp │ │ ├── u_instance.cpp │ │ ├── u_instance_material.cpp │ │ ├── u_material.cpp │ │ ├── u_particle_system_instance.cpp │ │ ├── u_point_light.cpp │ │ ├── u_shape.cpp │ │ ├── u_skeleton.cpp │ │ ├── u_transform.cpp │ │ ├── u_transformable.cpp │ │ ├── u_visual_collision_mesh.cpp │ │ ├── u_water.cpp │ │ ├── vegetable.cpp │ │ ├── vegetable_blend_layer_model.cpp │ │ ├── vegetable_clip_block.cpp │ │ ├── vegetable_def.cpp │ │ ├── vegetable_instance_group.cpp │ │ ├── vegetable_light_ex.cpp │ │ ├── vegetable_manager.cpp │ │ ├── vegetable_quadrant.cpp │ │ ├── vegetable_shape.cpp │ │ ├── vegetable_sort_block.cpp │ │ ├── vegetable_uv8.cpp │ │ ├── vegetablevb_allocator.cpp │ │ ├── vertex_buffer.cpp │ │ ├── vertex_buffer_heap.cpp │ │ ├── vertex_program.cpp │ │ ├── vertex_program_parse.cpp │ │ ├── vertex_stream_manager.cpp │ │ ├── viewport.cpp │ │ ├── visual_collision_entity.cpp │ │ ├── visual_collision_entity_user.cpp │ │ ├── visual_collision_manager.cpp │ │ ├── visual_collision_manager_user.cpp │ │ ├── visual_collision_mesh.cpp │ │ ├── water_env_map.cpp │ │ ├── water_env_map_user.cpp │ │ ├── water_height_map.cpp │ │ ├── water_model.cpp │ │ ├── water_pool_manager.cpp │ │ ├── water_shape.cpp │ │ ├── zone.cpp │ │ ├── zone_corner_smoother.cpp │ │ ├── zone_lighter.cpp │ │ ├── zone_manager.cpp │ │ ├── zone_search.cpp │ │ ├── zone_smoother.cpp │ │ ├── zone_symmetrisation.cpp │ │ └── zone_tgt_smoother.cpp │ ├── CMakeLists.txt │ ├── cegui │ │ ├── CMakeLists.txt │ │ ├── nelceguirenderer.def │ │ ├── nellogger.cpp │ │ ├── nelrenderer.cpp │ │ ├── nelresourceprovider.cpp │ │ └── neltexture.cpp │ ├── georges │ │ ├── CMakeLists.txt │ │ ├── form.cpp │ │ ├── form_dfn.cpp │ │ ├── form_elm.cpp │ │ ├── form_loader.cpp │ │ ├── georges_file_format.txt │ │ ├── header.cpp │ │ ├── load_form.cpp │ │ ├── nel-georges.pc.in │ │ ├── stdgeorges.cpp │ │ ├── stdgeorges.h │ │ └── type.cpp │ ├── ligo │ │ ├── CMakeLists.txt │ │ ├── ligo_config.cpp │ │ ├── ligo_error.cpp │ │ ├── ligo_error.h │ │ ├── ligo_material.cpp │ │ ├── ligo_material.h │ │ ├── nel-ligo.pc.in │ │ ├── primitive.cpp │ │ ├── primitive_class.cpp │ │ ├── primitive_configuration.cpp │ │ ├── primitive_utils.cpp │ │ ├── stdligo.cpp │ │ ├── stdligo.h │ │ ├── transition.cpp │ │ ├── transition.h │ │ ├── zone_bank.cpp │ │ ├── zone_edge.cpp │ │ ├── zone_edge.h │ │ ├── zone_region.cpp │ │ ├── zone_template.cpp │ │ └── zone_template.h │ ├── logic │ │ ├── CMakeLists.txt │ │ ├── logic_condition.cpp │ │ ├── logic_event.cpp │ │ ├── logic_state.cpp │ │ ├── logic_state_machine.cpp │ │ └── logic_variable.cpp │ ├── misc │ │ ├── CMakeLists.txt │ │ ├── aabbox.cpp │ │ ├── algo.cpp │ │ ├── app_context.cpp │ │ ├── async_file_manager.cpp │ │ ├── big_file.cpp │ │ ├── bit_mem_stream.cpp │ │ ├── bit_set.cpp │ │ ├── bitmap.cpp │ │ ├── bitmap_jpeg.cpp │ │ ├── bitmap_png.cpp │ │ ├── block_memory.cpp │ │ ├── bsphere.cpp │ │ ├── buf_fifo.cpp │ │ ├── check_fpu.cpp │ │ ├── class_id.cpp │ │ ├── class_registry.cpp │ │ ├── cmd_args.cpp │ │ ├── co_task.cpp │ │ ├── command.cpp │ │ ├── common.cpp │ │ ├── config_file │ │ │ ├── cf_bison.simple │ │ │ ├── cf_flex.skl │ │ │ ├── cf_gramatical.cpp │ │ │ ├── cf_gramatical.h │ │ │ ├── cf_gramatical.ypp │ │ │ ├── cf_lexical.cpp │ │ │ ├── cf_lexical.lpp │ │ │ ├── config_file.cpp │ │ │ └── do.bat │ │ ├── contiguous_block_allocator.cpp │ │ ├── cpu_time_stat.cpp │ │ ├── debug.cpp │ │ ├── di_event_emitter.cpp │ │ ├── di_game_device.cpp │ │ ├── di_game_device.h │ │ ├── di_keyboard_device.cpp │ │ ├── di_keyboard_device.h │ │ ├── di_mouse_device.cpp │ │ ├── di_mouse_device.h │ │ ├── diff_tool.cpp │ │ ├── displayer.cpp │ │ ├── dummy_window.cpp │ │ ├── dynloadlib.cpp │ │ ├── eid_translator.cpp │ │ ├── entity_id.cpp │ │ ├── eval_num_expr.cpp │ │ ├── event_emitter.cpp │ │ ├── event_emitter_multi.cpp │ │ ├── event_listener.cpp │ │ ├── event_server.cpp │ │ ├── events.cpp │ │ ├── fast_floor.cpp │ │ ├── fast_id_map.cpp │ │ ├── fast_mem.cpp │ │ ├── file.cpp │ │ ├── fixed_size_allocator.cpp │ │ ├── game_device.cpp │ │ ├── game_device_events.cpp │ │ ├── geom_ext.cpp │ │ ├── grid_traversal.cpp │ │ ├── gtk_displayer.cpp │ │ ├── heap_memory.cpp │ │ ├── hierarchical_timer.cpp │ │ ├── i18n.cpp │ │ ├── i_xml.cpp │ │ ├── input_device.cpp │ │ ├── input_device_server.cpp │ │ ├── inter_window_msg_queue.cpp │ │ ├── keyboard_device.cpp │ │ ├── line.cpp │ │ ├── log.cpp │ │ ├── matrix.cpp │ │ ├── md5.cpp │ │ ├── mem_displayer.cpp │ │ ├── mem_stream.cpp │ │ ├── mouse_smoother.cpp │ │ ├── mutex.cpp │ │ ├── nel-misc.pc │ │ ├── nel-misc.pc.in │ │ ├── noise_value.cpp │ │ ├── o_xml.cpp │ │ ├── object_arena_allocator.cpp │ │ ├── object_vector.cpp │ │ ├── p_thread.cpp │ │ ├── path.cpp │ │ ├── plane.cpp │ │ ├── polygon.cpp │ │ ├── progress_callback.cpp │ │ ├── quad.cpp │ │ ├── quat.cpp │ │ ├── reader_writer.cpp │ │ ├── rect.cpp │ │ ├── report.cpp │ │ ├── rgba.cpp │ │ ├── sha1.cpp │ │ ├── shared_memory.cpp │ │ ├── sheet_id.cpp │ │ ├── smart_ptr.cpp │ │ ├── sstring.cpp │ │ ├── stdmisc.cpp │ │ ├── stdmisc.h │ │ ├── stl_block_allocator.cpp │ │ ├── stl_block_list.cpp │ │ ├── stop_watch.cpp │ │ ├── stream.cpp │ │ ├── string_common.cpp │ │ ├── string_id_array.cpp │ │ ├── string_mapper.cpp │ │ ├── system_info.cpp │ │ ├── system_utils.cpp │ │ ├── task_manager.cpp │ │ ├── tds.cpp │ │ ├── time_nl.cpp │ │ ├── triangle.cpp │ │ ├── unicode.cpp │ │ ├── uv.cpp │ │ ├── value_smoother.cpp │ │ ├── variable.cpp │ │ ├── vector.cpp │ │ ├── vector_2d.cpp │ │ ├── vector_2f.cpp │ │ ├── vector_h.cpp │ │ ├── vectord.cpp │ │ ├── win32_util.cpp │ │ ├── win_displayer.cpp │ │ ├── win_event_emitter.cpp │ │ ├── win_thread.cpp │ │ ├── win_tray.cpp │ │ ├── window_displayer.cpp │ │ ├── words_dictionary.cpp │ │ └── xml_pack.cpp │ ├── net │ │ ├── CMakeLists.txt │ │ ├── admin.cpp │ │ ├── buf_client.cpp │ │ ├── buf_net_base.cpp │ │ ├── buf_server.cpp │ │ ├── buf_sock.cpp │ │ ├── callback_client.cpp │ │ ├── callback_net_base.cpp │ │ ├── callback_server.cpp │ │ ├── dummy_tcp_sock.cpp │ │ ├── email.cpp │ │ ├── inet_address.cpp │ │ ├── listen_sock.cpp │ │ ├── login_client.cpp │ │ ├── login_cookie.cpp │ │ ├── login_server.cpp │ │ ├── message.cpp │ │ ├── message_recorder.cpp │ │ ├── module.cpp │ │ ├── module_common.cpp │ │ ├── module_gateway.cpp │ │ ├── module_gateway_transport.cpp │ │ ├── module_l5_transport.cpp │ │ ├── module_local_gateway.cpp │ │ ├── module_manager.cpp │ │ ├── module_message.cpp │ │ ├── module_socket.cpp │ │ ├── naming_client.cpp │ │ ├── nel-net.pc.in │ │ ├── net_displayer.cpp │ │ ├── net_log.cpp │ │ ├── net_manager.cpp │ │ ├── service.cpp │ │ ├── sock.cpp │ │ ├── stdin_monitor_thread.cpp │ │ ├── stdin_monitor_thread.h │ │ ├── stdnet.cpp │ │ ├── stdnet.h │ │ ├── tcp_sock.cpp │ │ ├── transport_class.cpp │ │ ├── udp_sim_sock.cpp │ │ ├── udp_sock.cpp │ │ ├── unified_network.cpp │ │ ├── unitime.cpp │ │ └── varpath.cpp │ ├── pacs │ │ ├── CMakeLists.txt │ │ ├── build_indoor.cpp │ │ ├── chain.cpp │ │ ├── chain_quad.cpp │ │ ├── collision_callback.cpp │ │ ├── collision_desc.cpp │ │ ├── collision_ot.cpp │ │ ├── collision_surface_temp.cpp │ │ ├── edge_collide.cpp │ │ ├── edge_quad.cpp │ │ ├── exterior_mesh.cpp │ │ ├── global_retriever.cpp │ │ ├── local_retriever.cpp │ │ ├── move_cell.cpp │ │ ├── move_container.cpp │ │ ├── move_element.cpp │ │ ├── move_primitive.cpp │ │ ├── nel-pacs.pc.in │ │ ├── primitive_block_pacs.cpp │ │ ├── primitive_world_image.cpp │ │ ├── retrievable_surface.cpp │ │ ├── retriever_bank.cpp │ │ ├── retriever_instance.cpp │ │ ├── stdpacs.cpp │ │ ├── stdpacs.h │ │ ├── surface_quad.cpp │ │ └── vector_2s.cpp │ └── sound │ │ ├── CMakeLists.txt │ │ ├── async_file_manager_sound.cpp │ │ ├── audio_decoder.cpp │ │ ├── audio_decoder_vorbis.cpp │ │ ├── audio_mixer_user.cpp │ │ ├── background_sound.cpp │ │ ├── background_sound_manager.cpp │ │ ├── background_source.cpp │ │ ├── clustered_sound.cpp │ │ ├── complex_sound.cpp │ │ ├── complex_source.cpp │ │ ├── context_sound.cpp │ │ ├── driver │ │ ├── CMakeLists.txt │ │ ├── buffer.cpp │ │ ├── dsound │ │ │ ├── CMakeLists.txt │ │ │ ├── buffer_dsound.cpp │ │ │ ├── buffer_dsound.h │ │ │ ├── driver_dsound.def │ │ │ ├── listener_dsound.cpp │ │ │ ├── listener_dsound.h │ │ │ ├── sound_driver_dsound.cpp │ │ │ ├── sound_driver_dsound.h │ │ │ ├── source_dsound.cpp │ │ │ ├── source_dsound.h │ │ │ ├── stddsound.cpp │ │ │ └── stddsound.h │ │ ├── effect.cpp │ │ ├── fmod │ │ │ ├── CMakeLists.txt │ │ │ ├── buffer_fmod.cpp │ │ │ ├── buffer_fmod.h │ │ │ ├── driver_fmod.def │ │ │ ├── listener_fmod.cpp │ │ │ ├── listener_fmod.h │ │ │ ├── music_channel_fmod.cpp │ │ │ ├── music_channel_fmod.h │ │ │ ├── sound_driver_fmod.cpp │ │ │ ├── sound_driver_fmod.h │ │ │ ├── source_fmod.cpp │ │ │ ├── source_fmod.h │ │ │ ├── stdfmod.cpp │ │ │ └── stdfmod.h │ │ ├── listener.cpp │ │ ├── music_channel.cpp │ │ ├── openal │ │ │ ├── CMakeLists.txt │ │ │ ├── buffer_al.cpp │ │ │ ├── buffer_al.h │ │ │ ├── driver_openal.def │ │ │ ├── effect_al.cpp │ │ │ ├── effect_al.h │ │ │ ├── ext_al.cpp │ │ │ ├── ext_al.h │ │ │ ├── listener_al.cpp │ │ │ ├── listener_al.h │ │ │ ├── sound_driver_al.cpp │ │ │ ├── sound_driver_al.h │ │ │ ├── source_al.cpp │ │ │ ├── source_al.h │ │ │ ├── stdopenal.cpp │ │ │ └── stdopenal.h │ │ ├── sound_driver.cpp │ │ ├── source.cpp │ │ ├── stdsound_lowlevel.cpp │ │ ├── stdsound_lowlevel.h │ │ └── xaudio2 │ │ │ ├── CMakeLists.txt │ │ │ ├── adpcm_xaudio2.cpp │ │ │ ├── adpcm_xaudio2.h │ │ │ ├── buffer_xaudio2.cpp │ │ │ ├── buffer_xaudio2.h │ │ │ ├── driver_xaudio2.def │ │ │ ├── effect_xaudio2.cpp │ │ │ ├── effect_xaudio2.h │ │ │ ├── listener_xaudio2.cpp │ │ │ ├── listener_xaudio2.h │ │ │ ├── sound_driver_xaudio2.cpp │ │ │ ├── sound_driver_xaudio2.h │ │ │ ├── source_xaudio2.cpp │ │ │ ├── source_xaudio2.h │ │ │ ├── stdxaudio2.cpp │ │ │ └── stdxaudio2.h │ │ ├── group_controller.cpp │ │ ├── group_controller_root.cpp │ │ ├── listener_user.cpp │ │ ├── mixing_track.cpp │ │ ├── music_channel_fader.cpp │ │ ├── music_sound.cpp │ │ ├── music_sound_manager.cpp │ │ ├── music_source.cpp │ │ ├── nel-sound.pc.in │ │ ├── sample_bank.cpp │ │ ├── sample_bank_manager.cpp │ │ ├── simple_sound.cpp │ │ ├── simple_source.cpp │ │ ├── sound.cpp │ │ ├── sound_anim_manager.cpp │ │ ├── sound_anim_marker.cpp │ │ ├── sound_animation.cpp │ │ ├── sound_bank.cpp │ │ ├── source_common.cpp │ │ ├── source_music_channel.cpp │ │ ├── stdsound.cpp │ │ ├── stdsound.h │ │ ├── stream_file_sound.cpp │ │ ├── stream_file_source.cpp │ │ ├── stream_sound.cpp │ │ └── stream_source.cpp └── tools │ ├── 3d │ ├── CMakeLists.txt │ ├── anim_builder │ │ ├── CMakeLists.txt │ │ ├── anim_builder.cpp │ │ └── anim_builder.h │ ├── animation_set_builder │ │ ├── CMakeLists.txt │ │ ├── anim_utility.cpp │ │ ├── anim_utility.h │ │ └── animation_set_builder.cpp │ ├── build_clod_bank │ │ ├── CMakeLists.txt │ │ ├── build_clod_bank.cpp │ │ ├── config_example.cfg │ │ └── path_config_example.cfg │ ├── build_clodtex │ │ ├── CMakeLists.txt │ │ ├── lod_texture_builder.cpp │ │ ├── lod_texture_builder.h │ │ └── main.cpp │ ├── build_coarse_mesh │ │ ├── CMakeLists.txt │ │ ├── build.cfg │ │ └── build_coarse_mesh.cpp │ ├── build_far_bank │ │ ├── CMakeLists.txt │ │ └── build_far_bank.cpp │ ├── build_gamedata │ │ ├── 0_setup.bat │ │ ├── 1_clean.bat │ │ ├── 2_export.bat │ │ ├── 3_build.bat │ │ ├── 4_install.bat │ │ ├── Howto export.txt │ │ ├── _idle.bat │ │ ├── cfg │ │ │ ├── config.cfg │ │ │ ├── directories.cfg │ │ │ ├── panoply.cfg │ │ │ ├── properties_draft.cfg │ │ │ ├── properties_final.cfg │ │ │ └── site.cfg │ │ ├── client_clean.bat │ │ ├── client_setup.bat │ │ ├── export_build_all_data.bat │ │ ├── export_build_data.bat │ │ ├── processes │ │ │ ├── anim │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ ├── maxscript │ │ │ │ │ └── anim_export.ms │ │ │ │ └── sh │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── clodbank │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── cfg │ │ │ │ │ └── local_path.cfg │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ ├── maxscript │ │ │ │ │ └── clod_export.ms │ │ │ │ ├── process_doc.txt │ │ │ │ └── sh │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── displace │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ └── sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── farbank │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ └── sh │ │ │ │ │ ├── build.sh │ │ │ │ │ └── install.sh │ │ │ ├── font │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ └── sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── ig │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ ├── maxscript │ │ │ │ │ └── ig_export.ms │ │ │ │ └── sh │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── ig_light │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ └── sh │ │ │ │ │ └── install.sh │ │ │ ├── interface │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ └── sh │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── ligo │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ ├── maxscript │ │ │ │ │ └── nel_ligo_export.ms │ │ │ │ └── sh │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── renametozone.bat │ │ │ ├── map │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ └── sh │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── pacs_prim │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ ├── maxscript │ │ │ │ │ └── pacs_prim_export.ms │ │ │ │ └── sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── ps │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ └── sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── rbank │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── cfg │ │ │ │ │ ├── ai_build_wmap.cfg │ │ │ │ │ ├── template_draft.cfg │ │ │ │ │ └── template_final.cfg │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ ├── maxscript │ │ │ │ │ └── rbank_export.ms │ │ │ │ └── sh │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── clean.sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── shape │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── cfg │ │ │ │ │ └── config_header.cfg │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ ├── maxscript │ │ │ │ │ └── shape_export.ms │ │ │ │ └── sh │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── export.sh │ │ │ │ │ ├── install.sh │ │ │ │ │ ├── transfert_lightmap_optimize.bat │ │ │ │ │ └── transfert_shape_optimize.bat │ │ │ ├── skel │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ ├── maxscript │ │ │ │ │ └── skel_export.ms │ │ │ │ └── sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── smallbank │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ └── sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── swt │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ ├── maxscript │ │ │ │ │ └── swt_export.ms │ │ │ │ └── sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── tiles │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ └── sh │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── veget │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ ├── maxscript │ │ │ │ │ └── veget_export.ms │ │ │ │ └── sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── vegetset │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ └── sh │ │ │ │ │ ├── export.sh │ │ │ │ │ └── install.sh │ │ │ ├── zone │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ ├── maxscript │ │ │ │ │ └── zone_export.ms │ │ │ │ └── sh │ │ │ │ │ ├── build.sh │ │ │ │ │ └── export.sh │ │ │ └── zone_light │ │ │ │ ├── 0_setup.bat │ │ │ │ ├── 1_clean.bat │ │ │ │ ├── 2_export.bat │ │ │ │ ├── 3_build.bat │ │ │ │ ├── 4_install.bat │ │ │ │ ├── export_build_all_data.bat │ │ │ │ ├── export_build_data.bat │ │ │ │ ├── patch_tile_water.bat │ │ │ │ └── sh │ │ │ │ ├── build.sh │ │ │ │ ├── export.sh │ │ │ │ ├── install.sh │ │ │ │ └── patch_tile_water.sh │ │ ├── set_title.bat │ │ ├── sh │ │ │ ├── build.sh │ │ │ ├── clean.sh │ │ │ ├── client_clean.sh │ │ │ ├── client_setup.sh │ │ │ ├── export.sh │ │ │ ├── install.sh │ │ │ └── setup.sh │ │ ├── update_local_tools.bat │ │ └── update_tools.bat │ ├── build_interface │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── build_shadow_skin │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── build_smallbank │ │ ├── CMakeLists.txt │ │ └── build_smallbank.cpp │ ├── cluster_viewer │ │ ├── CMakeLists.txt │ │ ├── view_cs.cpp │ │ └── view_cs.txt │ ├── crash_log_analyser │ │ └── main.cpp │ ├── file_info │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── get_neighbors │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── hls_bank_maker │ │ ├── CMakeLists.txt │ │ ├── hls_bank_maker.cpp │ │ └── hls_bank_maker.h │ ├── ig_add │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── ig_elevation │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── ig_info │ │ ├── CMakeLists.txt │ │ └── ig_info.cpp │ ├── ig_lighter │ │ ├── CMakeLists.txt │ │ ├── config.cfg │ │ └── ig_lighter.cpp │ ├── ig_lighter_lib │ │ ├── ig_lighter_lib.cpp │ │ └── ig_lighter_lib.h │ ├── lightmap_optimizer │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── ligo │ │ ├── CMakeLists.txt │ │ ├── ligoscape.cfg │ │ ├── ligoscape.txt │ │ └── plugin_max │ │ │ ├── CMakeLists.txt │ │ │ ├── DllEntry.cpp │ │ │ ├── ligoscape_utility.def │ │ │ ├── ligoscape_utility.h │ │ │ ├── ligoscape_utility.rc │ │ │ ├── ligoscript.txt │ │ │ ├── macroscripts │ │ │ └── nel_ligoscape.mcr │ │ │ ├── max_to_ligo.cpp │ │ │ ├── max_to_ligo.h │ │ │ ├── resource.h │ │ │ ├── script.cpp │ │ │ └── scripts │ │ │ └── nel_ligoscape.ms │ ├── object_viewer │ │ ├── CMakeLists.txt │ │ ├── about_dialog.cpp │ │ ├── about_dialog.h │ │ ├── animation_dlg.cpp │ │ ├── animation_dlg.h │ │ ├── animation_set_dlg.cpp │ │ ├── animation_set_dlg.h │ │ ├── attrib_dlg.cpp │ │ ├── attrib_dlg.h │ │ ├── attrib_list_box.cpp │ │ ├── attrib_list_box.h │ │ ├── auto_lod_dlg.cpp │ │ ├── auto_lod_dlg.h │ │ ├── ball.tga │ │ ├── basis_edit.cpp │ │ ├── basis_edit.h │ │ ├── bin_op_dlg.cpp │ │ ├── bin_op_dlg.h │ │ ├── bitmap1.bmp │ │ ├── bitmap2.bmp │ │ ├── bitmap3.bmp │ │ ├── bitmap4.bmp │ │ ├── blend_wnd.cpp │ │ ├── blend_wnd.h │ │ ├── bmp00001.bmp │ │ ├── bmp00002.bmp │ │ ├── bmp00003.bmp │ │ ├── bmp00004.bmp │ │ ├── bmp00005.bmp │ │ ├── bmp00006.bmp │ │ ├── bmp00007.bmp │ │ ├── bmp00008.bmp │ │ ├── bmp00009.bmp │ │ ├── bmp00010.bmp │ │ ├── bmp00011.bmp │ │ ├── bmp00012.bmp │ │ ├── bmp00013.bmp │ │ ├── bmp00014.bmp │ │ ├── bmp00015.bmp │ │ ├── bmp00016.bmp │ │ ├── bmp00017.bmp │ │ ├── bmp00018.bmp │ │ ├── bmp00019.bmp │ │ ├── bmp00020.bmp │ │ ├── bmp00021.bmp │ │ ├── bmp00022.bmp │ │ ├── bmp00023.bmp │ │ ├── bmp00024.bmp │ │ ├── bmp00025.bmp │ │ ├── bmp00026.bmp │ │ ├── bmp00027.bmp │ │ ├── bound_checker.h │ │ ├── choose_bg_color_dlg.cpp │ │ ├── choose_bg_color_dlg.h │ │ ├── choose_frame_delay.cpp │ │ ├── choose_frame_delay.h │ │ ├── choose_name.cpp │ │ ├── choose_name.h │ │ ├── choose_pool_id.cpp │ │ ├── choose_pool_id.h │ │ ├── choose_sun_color_dlg.cpp │ │ ├── choose_sun_color_dlg.h │ │ ├── collision_zone_dlg.cpp │ │ ├── collision_zone_dlg.h │ │ ├── color_button.cpp │ │ ├── color_button.h │ │ ├── color_edit.cpp │ │ ├── color_edit.h │ │ ├── color_static.cpp │ │ ├── color_static.h │ │ ├── constraint_mesh_dlg.cpp │ │ ├── constraint_mesh_dlg.h │ │ ├── constraint_mesh_global_tex_anim_dlg.cpp │ │ ├── constraint_mesh_global_tex_anim_dlg.h │ │ ├── constraint_mesh_tex_dlg.cpp │ │ ├── constraint_mesh_tex_dlg.h │ │ ├── create_file_dlg.cpp │ │ ├── create_file_dlg.h │ │ ├── curve_edit.cpp │ │ ├── curve_edit.h │ │ ├── day_night_dlg.cpp │ │ ├── day_night_dlg.h │ │ ├── dialog_progress.cpp │ │ ├── dialog_progress.h │ │ ├── dialog_stack.h │ │ ├── direction_attr.cpp │ │ ├── direction_attr.h │ │ ├── direction_edit.cpp │ │ ├── direction_edit.h │ │ ├── dup_ps.cpp │ │ ├── dup_ps.h │ │ ├── edit_attrib_dlg.h │ │ ├── edit_ex.cpp │ │ ├── edit_ex.h │ │ ├── edit_follow_path.cpp │ │ ├── edit_follow_path.h │ │ ├── edit_morph_mesh_dlg.cpp │ │ ├── edit_morph_mesh_dlg.h │ │ ├── edit_ps_light.cpp │ │ ├── edit_ps_light.h │ │ ├── edit_ps_sound.cpp │ │ ├── edit_ps_sound.h │ │ ├── edit_spinner.cpp │ │ ├── edit_spinner.h │ │ ├── edit_user_param.cpp │ │ ├── edit_user_param.h │ │ ├── editable_range.cpp │ │ ├── editable_range.h │ │ ├── emitter_dlg.cpp │ │ ├── emitter_dlg.h │ │ ├── fire.tga │ │ ├── fog_dlg.cpp │ │ ├── fog_dlg.h │ │ ├── global_wind_dlg.cpp │ │ ├── global_wind_dlg.h │ │ ├── graph.cpp │ │ ├── graph.h │ │ ├── halo.tga │ │ ├── i1.tga │ │ ├── i2.tga │ │ ├── i3.tga │ │ ├── lb_extern_id_dlg.cpp │ │ ├── lb_extern_id_dlg.h │ │ ├── light_at.bmp │ │ ├── light_group_factor.cpp │ │ ├── light_group_factor.h │ │ ├── located_bindable_dialog.cpp │ │ ├── located_bindable_dialog.h │ │ ├── located_properties.cpp │ │ ├── located_properties.h │ │ ├── located_target_dlg.cpp │ │ ├── located_target_dlg.h │ │ ├── main_dlg.cpp │ │ ├── main_dlg.h │ │ ├── main_frame.cpp │ │ ├── main_frame.h │ │ ├── mesh_dlg.cpp │ │ ├── mesh_dlg.h │ │ ├── multi_tex_dlg.cpp │ │ ├── multi_tex_dlg.h │ │ ├── nevraxpill.ico │ │ ├── object_viewer.cfg │ │ ├── object_viewer.cpp │ │ ├── object_viewer.def │ │ ├── object_viewer.h │ │ ├── object_viewer.rc │ │ ├── object_viewer_debug.def │ │ ├── object_viewer_interface.h │ │ ├── particle.bmp │ │ ├── particle_dlg.cpp │ │ ├── particle_dlg.h │ │ ├── particle_system_edit.cpp │ │ ├── particle_system_edit.h │ │ ├── particle_tree_ctrl.cpp │ │ ├── particle_tree_ctrl.h │ │ ├── particle_workspace.cpp │ │ ├── particle_workspace.h │ │ ├── pick_sound.cpp │ │ ├── pick_sound.h │ │ ├── pingoo_back.tga │ │ ├── pingoo_beak.tga │ │ ├── pingoo_face.tga │ │ ├── pingoo_foot.tga │ │ ├── pingoo_snow.tga │ │ ├── pingoo_stick.tga │ │ ├── popup_notify.h │ │ ├── precomputed_rotations_dlg.cpp │ │ ├── precomputed_rotations_dlg.h │ │ ├── ps_global_color_dlg.cpp │ │ ├── ps_global_color_dlg.h │ │ ├── ps_initial_pos.cpp │ │ ├── ps_initial_pos.h │ │ ├── ps_mover_dlg.cpp │ │ ├── ps_mover_dlg.h │ │ ├── ps_wrapper.h │ │ ├── range_manager.cpp │ │ ├── range_manager.h │ │ ├── range_selector.cpp │ │ ├── range_selector.h │ │ ├── res │ │ │ └── object_viewer.rc2 │ │ ├── resource.h │ │ ├── ribbon.tga │ │ ├── ribbon_dlg.cpp │ │ ├── ribbon_dlg.h │ │ ├── save_options_dlg.cpp │ │ ├── save_options_dlg.h │ │ ├── scene_rot_dlg.cpp │ │ ├── scene_rot_dlg.h │ │ ├── scheme_bank_dlg.cpp │ │ ├── scheme_bank_dlg.h │ │ ├── scheme_manager.cpp │ │ ├── scheme_manager.h │ │ ├── select_movie_size.cpp │ │ ├── select_movie_size.h │ │ ├── select_string.cpp │ │ ├── select_string.h │ │ ├── set_value_dlg.cpp │ │ ├── set_value_dlg.h │ │ ├── shock.tga │ │ ├── skeleton_scale_dlg.cpp │ │ ├── skeleton_scale_dlg.h │ │ ├── skippable_message_box.cpp │ │ ├── skippable_message_box.h │ │ ├── slot_dlg.cpp │ │ ├── slot_dlg.h │ │ ├── smiley.tga │ │ ├── snapshot_tool_dlg.cpp │ │ ├── snapshot_tool_dlg.h │ │ ├── snow.tga │ │ ├── sound_anim_dlg.cpp │ │ ├── sound_anim_dlg.h │ │ ├── sound_anim_view.cpp │ │ ├── sound_anim_view.h │ │ ├── sound_system.cpp │ │ ├── sound_system.h │ │ ├── start_stop_particle_system.cpp │ │ ├── start_stop_particle_system.h │ │ ├── std_afx.cpp │ │ ├── std_afx.h │ │ ├── tail_particle_dlg.cpp │ │ ├── tail_particle_dlg.h │ │ ├── texture_anim_dlg.cpp │ │ ├── texture_anim_dlg.h │ │ ├── texture_chooser.cpp │ │ ├── texture_chooser.h │ │ ├── toolbar1.bmp │ │ ├── tune_mrm_dlg.cpp │ │ ├── tune_mrm_dlg.h │ │ ├── value_blender_dlg.cpp │ │ ├── value_blender_dlg.h │ │ ├── value_from_emitter_dlg.cpp │ │ ├── value_from_emitter_dlg.h │ │ ├── value_gradient_dlg.cpp │ │ ├── value_gradient_dlg.h │ │ ├── vegetable_apperance_page.cpp │ │ ├── vegetable_apperance_page.h │ │ ├── vegetable_copy_dlg.cpp │ │ ├── vegetable_copy_dlg.h │ │ ├── vegetable_density_page.cpp │ │ ├── vegetable_density_page.h │ │ ├── vegetable_dlg.cpp │ │ ├── vegetable_dlg.h │ │ ├── vegetable_edit_tools.cpp │ │ ├── vegetable_edit_tools.h │ │ ├── vegetable_list_box.cpp │ │ ├── vegetable_list_box.h │ │ ├── vegetable_list_color.cpp │ │ ├── vegetable_list_color.h │ │ ├── vegetable_noise_value_dlg.cpp │ │ ├── vegetable_noise_value_dlg.h │ │ ├── vegetable_refresh.cpp │ │ ├── vegetable_refresh.h │ │ ├── vegetable_rotate_page.cpp │ │ ├── vegetable_rotate_page.h │ │ ├── vegetable_scale_page.cpp │ │ ├── vegetable_scale_page.h │ │ ├── vegetable_select_dlg.cpp │ │ ├── vegetable_select_dlg.h │ │ ├── vegetable_wind_dlg.cpp │ │ ├── vegetable_wind_dlg.h │ │ ├── version.ver │ │ ├── water_pool_editor.cpp │ │ ├── water_pool_editor.h │ │ └── workspace.bmp │ ├── object_viewer_exe │ │ ├── CMakeLists.txt │ │ ├── nevraxpill.ico │ │ ├── object_viewer_exe.cpp │ │ ├── object_viewer_exe.rc │ │ ├── resource.h │ │ ├── std_afx.cpp │ │ └── std_afx.h │ ├── object_viewer_qt │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ └── andbasr.ttf │ │ ├── doc │ │ │ ├── html │ │ │ │ ├── cdirection_widget.png │ │ │ │ ├── cedit_color_widget.png │ │ │ │ ├── cedit_range_float_widget.png │ │ │ │ ├── cedit_range_int_widget.png │ │ │ │ ├── gui_struct.png │ │ │ │ └── object_viewer_qt_window.png │ │ │ ├── make_ovqt_dox.bat │ │ │ ├── make_ovqt_dox.sh │ │ │ └── ovqt.dox │ │ ├── ovqt_config.h.cmake │ │ └── src │ │ │ ├── 3rdparty │ │ │ ├── CMakeLists.txt │ │ │ └── qtpropertybrowser │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LGPL_EXCEPTION.txt │ │ │ │ ├── LICENSE.GPL3 │ │ │ │ ├── LICENSE.LGPL │ │ │ │ ├── QtAbstractEditorFactoryBase │ │ │ │ ├── QtAbstractPropertyBrowser │ │ │ │ ├── QtAbstractPropertyManager │ │ │ │ ├── QtBoolPropertyManager │ │ │ │ ├── QtBrowserItem │ │ │ │ ├── QtButtonPropertyBrowser │ │ │ │ ├── QtCharEditorFactory │ │ │ │ ├── QtCharPropertyManager │ │ │ │ ├── QtCheckBoxFactory │ │ │ │ ├── QtColorEditorFactory │ │ │ │ ├── QtColorPropertyManager │ │ │ │ ├── QtCursorEditorFactory │ │ │ │ ├── QtCursorPropertyManager │ │ │ │ ├── QtDateEditFactory │ │ │ │ ├── QtDatePropertyManager │ │ │ │ ├── QtDateTimeEditFactory │ │ │ │ ├── QtDateTimePropertyManager │ │ │ │ ├── QtDoublePropertyManager │ │ │ │ ├── QtDoubleSpinBoxFactory │ │ │ │ ├── QtEnumEditorFactory │ │ │ │ ├── QtEnumPropertyManager │ │ │ │ ├── QtFlagPropertyManager │ │ │ │ ├── QtFontEditorFactory │ │ │ │ ├── QtFontPropertyManager │ │ │ │ ├── QtGroupBoxPropertyBrowser │ │ │ │ ├── QtGroupPropertyManager │ │ │ │ ├── QtIntPropertyManager │ │ │ │ ├── QtKeySequenceEditorFactory │ │ │ │ ├── QtKeySequencePropertyManager │ │ │ │ ├── QtLineEditFactory │ │ │ │ ├── QtLocalePropertyManager │ │ │ │ ├── QtPointFPropertyManager │ │ │ │ ├── QtPointPropertyManager │ │ │ │ ├── QtProperty │ │ │ │ ├── QtRectFPropertyManager │ │ │ │ ├── QtRectPropertyManager │ │ │ │ ├── QtScrollBarFactory │ │ │ │ ├── QtSizeFPropertyManager │ │ │ │ ├── QtSizePolicyPropertyManager │ │ │ │ ├── QtSizePropertyManager │ │ │ │ ├── QtSliderFactory │ │ │ │ ├── QtSpinBoxFactory │ │ │ │ ├── QtStringPropertyManager │ │ │ │ ├── QtTimeEditFactory │ │ │ │ ├── QtTimePropertyManager │ │ │ │ ├── QtTreePropertyBrowser │ │ │ │ ├── QtVariantEditorFactory │ │ │ │ ├── QtVariantProperty │ │ │ │ ├── QtVariantPropertyManager │ │ │ │ ├── README.TXT │ │ │ │ ├── images │ │ │ │ ├── cursor-arrow.png │ │ │ │ ├── cursor-busy.png │ │ │ │ ├── cursor-closedhand.png │ │ │ │ ├── cursor-cross.png │ │ │ │ ├── cursor-forbidden.png │ │ │ │ ├── cursor-hand.png │ │ │ │ ├── cursor-hsplit.png │ │ │ │ ├── cursor-ibeam.png │ │ │ │ ├── cursor-openhand.png │ │ │ │ ├── cursor-sizeall.png │ │ │ │ ├── cursor-sizeb.png │ │ │ │ ├── cursor-sizef.png │ │ │ │ ├── cursor-sizeh.png │ │ │ │ ├── cursor-sizev.png │ │ │ │ ├── cursor-uparrow.png │ │ │ │ ├── cursor-vsplit.png │ │ │ │ ├── cursor-wait.png │ │ │ │ └── cursor-whatsthis.png │ │ │ │ ├── qtbuttonpropertybrowser.cpp │ │ │ │ ├── qtbuttonpropertybrowser.h │ │ │ │ ├── qteditorfactory.cpp │ │ │ │ ├── qteditorfactory.h │ │ │ │ ├── qtgroupboxpropertybrowser.cpp │ │ │ │ ├── qtgroupboxpropertybrowser.h │ │ │ │ ├── qtpropertybrowser.cpp │ │ │ │ ├── qtpropertybrowser.h │ │ │ │ ├── qtpropertybrowser.pri │ │ │ │ ├── qtpropertybrowser.qrc │ │ │ │ ├── qtpropertybrowserutils.cpp │ │ │ │ ├── qtpropertybrowserutils_p.h │ │ │ │ ├── qtpropertymanager.cpp │ │ │ │ ├── qtpropertymanager.h │ │ │ │ ├── qttreepropertybrowser.cpp │ │ │ │ ├── qttreepropertybrowser.h │ │ │ │ ├── qtvariantproperty.cpp │ │ │ │ └── qtvariantproperty.h │ │ │ ├── CMakeLists.txt │ │ │ ├── description.h │ │ │ ├── extension_system │ │ │ ├── iplugin.h │ │ │ ├── iplugin_manager.h │ │ │ ├── iplugin_spec.h │ │ │ ├── plugin_manager.cpp │ │ │ ├── plugin_manager.h │ │ │ ├── plugin_spec.cpp │ │ │ └── plugin_spec.h │ │ │ ├── ic_nel_pill.ico │ │ │ ├── images │ │ │ └── nel_ide_load.png │ │ │ ├── main.cpp │ │ │ ├── object_viewer_qt.qrc │ │ │ ├── object_viewer_qt.rc │ │ │ ├── plugins │ │ │ ├── CMakeLists.txt │ │ │ ├── bnp_manager │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bnp_dirtree_dialog.cpp │ │ │ │ ├── bnp_dirtree_dialog.h │ │ │ │ ├── bnp_dirtree_form.ui │ │ │ │ ├── bnp_file.cpp │ │ │ │ ├── bnp_file.h │ │ │ │ ├── bnp_filelist_dialog.cpp │ │ │ │ ├── bnp_filelist_dialog.h │ │ │ │ ├── bnp_filelist_dialog.ui │ │ │ │ ├── bnp_filesystem_model.cpp │ │ │ │ ├── bnp_filesystem_model.h │ │ │ │ ├── bnp_manager.qrc │ │ │ │ ├── bnp_manager_constants.h │ │ │ │ ├── bnp_manager_plugin.cpp │ │ │ │ ├── bnp_manager_plugin.h │ │ │ │ ├── bnp_manager_window.cpp │ │ │ │ ├── bnp_manager_window.h │ │ │ │ ├── bnp_manager_window.ui │ │ │ │ ├── bnp_proxy_model.cpp │ │ │ │ ├── bnp_proxy_model.h │ │ │ │ ├── images │ │ │ │ │ ├── ic_nel_add_item.png │ │ │ │ │ ├── ic_nel_bnp_make.png │ │ │ │ │ ├── ic_nel_delete_item.png │ │ │ │ │ ├── ic_nel_export.png │ │ │ │ │ ├── ic_nel_new.png │ │ │ │ │ └── ic_nel_reset_all.png │ │ │ │ └── ovqt_plugin_bnp_manager.xml │ │ │ ├── core │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── context_manager.cpp │ │ │ │ ├── context_manager.h │ │ │ │ ├── core.cpp │ │ │ │ ├── core.h │ │ │ │ ├── core.qrc │ │ │ │ ├── core_constants.h │ │ │ │ ├── core_global.h │ │ │ │ ├── core_plugin.cpp │ │ │ │ ├── core_plugin.h │ │ │ │ ├── general_settings_page.cpp │ │ │ │ ├── general_settings_page.h │ │ │ │ ├── general_settings_page.ui │ │ │ │ ├── icons │ │ │ │ │ ├── ic_nel_add_item.png │ │ │ │ │ ├── ic_nel_crash.png │ │ │ │ │ ├── ic_nel_delete_item.png │ │ │ │ │ ├── ic_nel_down_item.png │ │ │ │ │ ├── ic_nel_generic_settings.png │ │ │ │ │ ├── ic_nel_new.png │ │ │ │ │ ├── ic_nel_open.png │ │ │ │ │ ├── ic_nel_path_settings.png │ │ │ │ │ ├── ic_nel_pill.png │ │ │ │ │ ├── ic_nel_redo.png │ │ │ │ │ ├── ic_nel_reset_all.png │ │ │ │ │ ├── ic_nel_save.png │ │ │ │ │ ├── ic_nel_save_as.png │ │ │ │ │ ├── ic_nel_undo.png │ │ │ │ │ └── ic_nel_up_item.png │ │ │ │ ├── icontext.h │ │ │ │ ├── icore.h │ │ │ │ ├── icore_listener.h │ │ │ │ ├── images │ │ │ │ │ ├── nel.png │ │ │ │ │ └── preferences.png │ │ │ │ ├── ioptions_page.h │ │ │ │ ├── main_window.cpp │ │ │ │ ├── main_window.h │ │ │ │ ├── menu_manager.cpp │ │ │ │ ├── menu_manager.h │ │ │ │ ├── ovqt_plugin_core.xml │ │ │ │ ├── plugin_view_dialog.cpp │ │ │ │ ├── plugin_view_dialog.h │ │ │ │ ├── plugin_view_dialog.ui │ │ │ │ ├── qtwin.cpp │ │ │ │ ├── qtwin.h │ │ │ │ ├── search_paths_settings_page.cpp │ │ │ │ ├── search_paths_settings_page.h │ │ │ │ ├── search_paths_settings_page.ui │ │ │ │ ├── settings_dialog.cpp │ │ │ │ ├── settings_dialog.h │ │ │ │ └── settings_dialog.ui │ │ │ ├── disp_sheet_id │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── disp_sheet_id_plugin.cpp │ │ │ │ ├── disp_sheet_id_plugin.h │ │ │ │ ├── ovqt_plugin_disp_sheet_id.xml │ │ │ │ ├── sheet_id_view.cpp │ │ │ │ ├── sheet_id_view.h │ │ │ │ └── sheet_id_view.ui │ │ │ ├── example │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── example_plugin.cpp │ │ │ │ ├── example_plugin.h │ │ │ │ ├── example_settings_page.cpp │ │ │ │ ├── example_settings_page.h │ │ │ │ ├── example_settings_page.ui │ │ │ │ ├── ovqt_plugin_example.xml │ │ │ │ ├── qnel_widget.cpp │ │ │ │ ├── qnel_widget.h │ │ │ │ ├── simple_viewer.cpp │ │ │ │ └── simple_viewer.h │ │ │ ├── georges_editor │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── expandable_headerview.cpp │ │ │ │ ├── expandable_headerview.h │ │ │ │ ├── formdelegate.cpp │ │ │ │ ├── formdelegate.h │ │ │ │ ├── formitem.cpp │ │ │ │ ├── formitem.h │ │ │ │ ├── georges.cpp │ │ │ │ ├── georges.h │ │ │ │ ├── georges_dirtree_dialog.cpp │ │ │ │ ├── georges_dirtree_dialog.h │ │ │ │ ├── georges_dirtree_form.ui │ │ │ │ ├── georges_editor.qrc │ │ │ │ ├── georges_editor_constants.h │ │ │ │ ├── georges_editor_form.cpp │ │ │ │ ├── georges_editor_form.h │ │ │ │ ├── georges_editor_form.ui │ │ │ │ ├── georges_editor_plugin.cpp │ │ │ │ ├── georges_editor_plugin.h │ │ │ │ ├── georges_filesystem_model.cpp │ │ │ │ ├── georges_filesystem_model.h │ │ │ │ ├── georges_treeview_dialog.cpp │ │ │ │ ├── georges_treeview_dialog.h │ │ │ │ ├── georges_treeview_form.ui │ │ │ │ ├── georgesform_model.cpp │ │ │ │ ├── georgesform_model.h │ │ │ │ ├── georgesform_proxy_model.cpp │ │ │ │ ├── georgesform_proxy_model.h │ │ │ │ ├── images │ │ │ │ │ └── ic_nel_georges_editor.png │ │ │ │ └── ovqt_plugin_georges_editor.xml │ │ │ ├── landscape_editor │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── icons │ │ │ │ │ ├── ic_nel_landscape_item.png │ │ │ │ │ ├── ic_nel_landscape_settings.png │ │ │ │ │ ├── ic_nel_world_editor.png │ │ │ │ │ ├── ic_nel_zone.png │ │ │ │ │ └── ic_nel_zonel.png │ │ │ │ ├── landscape_editor.qrc │ │ │ │ ├── landscape_editor_constants.h │ │ │ │ ├── landscape_editor_global.h │ │ │ │ ├── landscape_editor_plugin.cpp │ │ │ │ ├── landscape_editor_plugin.h │ │ │ │ ├── landscape_editor_window.cpp │ │ │ │ ├── landscape_editor_window.h │ │ │ │ └── landscape_editor_window.ui │ │ │ ├── log │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── log_form.ui │ │ │ │ ├── log_plugin.cpp │ │ │ │ ├── log_plugin.h │ │ │ │ ├── log_settings_page.cpp │ │ │ │ ├── log_settings_page.h │ │ │ │ ├── log_settings_page.ui │ │ │ │ ├── ovqt_plugin_log.xml │ │ │ │ ├── qt_displayer.cpp │ │ │ │ └── qt_displayer.h │ │ │ ├── mission_compiler │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── images │ │ │ │ │ ├── arrow-left-2.png │ │ │ │ │ ├── arrow-left-double-2.png │ │ │ │ │ ├── arrow-right-2.png │ │ │ │ │ ├── arrow-right-double-2.png │ │ │ │ │ ├── document-export-4.png │ │ │ │ │ ├── ic_nel_add_item.png │ │ │ │ │ ├── ic_nel_delete_item.png │ │ │ │ │ ├── ic_nel_down_item.png │ │ │ │ │ ├── ic_nel_generic_settings.png │ │ │ │ │ ├── ic_nel_reset_all.png │ │ │ │ │ ├── ic_nel_up_item.png │ │ │ │ │ ├── news-subscribe-2.png │ │ │ │ │ └── run-build-2.png │ │ │ │ ├── mission_compiler.qrc │ │ │ │ ├── mission_compiler_main_window.cpp │ │ │ │ ├── mission_compiler_main_window.h │ │ │ │ ├── mission_compiler_main_window.ui │ │ │ │ ├── mission_compiler_plugin.cpp │ │ │ │ ├── mission_compiler_plugin.h │ │ │ │ ├── mission_compiler_plugin_constants.h │ │ │ │ ├── mission_compiler_settings_page.cpp │ │ │ │ ├── mission_compiler_settings_page.h │ │ │ │ ├── mission_compiler_settings_page.ui │ │ │ │ ├── ovqt_plugin_mission_compiler.xml │ │ │ │ ├── server_entry_dialog.cpp │ │ │ │ ├── server_entry_dialog.h │ │ │ │ ├── server_entry_dialog.ui │ │ │ │ ├── validation_file.cpp │ │ │ │ └── validation_file.h │ │ │ ├── object_viewer │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── animation_dialog.cpp │ │ │ │ ├── animation_dialog.h │ │ │ │ ├── animation_form.ui │ │ │ │ ├── animation_set_dialog.cpp │ │ │ │ ├── animation_set_dialog.h │ │ │ │ ├── animation_set_form.ui │ │ │ │ ├── attrib_form.ui │ │ │ │ ├── attrib_widget.cpp │ │ │ │ ├── attrib_widget.h │ │ │ │ ├── auto_lod_dialog.cpp │ │ │ │ ├── auto_lod_dialog.h │ │ │ │ ├── auto_lod_form.ui │ │ │ │ ├── basic_edit_form.ui │ │ │ │ ├── basic_edit_widget.cpp │ │ │ │ ├── basic_edit_widget.h │ │ │ │ ├── bin_op_dialog.cpp │ │ │ │ ├── bin_op_dialog.h │ │ │ │ ├── camera_control.cpp │ │ │ │ ├── camera_control.h │ │ │ │ ├── color_edit_form.ui │ │ │ │ ├── color_edit_widget.cpp │ │ │ │ ├── color_edit_widget.h │ │ │ │ ├── constraint_mesh_form.ui │ │ │ │ ├── constraint_mesh_widget.cpp │ │ │ │ ├── constraint_mesh_widget.h │ │ │ │ ├── curve_dialog.cpp │ │ │ │ ├── curve_dialog.h │ │ │ │ ├── curve_form.ui │ │ │ │ ├── day_night_dialog.cpp │ │ │ │ ├── day_night_dialog.h │ │ │ │ ├── day_night_form.ui │ │ │ │ ├── direction_form.ui │ │ │ │ ├── direction_widget.cpp │ │ │ │ ├── direction_widget.h │ │ │ │ ├── dup_ps.cpp │ │ │ │ ├── dup_ps.h │ │ │ │ ├── edit_range_float_form.ui │ │ │ │ ├── edit_range_uint_form.ui │ │ │ │ ├── edit_range_widget.cpp │ │ │ │ ├── edit_range_widget.h │ │ │ │ ├── emitter_form.ui │ │ │ │ ├── emitter_page.cpp │ │ │ │ ├── emitter_page.h │ │ │ │ ├── entity.cpp │ │ │ │ ├── entity.h │ │ │ │ ├── follow_path_dialog.cpp │ │ │ │ ├── follow_path_dialog.h │ │ │ │ ├── global_wind_dialog.cpp │ │ │ │ ├── global_wind_dialog.h │ │ │ │ ├── global_wind_form.ui │ │ │ │ ├── graphics_settings_page.cpp │ │ │ │ ├── graphics_settings_page.h │ │ │ │ ├── graphics_settings_page.ui │ │ │ │ ├── graphics_viewport.cpp │ │ │ │ ├── graphics_viewport.h │ │ │ │ ├── hoverpoints.cpp │ │ │ │ ├── hoverpoints.h │ │ │ │ ├── icons │ │ │ │ │ ├── ic_nel_add_item.png │ │ │ │ │ ├── ic_nel_anim.png │ │ │ │ │ ├── ic_nel_animset.png │ │ │ │ │ ├── ic_nel_append_item.png │ │ │ │ │ ├── ic_nel_bgcolor.png │ │ │ │ │ ├── ic_nel_camera_3dedit.png │ │ │ │ │ ├── ic_nel_camera_add.png │ │ │ │ │ ├── ic_nel_camera_del.png │ │ │ │ │ ├── ic_nel_camera_fps.png │ │ │ │ │ ├── ic_nel_daynight.png │ │ │ │ │ ├── ic_nel_delete_item.png │ │ │ │ │ ├── ic_nel_down_item.png │ │ │ │ │ ├── ic_nel_framedelay.png │ │ │ │ │ ├── ic_nel_insert_item.png │ │ │ │ │ ├── ic_nel_mixer.png │ │ │ │ │ ├── ic_nel_mrm_mesh.png │ │ │ │ │ ├── ic_nel_new.png │ │ │ │ │ ├── ic_nel_open.png │ │ │ │ │ ├── ic_nel_particle_system.png │ │ │ │ │ ├── ic_nel_particle_system_close.png │ │ │ │ │ ├── ic_nel_particles.png │ │ │ │ │ ├── ic_nel_pill.png │ │ │ │ │ ├── ic_nel_reset_all.png │ │ │ │ │ ├── ic_nel_reset_camera.png │ │ │ │ │ ├── ic_nel_save.png │ │ │ │ │ ├── ic_nel_save_as.png │ │ │ │ │ ├── ic_nel_skelscale.png │ │ │ │ │ ├── ic_nel_sound.png │ │ │ │ │ ├── ic_nel_up_item.png │ │ │ │ │ ├── ic_nel_veget.png │ │ │ │ │ ├── ic_nel_vegetset.png │ │ │ │ │ ├── ic_nel_water.png │ │ │ │ │ ├── ic_nel_wind.png │ │ │ │ │ ├── ic_nel_workspace_item.png │ │ │ │ │ └── particles_system_24 │ │ │ │ │ │ ├── ic_nel_collision_zone_item_24.png │ │ │ │ │ │ ├── ic_nel_emitter_item_24.png │ │ │ │ │ │ ├── ic_nel_force_item_24.png │ │ │ │ │ │ ├── ic_nel_instance_item_24.png │ │ │ │ │ │ ├── ic_nel_light_item_24.png │ │ │ │ │ │ ├── ic_nel_located_item_24.png │ │ │ │ │ │ ├── ic_nel_particle_item_24.png │ │ │ │ │ │ ├── ic_nel_particle_system_24.png │ │ │ │ │ │ ├── ic_nel_particle_system_close_24.png │ │ │ │ │ │ ├── ic_nel_sound_item_24.png │ │ │ │ │ │ └── ic_nel_workspace_item_24.png │ │ │ │ ├── images │ │ │ │ │ ├── dqynight.png │ │ │ │ │ ├── ico_mrm_mesh.png │ │ │ │ │ ├── mixer.png │ │ │ │ │ ├── nel.png │ │ │ │ │ ├── pause.png │ │ │ │ │ ├── play.png │ │ │ │ │ ├── polymode.png │ │ │ │ │ ├── pqrticles.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ ├── rmfill.png │ │ │ │ │ ├── rmline.png │ │ │ │ │ ├── rmpoints.png │ │ │ │ │ ├── seek-backward.png │ │ │ │ │ ├── seek-forward.png │ │ │ │ │ ├── skip-backward.png │ │ │ │ │ ├── skip-forward.png │ │ │ │ │ ├── sound.png │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── water.png │ │ │ │ │ └── wind.png │ │ │ │ ├── located_bindable_form.ui │ │ │ │ ├── located_bindable_page.cpp │ │ │ │ ├── located_bindable_page.h │ │ │ │ ├── located_form.ui │ │ │ │ ├── located_page.cpp │ │ │ │ ├── located_page.h │ │ │ │ ├── main_window.cpp │ │ │ │ ├── main_window.h │ │ │ │ ├── mesh_form.ui │ │ │ │ ├── mesh_widget.cpp │ │ │ │ ├── mesh_widget.h │ │ │ │ ├── modules.cpp │ │ │ │ ├── modules.h │ │ │ │ ├── morph_mesh_dialog.cpp │ │ │ │ ├── morph_mesh_dialog.h │ │ │ │ ├── morph_mesh_form.ui │ │ │ │ ├── multi_tex_dialog.cpp │ │ │ │ ├── multi_tex_dialog.h │ │ │ │ ├── multi_tex_form.ui │ │ │ │ ├── object_viewer.cpp │ │ │ │ ├── object_viewer.h │ │ │ │ ├── object_viewer.qrc │ │ │ │ ├── object_viewer_constants.h │ │ │ │ ├── object_viewer_plugin.cpp │ │ │ │ ├── object_viewer_plugin.h │ │ │ │ ├── ovqt_plugin_object_viewer.xml │ │ │ │ ├── particle_control_dialog.cpp │ │ │ │ ├── particle_control_dialog.h │ │ │ │ ├── particle_control_form.ui │ │ │ │ ├── particle_editor.cpp │ │ │ │ ├── particle_editor.h │ │ │ │ ├── particle_force_form.ui │ │ │ │ ├── particle_force_page.cpp │ │ │ │ ├── particle_force_page.h │ │ │ │ ├── particle_light_form.ui │ │ │ │ ├── particle_light_page.cpp │ │ │ │ ├── particle_light_page.h │ │ │ │ ├── particle_link_skeleton_dialog.cpp │ │ │ │ ├── particle_link_skeleton_dialog.h │ │ │ │ ├── particle_link_skeleton_form.ui │ │ │ │ ├── particle_node.cpp │ │ │ │ ├── particle_node.h │ │ │ │ ├── particle_property_dialog.cpp │ │ │ │ ├── particle_property_dialog.h │ │ │ │ ├── particle_sound_form.ui │ │ │ │ ├── particle_sound_page.cpp │ │ │ │ ├── particle_sound_page.h │ │ │ │ ├── particle_system_form.ui │ │ │ │ ├── particle_system_page.cpp │ │ │ │ ├── particle_system_page.h │ │ │ │ ├── particle_texture_anim_form.ui │ │ │ │ ├── particle_texture_anim_widget.cpp │ │ │ │ ├── particle_texture_anim_widget.h │ │ │ │ ├── particle_texture_form.ui │ │ │ │ ├── particle_texture_widget.cpp │ │ │ │ ├── particle_texture_widget.h │ │ │ │ ├── particle_tree_model.cpp │ │ │ │ ├── particle_tree_model.h │ │ │ │ ├── particle_workspace_dialog.cpp │ │ │ │ ├── particle_workspace_dialog.h │ │ │ │ ├── particle_workspace_form.ui │ │ │ │ ├── particle_workspace_page.cpp │ │ │ │ ├── particle_workspace_page.h │ │ │ │ ├── particle_zone_form.ui │ │ │ │ ├── particle_zone_page.cpp │ │ │ │ ├── particle_zone_page.h │ │ │ │ ├── ps_initial_pos.cpp │ │ │ │ ├── ps_initial_pos.h │ │ │ │ ├── ps_mover_form.ui │ │ │ │ ├── ps_mover_page.cpp │ │ │ │ ├── ps_mover_page.h │ │ │ │ ├── ps_wrapper.h │ │ │ │ ├── scheme_bank_dialog.cpp │ │ │ │ ├── scheme_bank_dialog.h │ │ │ │ ├── scheme_bank_form.ui │ │ │ │ ├── scheme_manager.cpp │ │ │ │ ├── scheme_manager.h │ │ │ │ ├── setup_fog_dialog.cpp │ │ │ │ ├── setup_fog_dialog.h │ │ │ │ ├── setup_fog_form.ui │ │ │ │ ├── skeleton_scale_dialog.cpp │ │ │ │ ├── skeleton_scale_dialog.h │ │ │ │ ├── skeleton_scale_form.ui │ │ │ │ ├── skeleton_tree_model.cpp │ │ │ │ ├── skeleton_tree_model.h │ │ │ │ ├── slot_form.ui │ │ │ │ ├── slot_manager_dialog.cpp │ │ │ │ ├── slot_manager_dialog.h │ │ │ │ ├── sound_settings_page.cpp │ │ │ │ ├── sound_settings_page.h │ │ │ │ ├── sound_settings_page.ui │ │ │ │ ├── sound_system.cpp │ │ │ │ ├── sound_system.h │ │ │ │ ├── spinner_dialog.cpp │ │ │ │ ├── spinner_dialog.h │ │ │ │ ├── stdpch.cpp │ │ │ │ ├── stdpch.h │ │ │ │ ├── sun_color_dialog.cpp │ │ │ │ ├── sun_color_dialog.h │ │ │ │ ├── sun_color_form.ui │ │ │ │ ├── tail_form.ui │ │ │ │ ├── tail_particle_widget.cpp │ │ │ │ ├── tail_particle_widget.h │ │ │ │ ├── tune_mrm_dialog.cpp │ │ │ │ ├── tune_mrm_dialog.h │ │ │ │ ├── tune_mrm_form.ui │ │ │ │ ├── tune_timer_dialog.cpp │ │ │ │ ├── tune_timer_dialog.h │ │ │ │ ├── tune_timer_form.ui │ │ │ │ ├── value_blender_dialog.cpp │ │ │ │ ├── value_blender_dialog.h │ │ │ │ ├── value_from_emitter_dialog.cpp │ │ │ │ ├── value_from_emitter_dialog.h │ │ │ │ ├── value_gradient_dialog.cpp │ │ │ │ ├── value_gradient_dialog.h │ │ │ │ ├── value_gradient_form.ui │ │ │ │ ├── vegetable_appearance_page.cpp │ │ │ │ ├── vegetable_appearance_page.h │ │ │ │ ├── vegetable_apperance_form.ui │ │ │ │ ├── vegetable_density_form.ui │ │ │ │ ├── vegetable_density_page.cpp │ │ │ │ ├── vegetable_density_page.h │ │ │ │ ├── vegetable_dialog.cpp │ │ │ │ ├── vegetable_dialog.h │ │ │ │ ├── vegetable_dialog_form.ui │ │ │ │ ├── vegetable_editor.cpp │ │ │ │ ├── vegetable_editor.h │ │ │ │ ├── vegetable_landscape_form.ui │ │ │ │ ├── vegetable_landscape_page.cpp │ │ │ │ ├── vegetable_landscape_page.h │ │ │ │ ├── vegetable_node.cpp │ │ │ │ ├── vegetable_node.h │ │ │ │ ├── vegetable_noise_value_form.ui │ │ │ │ ├── vegetable_noise_value_widget.cpp │ │ │ │ ├── vegetable_noise_value_widget.h │ │ │ │ ├── vegetable_rotate_form.ui │ │ │ │ ├── vegetable_rotate_page.cpp │ │ │ │ ├── vegetable_rotate_page.h │ │ │ │ ├── vegetable_scale_form.ui │ │ │ │ ├── vegetable_scale_page.cpp │ │ │ │ ├── vegetable_scale_page.h │ │ │ │ ├── vegetable_settings_page.cpp │ │ │ │ ├── vegetable_settings_page.h │ │ │ │ ├── vegetable_settings_page.ui │ │ │ │ ├── water_pool_dialog.cpp │ │ │ │ ├── water_pool_dialog.h │ │ │ │ ├── water_pool_form.ui │ │ │ │ └── workspace_form.ui │ │ │ ├── ovqt_sheet_builder │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ovqt_plugin_sheet_builder.xml │ │ │ │ ├── ovqt_sheet_builder.cpp │ │ │ │ ├── ovqt_sheet_builder.h │ │ │ │ ├── ovqt_sheet_builder.pro │ │ │ │ ├── sheetbuilder.h │ │ │ │ ├── sheetbuilderconfgdialog.cpp │ │ │ │ ├── sheetbuilderconfgdialog.h │ │ │ │ ├── sheetbuilderdialog.cpp │ │ │ │ └── sheetbuilderdialog.h │ │ │ ├── translation_manager │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README │ │ │ │ ├── editor_phrase.cpp │ │ │ │ ├── editor_phrase.h │ │ │ │ ├── editor_worksheet.cpp │ │ │ │ ├── editor_worksheet.h │ │ │ │ ├── extract_bot_names.cpp │ │ │ │ ├── extract_bot_names.h │ │ │ │ ├── extract_new_sheet_names.cpp │ │ │ │ ├── extract_new_sheet_names.h │ │ │ │ ├── ftp_selection.cpp │ │ │ │ ├── ftp_selection.h │ │ │ │ ├── ftp_selection.qrc │ │ │ │ ├── ftp_selection.ui │ │ │ │ ├── images │ │ │ │ │ ├── cdtoparent.png │ │ │ │ │ ├── dir.png │ │ │ │ │ └── file.png │ │ │ │ ├── ovqt_plugin_translation_manager.xml │ │ │ │ ├── source_selection.cpp │ │ │ │ ├── source_selection.h │ │ │ │ ├── source_selection.ui │ │ │ │ ├── translation_manager_constants.h │ │ │ │ ├── translation_manager_editor.h │ │ │ │ ├── translation_manager_main_window.cpp │ │ │ │ ├── translation_manager_main_window.h │ │ │ │ ├── translation_manager_main_window.ui │ │ │ │ ├── translation_manager_plugin.cpp │ │ │ │ ├── translation_manager_plugin.h │ │ │ │ ├── translation_manager_settings_page.cpp │ │ │ │ ├── translation_manager_settings_page.h │ │ │ │ └── translation_manager_settings_page.ui │ │ │ └── zone_painter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── images │ │ │ │ ├── color-fill.png │ │ │ │ ├── color-picker-black.png │ │ │ │ ├── colorize.png │ │ │ │ ├── draw-brush.png │ │ │ │ ├── go-down-7.png │ │ │ │ ├── go-jump-4.png │ │ │ │ ├── lock-6.png │ │ │ │ └── lock-silver.png │ │ │ │ ├── ovqt_plugin_zone_painter.xml │ │ │ │ ├── painter_dock_widget.cpp │ │ │ │ ├── painter_dock_widget.h │ │ │ │ ├── painter_dock_widget.ui │ │ │ │ ├── qnel_widget.cpp │ │ │ │ ├── qnel_widget.h │ │ │ │ ├── zone_painter.qrc │ │ │ │ ├── zone_painter_main_window.cpp │ │ │ │ ├── zone_painter_main_window.h │ │ │ │ ├── zone_painter_main_window.ui │ │ │ │ ├── zone_painter_model.cpp │ │ │ │ ├── zone_painter_model.h │ │ │ │ ├── zone_painter_plugin.cpp │ │ │ │ ├── zone_painter_plugin.h │ │ │ │ ├── zone_painter_settings_page.cpp │ │ │ │ ├── zone_painter_settings_page.h │ │ │ │ └── zone_painter_settings_page.ui │ │ │ └── translations │ │ │ ├── object_viewer_qt_de.ts │ │ │ ├── object_viewer_qt_en.ts │ │ │ ├── object_viewer_qt_fr.ts │ │ │ ├── object_viewer_qt_ru.ts │ │ │ └── translations.qrc │ ├── object_viewer_widget │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── entity.cpp │ │ │ ├── entity.h │ │ │ ├── interfaces.h │ │ │ ├── object_viewer_widget.cpp │ │ │ ├── object_viewer_widget.h │ │ │ ├── stdpch.cpp │ │ │ └── stdpch.h │ ├── panoply_maker │ │ ├── CMakeLists.txt │ │ ├── color_mask.h │ │ ├── color_modifier.cpp │ │ ├── color_modifier.h │ │ ├── hls_bank_texture_info.cpp │ │ ├── hls_bank_texture_info.h │ │ ├── panoply.cfg │ │ └── panoply_maker.cpp │ ├── plugin_max │ │ ├── CMakeLists.txt │ │ ├── compilation_notes.txt │ │ ├── compilation_notes_vc7.txt │ │ ├── install_plugin_max.txt │ │ ├── macroscripts │ │ │ ├── nel_mirror_weights.mcr │ │ │ ├── nel_node_properties.mcr │ │ │ └── nel_xref_building.mcr │ │ ├── max_animation_support.txt │ │ ├── max_light_support.txt │ │ ├── max_lightmap_support.txt │ │ ├── max_material_support.txt │ │ ├── max_skinning_support.txt │ │ ├── nel_3dsmax_shared │ │ │ ├── CMakeLists.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── nel_3dsmax_shared.cpp │ │ │ └── nel_3dsmax_shared.h │ │ ├── nel_export │ │ │ ├── CMakeLists.txt │ │ │ ├── DllEntry.cpp │ │ │ ├── last_lightmap.cpp │ │ │ ├── nel_export.cpp │ │ │ ├── nel_export.def │ │ │ ├── nel_export.h │ │ │ ├── nel_export.rc │ │ │ ├── nel_export_collision.cpp │ │ │ ├── nel_export_export.cpp │ │ │ ├── nel_export_filetools.cpp │ │ │ ├── nel_export_lightmap_v1.cpp │ │ │ ├── nel_export_lightmap_v2.cpp │ │ │ ├── nel_export_node_properties.cpp │ │ │ ├── nel_export_scene.cpp │ │ │ ├── nel_export_scene.h │ │ │ ├── nel_export_script.cpp │ │ │ ├── nel_export_swt.cpp │ │ │ ├── nel_export_view.cpp │ │ │ ├── nel_export_zone.cpp │ │ │ ├── progress.cpp │ │ │ ├── progress.h │ │ │ ├── resource.h │ │ │ ├── std_afx.cpp │ │ │ ├── std_afx.h │ │ │ └── version.ver │ │ ├── nel_mesh_lib │ │ │ ├── CMakeLists.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── calc_lm.cpp │ │ │ ├── calc_lm.h │ │ │ ├── calc_lm_plane.cpp │ │ │ ├── calc_lm_plane.h │ │ │ ├── calc_lm_rad.cpp │ │ │ ├── calc_lm_rt.cpp │ │ │ ├── calc_lm_rt.h │ │ │ ├── export_anim.cpp │ │ │ ├── export_appdata.h │ │ │ ├── export_collision.cpp │ │ │ ├── export_flare.cpp │ │ │ ├── export_light.cpp │ │ │ ├── export_lod_character.cpp │ │ │ ├── export_material.cpp │ │ │ ├── export_mesh.cpp │ │ │ ├── export_mesh_interface.cpp │ │ │ ├── export_misc.cpp │ │ │ ├── export_nel.h │ │ │ ├── export_particle_system.cpp │ │ │ ├── export_radial_normal.cpp │ │ │ ├── export_radial_normal.h │ │ │ ├── export_remanence.cpp │ │ │ ├── export_scene.cpp │ │ │ ├── export_script.cpp │ │ │ ├── export_skinning.cpp │ │ │ └── export_vegetable.cpp │ │ ├── nel_patch_converter │ │ │ ├── CMakeLists.txt │ │ │ ├── DllEntry.cpp │ │ │ ├── PO2RPO.h │ │ │ ├── nel_patch_converter.cpp │ │ │ ├── nel_patch_converter.def │ │ │ ├── nel_patch_converter.h │ │ │ ├── nel_patch_converter.rc │ │ │ ├── resource.h │ │ │ ├── rykolscript.txt │ │ │ ├── script.cpp │ │ │ └── version.ver │ │ ├── nel_patch_edit │ │ │ ├── CMakeLists.txt │ │ │ ├── addvertc.cur │ │ │ ├── attach.cur │ │ │ ├── bevel.cur │ │ │ ├── bin00001.tga │ │ │ ├── bmp00001.bmp │ │ │ ├── bmp00002.bmp │ │ │ ├── bmp00003.bmp │ │ │ ├── booleant.bmp │ │ │ ├── boolinte.cur │ │ │ ├── boolsubt.cur │ │ │ ├── boolunio.cur │ │ │ ├── bulbmask.bmp │ │ │ ├── bulbs.bmp │ │ │ ├── chamfer.cur │ │ │ ├── crosshr.cur │ │ │ ├── crossins.cur │ │ │ ├── cur00001.cur │ │ │ ├── cur00002.cur │ │ │ ├── cursor1.cur │ │ │ ├── echamfer.cur │ │ │ ├── editpat.h │ │ │ ├── extrudec.cur │ │ │ ├── faceselt.bmp │ │ │ ├── fillet.cur │ │ │ ├── icon1.ico │ │ │ ├── icon2.ico │ │ │ ├── icon3.ico │ │ │ ├── large.cpp │ │ │ ├── large.tga │ │ │ ├── light.cpp │ │ │ ├── light.tga │ │ │ ├── magnify.cur │ │ │ ├── mask_boo.bmp │ │ │ ├── mask_fac.bmp │ │ │ ├── mask_unw.bmp │ │ │ ├── medium.cpp │ │ │ ├── medium.tga │ │ │ ├── mods.h │ │ │ ├── mods.rc │ │ │ ├── modsres.h │ │ │ ├── move_x.cur │ │ │ ├── move_y.cur │ │ │ ├── nel_patch_edit.def │ │ │ ├── np.cpp │ │ │ ├── np_edit_patch_data.cpp │ │ │ ├── np_edit_patch_mod.cpp │ │ │ ├── np_editpops.cpp │ │ │ ├── np_ep_vert_mapper.cpp │ │ │ ├── np_epm_add_patches.cpp │ │ │ ├── np_epm_attach.cpp │ │ │ ├── np_epm_bevel.cpp │ │ │ ├── np_epm_del.cpp │ │ │ ├── np_epm_detach.cpp │ │ │ ├── np_epm_extrude.cpp │ │ │ ├── np_epm_file.cpp │ │ │ ├── np_epm_gui.cpp │ │ │ ├── np_epm_hide.cpp │ │ │ ├── np_epm_hook.cpp │ │ │ ├── np_epm_material.cpp │ │ │ ├── np_epm_remember.cpp │ │ │ ├── np_epm_selection.cpp │ │ │ ├── np_epm_subdivide.cpp │ │ │ ├── np_epm_surface.cpp │ │ │ ├── np_epm_tess.cpp │ │ │ ├── np_gui_bind.cpp │ │ │ ├── np_main.cpp │ │ │ ├── np_mods.cpp │ │ │ ├── np_patch_point_tab.cpp │ │ │ ├── np_patch_restore.cpp │ │ │ ├── np_patch_sel_restore.cpp │ │ │ ├── np_patch_vertex_delta.cpp │ │ │ ├── np_pick_patch_attach.cpp │ │ │ ├── np_record.cpp │ │ │ ├── np_rollup.cpp │ │ │ ├── outline.cur │ │ │ ├── panhand.cur │ │ │ ├── patselm.bmp │ │ │ ├── patselt.bmp │ │ │ ├── pick_color.cur │ │ │ ├── region.cur │ │ │ ├── scale_x.cur │ │ │ ├── scale_y.cur │ │ │ ├── segbreak.cur │ │ │ ├── segrefin.cur │ │ │ ├── selmask.bmp │ │ │ ├── splinese.bmp │ │ │ ├── splselm.bmp │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── thselcur.cur │ │ │ ├── trim.cur │ │ │ ├── unwrap_option.bmp │ │ │ ├── unwrap_option_mask.bmp │ │ │ ├── unwrap_transform.bmp │ │ │ ├── unwrap_transform_mask.bmp │ │ │ ├── unwrap_verts.bmp │ │ │ ├── unwrap_verts_mask.bmp │ │ │ ├── unwrap_view.bmp │ │ │ ├── unwrap_view_mask.bmp │ │ │ ├── unwrapto.bmp │ │ │ ├── vchamfer.cur │ │ │ ├── vertconn.cur │ │ │ ├── vinsert.cur │ │ │ └── weld.cur │ │ ├── nel_patch_edit_adv │ │ │ ├── Bevel.cur │ │ │ ├── CMakeLists.txt │ │ │ ├── CROSSHR.CUR │ │ │ ├── NP.cpp │ │ │ ├── NP_EPM_AddPatches.cpp │ │ │ ├── NP_EPM_Attach.cpp │ │ │ ├── NP_EPM_Bevel.cpp │ │ │ ├── NP_EPM_Del.cpp │ │ │ ├── NP_EPM_Detach.cpp │ │ │ ├── NP_EPM_Extrude.cpp │ │ │ ├── NP_EPM_File.cpp │ │ │ ├── NP_EPM_GUI.cpp │ │ │ ├── NP_EPM_Hide.cpp │ │ │ ├── NP_EPM_Hook.cpp │ │ │ ├── NP_EPM_Material.cpp │ │ │ ├── NP_EPM_Remember.cpp │ │ │ ├── NP_EPM_Selection.cpp │ │ │ ├── NP_EPM_Subdivide.cpp │ │ │ ├── NP_EPM_Surface.cpp │ │ │ ├── NP_EPM_Tess.cpp │ │ │ ├── NP_EPVertMapper.cpp │ │ │ ├── NP_EditPatchData.cpp │ │ │ ├── NP_EditPatchMod.cpp │ │ │ ├── NP_GUI_Bind.cpp │ │ │ ├── NP_Main.cpp │ │ │ ├── NP_PatchPointTab.cpp │ │ │ ├── NP_PatchRestore.cpp │ │ │ ├── NP_PatchSelRestore.cpp │ │ │ ├── NP_PatchVertexDelta.cpp │ │ │ ├── NP_PickPatchAttach.cpp │ │ │ ├── NP_Record.cpp │ │ │ ├── NP_Rollup.cpp │ │ │ ├── NP_editpops.cpp │ │ │ ├── NP_mods.cpp │ │ │ ├── Trim.cur │ │ │ ├── addvertc.cur │ │ │ ├── attach.cur │ │ │ ├── bin00001.tga │ │ │ ├── bmp00001.bmp │ │ │ ├── bmp00002.bmp │ │ │ ├── bmp00003.bmp │ │ │ ├── booleant.bmp │ │ │ ├── boolinte.cur │ │ │ ├── boolsubt.cur │ │ │ ├── boolunio.cur │ │ │ ├── bulbmask.bmp │ │ │ ├── bulbs.bmp │ │ │ ├── chamfer.cur │ │ │ ├── crossins.cur │ │ │ ├── cur00001.cur │ │ │ ├── cur00002.cur │ │ │ ├── cursor1.cur │ │ │ ├── echamfer.cur │ │ │ ├── editpat.h │ │ │ ├── extrudec.cur │ │ │ ├── faceselt.bmp │ │ │ ├── fillet.cur │ │ │ ├── icon1.ico │ │ │ ├── icon2.ico │ │ │ ├── icon3.ico │ │ │ ├── keys.cfg │ │ │ ├── large.cpp │ │ │ ├── large.tga │ │ │ ├── light.cpp │ │ │ ├── light.tga │ │ │ ├── magnify.cur │ │ │ ├── mask_boo.bmp │ │ │ ├── mask_fac.bmp │ │ │ ├── mask_unw.bmp │ │ │ ├── medium.cpp │ │ │ ├── medium.tga │ │ │ ├── mods.def │ │ │ ├── mods.h │ │ │ ├── mods.rc │ │ │ ├── modsres.h │ │ │ ├── move_x.cur │ │ │ ├── move_y.cur │ │ │ ├── outline.cur │ │ │ ├── panhand.cur │ │ │ ├── patselm.bmp │ │ │ ├── patselt.bmp │ │ │ ├── pick_color.cur │ │ │ ├── region.cur │ │ │ ├── scale_x.cur │ │ │ ├── scale_y.cur │ │ │ ├── segbreak.cur │ │ │ ├── segrefin.cur │ │ │ ├── selmask.bmp │ │ │ ├── splinese.bmp │ │ │ ├── splselm.bmp │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── thselcur.cur │ │ │ ├── unwrap_option.bmp │ │ │ ├── unwrap_option_mask.bmp │ │ │ ├── unwrap_transform.bmp │ │ │ ├── unwrap_transform_mask.bmp │ │ │ ├── unwrap_verts.bmp │ │ │ ├── unwrap_verts_mask.bmp │ │ │ ├── unwrap_view.bmp │ │ │ ├── unwrap_view_mask.bmp │ │ │ ├── unwrapto.bmp │ │ │ ├── user_guide.txt │ │ │ ├── vchamfer.cur │ │ │ ├── version.ver │ │ │ ├── vertconn.cur │ │ │ ├── vinsert.cur │ │ │ └── weld.cur │ │ ├── nel_patch_lib │ │ │ ├── CMakeLists.txt │ │ │ ├── nel_patch_mesh.cpp │ │ │ ├── nel_patch_mesh.h │ │ │ ├── path_mesh_alloc.cpp │ │ │ ├── path_mesh_alloc.h │ │ │ ├── rpo.cpp │ │ │ ├── rpo.h │ │ │ ├── rpo2nel.cpp │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── vertex_neighborhood.cpp │ │ │ └── vertex_neighborhood.h │ │ ├── nel_patch_paint │ │ │ ├── CMakeLists.txt │ │ │ ├── DllEntry.cpp │ │ │ ├── DllEntry.h │ │ │ ├── _0.cpp │ │ │ ├── _0.tga │ │ │ ├── _1.cpp │ │ │ ├── _1.tga │ │ │ ├── _10.cpp │ │ │ ├── _10.tga │ │ │ ├── _11.cpp │ │ │ ├── _11.tga │ │ │ ├── _128.cpp │ │ │ ├── _128.tga │ │ │ ├── _2.cpp │ │ │ ├── _2.tga │ │ │ ├── _256.cpp │ │ │ ├── _256.tga │ │ │ ├── _3.cpp │ │ │ ├── _3.tga │ │ │ ├── _4.cpp │ │ │ ├── _4.tga │ │ │ ├── _5.cpp │ │ │ ├── _5.tga │ │ │ ├── _6.cpp │ │ │ ├── _6.tga │ │ │ ├── _7.cpp │ │ │ ├── _7.tga │ │ │ ├── _8.cpp │ │ │ ├── _8.tga │ │ │ ├── _9.cpp │ │ │ ├── _9.tga │ │ │ ├── _small.cpp │ │ │ ├── _small.tga │ │ │ ├── all.cpp │ │ │ ├── all.tga │ │ │ ├── cur00001.cur │ │ │ ├── cursor1.cur │ │ │ ├── goofy.cpp │ │ │ ├── goofy.tga │ │ │ ├── keys.cfg │ │ │ ├── large.cpp │ │ │ ├── large.tga │ │ │ ├── light.cpp │ │ │ ├── light.tga │ │ │ ├── lock.cpp │ │ │ ├── lock.tga │ │ │ ├── medium.cpp │ │ │ ├── medium.tga │ │ │ ├── nel_paint.cpp │ │ │ ├── nel_patch_paint.cpp │ │ │ ├── nel_patch_paint.def │ │ │ ├── nel_patch_paint.h │ │ │ ├── nel_patch_paint.rc │ │ │ ├── nothing.cpp │ │ │ ├── nothing.tga │ │ │ ├── oriented.cpp │ │ │ ├── oriented.tga │ │ │ ├── paint.cpp │ │ │ ├── paint_data.cpp │ │ │ ├── paint_file.cpp │ │ │ ├── paint_fill.cpp │ │ │ ├── paint_fill.h │ │ │ ├── paint_light.cpp │ │ │ ├── paint_light.h │ │ │ ├── paint_main.cpp │ │ │ ├── paint_mod.cpp │ │ │ ├── paint_pops.cpp │ │ │ ├── paint_record.cpp │ │ │ ├── paint_restore.cpp │ │ │ ├── paint_rollup.cpp │ │ │ ├── paint_tileset.cpp │ │ │ ├── paint_tileset.h │ │ │ ├── paint_to_nel.cpp │ │ │ ├── paint_to_nel.h │ │ │ ├── paint_ui.cpp │ │ │ ├── paint_ui.h │ │ │ ├── paint_undo.cpp │ │ │ ├── paint_undo.h │ │ │ ├── paint_vcolor.cpp │ │ │ ├── paint_vcolor.h │ │ │ ├── pick_col.cur │ │ │ ├── pick_color.cur │ │ │ ├── regular.cpp │ │ │ ├── regular.tga │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── user_guide.txt │ │ │ └── version.ver │ │ ├── nel_vertex_tree_paint │ │ │ ├── Buttons.bmp │ │ │ ├── CMakeLists.txt │ │ │ ├── Paint.cpp │ │ │ ├── buttonmask.bmp │ │ │ ├── dllmain.cpp │ │ │ ├── dropcurs.cur │ │ │ ├── paintcur.cur │ │ │ ├── resource.h │ │ │ ├── vertex_tree_paint.cpp │ │ │ ├── vertex_tree_paint.def │ │ │ ├── vertex_tree_paint.h │ │ │ └── vertex_tree_paint.rc │ │ ├── nel_water_material.txt │ │ ├── resolve_troubles.txt │ │ ├── scripts │ │ │ ├── db_cleaner.ms │ │ │ ├── db_erase_mesh.ms │ │ │ ├── db_shooter.ms │ │ │ ├── extrude_water.ms │ │ │ ├── nel_add_name_ref_scale.ms │ │ │ ├── nel_assets_png.ms │ │ │ ├── nel_assets_png_batched.ms │ │ │ ├── nel_assets_png_database.ms │ │ │ ├── nel_batched_mergesave.ms │ │ │ ├── nel_batched_script.ms │ │ │ ├── nel_copy_biped_figure_mode.ms │ │ │ ├── nel_create_matrix.ms │ │ │ ├── nel_mat_converter.ms │ │ │ ├── nel_mirror_weights.ms │ │ │ ├── nel_move_animation.ms │ │ │ ├── nel_node_properties.ms │ │ │ ├── nel_old_zone_to_ligo.ms │ │ │ ├── nel_rename.ms │ │ │ ├── nel_repair_xref.ms │ │ │ ├── nel_select.ms │ │ │ ├── nel_select_ig.ms │ │ │ ├── nel_utility.ms │ │ │ ├── nel_xref_building.ms │ │ │ ├── reload_textures.ms │ │ │ └── startup │ │ │ │ ├── nel_flare.ms │ │ │ │ ├── nel_light.ms │ │ │ │ ├── nel_material.ms │ │ │ │ ├── nel_material.ms.v1 │ │ │ │ ├── nel_material.ms.v11 │ │ │ │ ├── nel_material.ms.v2 │ │ │ │ ├── nel_material.ms.v3 │ │ │ │ ├── nel_material.ms.v5 │ │ │ │ ├── nel_multi_set.ms │ │ │ │ ├── nel_pacs_box.ms │ │ │ │ ├── nel_pacs_cylinder.ms │ │ │ │ ├── nel_ps.ms │ │ │ │ ├── nel_swt.ms │ │ │ │ └── nel_wave_maker.ms │ │ └── tile_utility │ │ │ ├── CMakeLists.txt │ │ │ ├── DllEntry.cpp │ │ │ ├── resource.h │ │ │ ├── rgbadd.cpp │ │ │ ├── tile_utility.cpp │ │ │ ├── tile_utility.def │ │ │ ├── tile_utility.h │ │ │ ├── tile_utility.rc │ │ │ └── version.ver │ ├── s3tc_compressor_lib │ │ ├── CMakeLists.txt │ │ ├── s3tc_compressor.cpp │ │ └── s3tc_compressor.h │ ├── shape2obj │ │ └── main.cpp │ ├── shapes_exporter │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── shapes_exporter.cfg │ │ ├── shapes_exporter.cpp │ │ └── shapes_exporter.h │ ├── tga_2_dds │ │ ├── CMakeLists.txt │ │ └── tga2dds.cpp │ ├── tga_cut │ │ ├── CMakeLists.txt │ │ └── tga_cut.cpp │ ├── tga_resize │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── tile_edit │ │ ├── Browse.cpp │ │ ├── Browse.h │ │ ├── CMakeLists.txt │ │ ├── DialogEditList.cpp │ │ ├── DialogEditList.h │ │ ├── DllEntry.cpp │ │ ├── GetVal.cpp │ │ ├── GetVal.h │ │ ├── PIC │ │ │ ├── PIC_System.cpp │ │ │ ├── Pic_BMP.cpp │ │ │ ├── Pic_JPG.cpp │ │ │ ├── Pic_Manage.cpp │ │ │ ├── Pic_TGA.cpp │ │ │ ├── pic.h │ │ │ ├── pic_private.h │ │ │ ├── readpic.cpp │ │ │ └── readpic.h │ │ ├── Popup.cpp │ │ ├── Popup.h │ │ ├── ReadMe.txt │ │ ├── SelectionTerritoire.cpp │ │ ├── SelectionTerritoire.h │ │ ├── TileCtrl.cpp │ │ ├── TileCtrl.h │ │ ├── TileList.cpp │ │ ├── TileList.h │ │ ├── TileView.cpp │ │ ├── TileView.h │ │ ├── View.cpp │ │ ├── View.h │ │ ├── ViewColumn.cpp │ │ ├── ViewColumn.h │ │ ├── choose_veget_set.cpp │ │ ├── choose_veget_set.h │ │ ├── cpu.cpp │ │ ├── cursor1.cur │ │ ├── custom.cpp │ │ ├── custom.h │ │ ├── nevraxpill.ico │ │ ├── resource.h │ │ ├── rot0.bmp │ │ ├── rot1.bmp │ │ ├── rot2.bmp │ │ ├── rot3.bmp │ │ ├── select_rotation.cpp │ │ ├── select_rotation.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── thread.h │ │ ├── thread_win32.cpp │ │ ├── thread_win32.h │ │ ├── tile32_32.bmp │ │ ├── tile_edit_exe.cpp │ │ ├── tile_edit_exe.h │ │ └── tile_edit_exe.rc │ ├── tile_edit_qt │ │ ├── CMakeLists.txt │ │ ├── add_tile.png │ │ ├── browser_model.cpp │ │ ├── browser_model.h │ │ ├── delete_image.png │ │ ├── delete_tile.png │ │ ├── down.png │ │ ├── empty_image.png │ │ ├── items_edit_dlg.cpp │ │ ├── items_edit_dlg.h │ │ ├── items_edit_qt.ui │ │ ├── left.png │ │ ├── main.cpp │ │ ├── nel.png │ │ ├── pic │ │ │ ├── PIC_System.c │ │ │ ├── Pic_BMP.c │ │ │ ├── Pic_JPG.c │ │ │ ├── Pic_Manage.c │ │ │ ├── Pic_TGA.c │ │ │ ├── pic.h │ │ │ ├── pic_private.h │ │ │ ├── readpic.cpp │ │ │ └── readpic.h │ │ ├── replace_image.png │ │ ├── reset.png │ │ ├── right.png │ │ ├── rotation0.png │ │ ├── rotation180.png │ │ ├── rotation270.png │ │ ├── rotation90.png │ │ ├── tile_browser_dlg.cpp │ │ ├── tile_browser_dlg.h │ │ ├── tile_browser_qt.ui │ │ ├── tile_edit_dlg.cpp │ │ ├── tile_edit_dlg.h │ │ ├── tile_edit_qt.qrc │ │ ├── tile_edit_qt.ui │ │ ├── tile_listwidgetitem.cpp │ │ ├── tile_listwidgetitem.h │ │ ├── tile_rotation_dlg.cpp │ │ ├── tile_rotation_dlg.h │ │ ├── tile_rotation_qt.ui │ │ ├── tile_widget.cpp │ │ ├── tile_widget.h │ │ ├── tile_widget_qt.ui │ │ ├── tiles_model.cpp │ │ ├── tiles_model.h │ │ └── up.png │ ├── zone_check_bind │ │ ├── CMakeLists.txt │ │ ├── zone_check_bind.cpp │ │ ├── zone_utility.cpp │ │ └── zone_utility.h │ ├── zone_dependencies │ │ ├── CMakeLists.txt │ │ └── zone_dependencies.cpp │ ├── zone_dump │ │ ├── CMakeLists.txt │ │ └── zone_dump.cpp │ ├── zone_ig_lighter │ │ ├── CMakeLists.txt │ │ └── zone_ig_lighter.cpp │ ├── zone_lib │ │ ├── zone_utility.cpp │ │ └── zone_utility.h │ ├── zone_lighter │ │ ├── CMakeLists.txt │ │ ├── zone_lighter.cfg │ │ └── zone_lighter.cpp │ ├── zone_welder │ │ ├── CMakeLists.txt │ │ ├── internal_weld.cpp │ │ ├── zone_welder.cpp │ │ └── zwelder.cfg │ └── zviewer │ │ ├── CMakeLists.txt │ │ ├── heightmap.tga │ │ ├── move_listener.cpp │ │ ├── move_listener.h │ │ ├── nevraxpill.ico │ │ ├── readme.txt │ │ ├── resource.h │ │ ├── zviewer.cfg │ │ ├── zviewer.cpp │ │ └── zviewer.rc │ ├── CMakeLists.txt │ ├── build_gamedata │ ├── 0_setup.py │ ├── 1_export.py │ ├── 2_build.py │ ├── 3_install.py │ ├── 4_data_shard.py │ ├── 5_client_dev.py │ ├── 6_client_patch.py │ ├── 7_client_install.py │ ├── 8_upload.py │ ├── configuration │ │ ├── scripts.py │ │ └── tools.py │ ├── export_build_install.py │ ├── generators │ │ ├── ecosystem_project_template │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── generate_all.py │ │ ├── generate_ecosystem_projects.py │ │ ├── generate_simple_max_exporters.py │ │ ├── generate_tagged_max_exporters.py │ │ ├── max_exporter_scripts │ │ │ ├── anim.ms │ │ │ ├── anim.py │ │ │ ├── clod.ms │ │ │ ├── clod.py │ │ │ ├── cmb.ms │ │ │ ├── cmb.py │ │ │ ├── ig.ms │ │ │ ├── pacs_prim.ms │ │ │ ├── pacs_prim.py │ │ │ ├── shape.ms │ │ │ ├── skel.ms │ │ │ ├── skel.py │ │ │ ├── swt.ms │ │ │ ├── swt.py │ │ │ ├── veget.ms │ │ │ ├── veget.py │ │ │ ├── zone.ms │ │ │ └── zone.py │ │ ├── simple_max_exporter_template │ │ │ ├── 0_setup.py │ │ │ ├── 1_export_footer.py │ │ │ ├── 1_export_header.py │ │ │ ├── 2_build.py │ │ │ ├── 3_install.py │ │ │ ├── export_footer.ms │ │ │ └── export_header.ms │ │ └── tagged_max_exporter_template │ │ │ ├── 0_setup.py │ │ │ ├── 1_export_footer.py │ │ │ ├── 1_export_header.py │ │ │ ├── 2_build.py │ │ │ ├── 3_install.py │ │ │ ├── export_footer.ms │ │ │ └── export_header.ms │ ├── install_client_dev.py │ ├── install_data_shard.py │ ├── interface_dev.bat │ ├── leveldesign_dev.bat │ └── processes │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ ├── 3_install.py │ │ ├── _dummy │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── ai_wmap │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── anim │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ ├── 3_install.py │ │ └── maxscript │ │ │ └── anim_export.ms │ │ ├── cegui │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── clodbank │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ ├── 3_install.py │ │ └── maxscript │ │ │ └── clod_export.ms │ │ ├── copy │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── displace │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── farbank │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── font │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── ig │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ ├── 3_install.py │ │ └── maxscript │ │ │ └── ig_export.ms │ │ ├── ig_light │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── interface │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── ligo │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ ├── 3_install.py │ │ └── maxscript │ │ │ └── nel_ligo_export.ms │ │ ├── map │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── pacs_prim │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ ├── 3_install.py │ │ └── maxscript │ │ │ └── pacs_prim_export.ms │ │ ├── pacs_prim_list │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── properties │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── ps │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── rbank │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ ├── 3_install.py │ │ └── maxscript │ │ │ └── cmb_export.ms │ │ ├── shape │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ ├── 3_install.py │ │ └── maxscript │ │ │ └── shape_export.ms │ │ ├── sheet_id │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── sheets │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── skel │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ ├── 3_install.py │ │ └── maxscript │ │ │ └── skel_export.ms │ │ ├── smallbank │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── sound │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── swt │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ ├── 3_install.py │ │ └── maxscript │ │ │ └── swt_export.ms │ │ ├── tiles │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── veget │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ ├── 3_install.py │ │ └── maxscript │ │ │ └── veget_export.ms │ │ ├── vegetset │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ └── 3_install.py │ │ ├── zone │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ ├── 3_install.py │ │ ├── maxscript │ │ │ └── zone_export.ms │ │ ├── todo_build_dependencies │ │ └── todo_export_maxscript │ │ └── zone_light │ │ ├── 0_setup.py │ │ ├── 1_export.py │ │ ├── 2_build.py │ │ ├── 3_install.py │ │ └── todo_patch_tile_water │ ├── georges │ ├── CMakeLists.txt │ └── georges2csv │ │ ├── CMakeLists.txt │ │ ├── georges2csv.cpp │ │ └── test.script │ ├── logic │ ├── CMakeLists.txt │ ├── logic_editor_dll │ │ ├── CMakeLists.txt │ │ ├── ChildFrm.cpp │ │ ├── ChildFrm.h │ │ ├── Condition.cpp │ │ ├── Condition.h │ │ ├── ConditionPage.cpp │ │ ├── ConditionPage.h │ │ ├── ConditionsView.cpp │ │ ├── ConditionsView.h │ │ ├── Counter.cpp │ │ ├── Counter.h │ │ ├── CounterPage.cpp │ │ ├── CounterPage.h │ │ ├── EditorFormView.cpp │ │ ├── EditorFormView.h │ │ ├── EditorPropertySheet.cpp │ │ ├── EditorPropertySheet.h │ │ ├── LogicTreeView.cpp │ │ ├── LogicTreeView.h │ │ ├── MainFrm.cpp │ │ ├── MainFrm.h │ │ ├── NumEdit.cpp │ │ ├── NumEdit.h │ │ ├── ResizablePage.cpp │ │ ├── ResizablePage.h │ │ ├── ResizableSheet.cpp │ │ ├── ResizableSheet.h │ │ ├── State.cpp │ │ ├── State.h │ │ ├── StatePage.cpp │ │ ├── StatePage.h │ │ ├── StatesView.cpp │ │ ├── StatesView.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── TMenu.cpp │ │ ├── TMenu.h │ │ ├── VariablePage.cpp │ │ ├── VariablePage.h │ │ ├── logic_editor.cpp │ │ ├── logic_editor.h │ │ ├── logic_editor.rc │ │ ├── logic_editorDoc.cpp │ │ ├── logic_editorDoc.h │ │ ├── logic_editorView.cpp │ │ ├── logic_editorView.h │ │ ├── logic_editor_debug.def │ │ ├── logic_editor_debug_fast.def │ │ ├── logic_editor_interface.h │ │ ├── logic_editor_release.def │ │ ├── logic_editor_release_debug.def │ │ ├── res │ │ │ ├── Toolbar.bmp │ │ │ ├── logic_editor.ico │ │ │ ├── logic_editor.rc2 │ │ │ └── logic_editorDoc.ico │ │ └── resource.h │ └── logic_editor_exe │ │ ├── CMakeLists.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ └── logic_editor_exe.cpp │ ├── memory │ ├── CMakeLists.txt │ └── memlog │ │ ├── CMakeLists.txt │ │ └── memlog.cpp │ ├── misc │ ├── CMakeLists.txt │ ├── bnp_make │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── branch_patcher │ │ ├── CMakeLists.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── branch_patcher.cpp │ │ ├── branch_patcher.h │ │ ├── branch_patcher.rc │ │ ├── branch_patcherDlg.cpp │ │ ├── branch_patcherDlg.h │ │ ├── branch_patcher_install.reg │ │ ├── res │ │ │ ├── branch_patcher.rc2 │ │ │ └── nevrax_pill_3d_rgba.ico │ │ └── resource.h │ ├── data_mirror │ │ ├── CMakeLists.txt │ │ ├── Resource.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── config.cfg │ │ ├── data_mirror.cpp │ │ ├── data_mirror.h │ │ ├── data_mirror.rc │ │ ├── data_mirrorDlg.cpp │ │ ├── data_mirrorDlg.h │ │ ├── my_list_ctrl.cpp │ │ ├── my_list_ctrl.h │ │ ├── progress_dialog.cpp │ │ ├── progress_dialog.h │ │ └── res │ │ │ ├── data_mirror.ico │ │ │ └── data_mirror.rc2 │ ├── disp_sheet_id │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── exec_timeout │ │ ├── CMakeLists.txt │ │ └── exec_timeout.cpp │ ├── extract_filename │ │ ├── CMakeLists.txt │ │ └── extract_filename.cpp │ ├── lock │ │ ├── CMakeLists.txt │ │ └── lock.cpp │ ├── log_analyser │ │ ├── CMakeLists.txt │ │ ├── FilterDialog.cpp │ │ ├── FilterDialog.h │ │ ├── LogSessions.cpp │ │ ├── LogSessions.h │ │ ├── PlugInSelector.cpp │ │ ├── PlugInSelector.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── ViewDialog.cpp │ │ ├── ViewDialog.h │ │ ├── log_analyser.cpp │ │ ├── log_analyser.h │ │ ├── log_analyser.rc │ │ ├── log_analyserDlg.cpp │ │ ├── log_analyserDlg.h │ │ ├── res │ │ │ ├── log_analyser.ico │ │ │ └── log_analyser.rc2 │ │ └── resource.h │ ├── log_analyser_plug_ins │ │ ├── CMakeLists.txt │ │ └── extract_warnings │ │ │ ├── CMakeLists.txt │ │ │ ├── extract_warnings.cpp │ │ │ ├── extract_warnings.def │ │ │ └── extract_warnings.h │ ├── make_sheet_id │ │ ├── CMakeLists.txt │ │ ├── make_sheet_id.cfg │ │ └── make_sheet_id.cpp │ ├── message_box │ │ ├── CMakeLists.txt │ │ ├── message_box.cpp │ │ └── message_box.h │ ├── message_box_qt │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── multi_cd_setup_fix │ │ ├── CMakeLists.txt │ │ ├── multi_cd_setup_fix.cpp │ │ ├── multi_cd_setup_fix.rc │ │ ├── resource.h │ │ └── setup.ico │ ├── probe_timers │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── words_dic │ │ ├── CMakeLists.txt │ │ ├── DicSplashScreen.cpp │ │ ├── DicSplashScreen.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── res │ │ │ ├── words_dic.ico │ │ │ └── words_dic.rc2 │ │ ├── resource.h │ │ ├── words_dic.cfg │ │ ├── words_dic.cpp │ │ ├── words_dic.h │ │ ├── words_dic.rc │ │ ├── words_dicDlg.cpp │ │ └── words_dicDlg.h │ ├── words_dic_qt │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── nel.png │ │ ├── resource.h │ │ ├── words_dic.cfg │ │ ├── words_dic.ico │ │ ├── words_dic.rc │ │ ├── words_dicDlg.cpp │ │ ├── words_dicDlg.h │ │ ├── words_dic_Qt.qrc │ │ └── words_dic_Qt.ui │ └── xml_packer │ │ ├── CMakeLists.txt │ │ └── xml_packer.cpp │ ├── nel_unit_test │ ├── CMakeLists.txt │ ├── __copy_file_dst.foo │ ├── __ligo_class.xml │ ├── __test_prim.primitive │ ├── debug_cfg_with_error_main.cfg │ ├── nel_unit_test.cpp │ ├── nel_unit_test.exp │ ├── result.html │ ├── run_test.bat │ ├── ut_ligo.h │ ├── ut_ligo_primitive.h │ ├── ut_misc.h │ ├── ut_misc_co_task.h │ ├── ut_misc_command.h │ ├── ut_misc_config_file.h │ ├── ut_misc_debug.h │ ├── ut_misc_dynlibload.h │ ├── ut_misc_file.h │ ├── ut_misc_files │ │ ├── cfg_with_bad_test.cfg │ │ ├── cfg_with_define.cfg │ │ ├── cfg_with_error.cfg │ │ ├── cfg_with_error_main.cfg │ │ ├── cfg_with_include.cfg │ │ ├── cfg_with_include_and_optional.cfg │ │ ├── cfg_with_optional.cfg │ │ ├── file1_in_bnp.txt │ │ ├── file2_in_bnp.txt │ │ ├── files.bnp │ │ ├── files.xml_pack │ │ ├── files_for_xml_subpack │ │ │ ├── same_subfolder_1 │ │ │ │ └── samename │ │ │ │ │ ├── .xml_pack_index │ │ │ │ │ ├── file1_in_sub_1.xml │ │ │ │ │ ├── file2_in_sub_1.xml │ │ │ │ │ └── samename.xml_pack │ │ │ └── same_subfolder_2 │ │ │ │ └── samename │ │ │ │ ├── .xml_pack_index │ │ │ │ ├── file1_in_sub_2.xml │ │ │ │ ├── file2_in_sub_2.xml │ │ │ │ └── samename.xml_pack │ │ ├── included_cfg.cfg │ │ └── xml_files │ │ │ ├── file1_in_xml_pack.xml │ │ │ ├── file2_in_xml_pack.xml │ │ │ ├── same_subfolder_1 │ │ │ └── samename │ │ │ │ └── samename.xml_pack │ │ │ ├── same_subfolder_2 │ │ │ └── samename │ │ │ │ └── samename.xml_pack │ │ │ └── xml_files.xml_pack │ ├── ut_misc_pack_file.h │ ├── ut_misc_singleton.h │ ├── ut_misc_sstring.h │ ├── ut_misc_stream.h │ ├── ut_misc_string_common.h │ ├── ut_misc_types.h │ ├── ut_misc_variable.h │ ├── ut_net.h │ ├── ut_net_layer3.h │ ├── ut_net_message.h │ └── ut_net_module.h │ ├── pacs │ ├── CMakeLists.txt │ ├── build_ig_boxes │ │ ├── CMakeLists.txt │ │ ├── build_ig_boxes.cfg │ │ └── main.cpp │ ├── build_indoor_rbank │ │ ├── CMakeLists.txt │ │ ├── build_indoor_rbank.cfg │ │ ├── build_surfaces.cpp │ │ ├── build_surfaces.h │ │ ├── main.cpp │ │ ├── mouline.cpp │ │ └── mouline.h │ └── build_rbank │ │ ├── CMakeLists.txt │ │ ├── build_rbank.cfg │ │ ├── build_rbank.cpp │ │ ├── build_rbank.h │ │ ├── build_surf.cpp │ │ ├── build_surf.h │ │ ├── main.cpp │ │ ├── prim_checker.cpp │ │ ├── prim_checker.h │ │ ├── surface_splitter.cpp │ │ └── surface_splitter.h │ └── sound │ ├── CMakeLists.txt │ ├── build_samplebank │ ├── CMakeLists.txt │ ├── build_samplebank.cpp │ ├── build_samplebank_readme.txt │ └── build_samplebank_script.bat │ ├── build_sound │ ├── CMakeLists.txt │ ├── build_sound.cpp │ ├── build_sound_readme.txt │ └── build_sound_script.bat │ ├── build_soundbank │ ├── CMakeLists.txt │ ├── build_soundbank.cpp │ ├── build_soundbank_readme.txt │ └── build_soundbank_script.bat │ └── source_sounds_builder │ ├── SoundPage.cpp │ ├── SoundPage.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── file_dialog.cpp │ ├── file_dialog.h │ ├── resource.h │ ├── source_sounds_builder.cpp │ ├── source_sounds_builder.h │ ├── source_sounds_builder.rc │ ├── source_sounds_builderDlg.cpp │ └── source_sounds_builderDlg.h ├── nelDashBuild.cmd ├── nelDashBuild.sh ├── nelns ├── AUTHORS ├── CMakeLists.txt ├── CMakePackaging.txt ├── COPYING ├── ChangeLog ├── INSTALL ├── NEWS ├── README ├── admin │ ├── config.php │ └── public_html │ │ ├── admin.php │ │ ├── authenticate.php │ │ ├── backup_interface.php │ │ ├── commands.php │ │ ├── custom_view.php │ │ ├── disp_vars.php │ │ ├── display_view.php │ │ ├── foo.php │ │ ├── help.php │ │ ├── html_headers.php │ │ ├── index.php │ │ ├── init.php │ │ ├── las_connection.php │ │ ├── las_interface.php │ │ ├── login_form.php │ │ ├── nel.gif │ │ ├── player_locator.php │ │ ├── prefs.php │ │ ├── request_interface.php │ │ ├── session_auth.php │ │ ├── sql_connection.php │ │ └── update_daily.php ├── admin_executor_service │ ├── CMakeLists.txt │ ├── admin_executor_service.cfg │ ├── admin_executor_service.cpp │ ├── common.cfg │ ├── log_report.cpp │ └── log_report.h ├── admin_service │ ├── CMakeLists.txt │ ├── admin_service.cfg │ ├── admin_service.cpp │ ├── admin_service.h │ ├── common.cfg │ ├── connection_web.cpp │ └── connection_web.h ├── login_service │ ├── CMakeLists.txt │ ├── common.cfg │ ├── connection_client.cpp │ ├── connection_client.h │ ├── connection_web.cpp │ ├── connection_web.h │ ├── connection_ws.cpp │ ├── connection_ws.h │ ├── login_service.cfg │ ├── login_service.cpp │ ├── login_service.h │ ├── mysql_helper.cpp │ └── mysql_helper.h ├── login_system │ ├── CMakeLists.txt │ ├── database │ │ ├── nel.sql │ │ └── nel_tool.sql │ ├── nel_launcher_qt │ │ ├── CMakeLists.txt │ │ ├── connection.cpp │ │ ├── connection.h │ │ ├── main.cpp │ │ ├── nel_launcher.cfg │ │ ├── nel_launcher_dlg.cpp │ │ ├── nel_launcher_dlg.h │ │ ├── nel_launcher_dlg.ui │ │ └── shard.h │ ├── nel_launcher_windows │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── nel_launcher.cfg │ │ ├── nel_launcher.clw │ │ ├── nel_launcher.cpp │ │ ├── nel_launcher.h │ │ ├── nel_launcher.rc │ │ ├── nel_launcherDlg.cpp │ │ ├── nel_launcherDlg.h │ │ ├── patch.cpp │ │ ├── patch.h │ │ ├── pleasewait.html │ │ ├── res │ │ │ ├── nel_launcher.ico │ │ │ └── nel_launcher.rc2 │ │ ├── resource.h │ │ ├── webbrowser2.cpp │ │ └── webbrowser2.h │ ├── nel_launcher_windows_ext │ │ ├── BarTabsWnd.cpp │ │ ├── BarTabsWnd.h │ │ ├── BarWnd.cpp │ │ ├── BarWnd.h │ │ ├── Configuration.cpp │ │ ├── Configuration.h │ │ ├── LoadingPageDlg.cpp │ │ ├── LoadingPageDlg.h │ │ ├── LoginDlg.cpp │ │ ├── LoginDlg.h │ │ ├── Md5.cpp │ │ ├── Md5.h │ │ ├── MsgDlg.cpp │ │ ├── MsgDlg.h │ │ ├── PictureHlp.cpp │ │ ├── PictureHlp.h │ │ ├── ProgressDlg.cpp │ │ ├── ProgressDlg.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── WebDlg.cpp │ │ ├── WebDlg.h │ │ ├── nel_launcher.cfg │ │ ├── nel_launcher.clw │ │ ├── nel_launcher.cpp │ │ ├── nel_launcher.h │ │ ├── nel_launcher.rc │ │ ├── nel_launcherDlg.cpp │ │ ├── nel_launcherDlg.h │ │ ├── patch.cpp │ │ ├── patch.h │ │ ├── res │ │ │ ├── background.jpg │ │ │ ├── barre_top.bmp │ │ │ ├── bg_login.jpg │ │ │ ├── bitmap1.bmp │ │ │ ├── bitmap2.bmp │ │ │ ├── bitmap3.bmp │ │ │ ├── bmp00001.bmp │ │ │ ├── bmp00002.bmp │ │ │ ├── bmp00003.bmp │ │ │ ├── btn_login_down.bmp │ │ │ ├── btn_login_up.bmp │ │ │ ├── btn_quit_down.bmp │ │ │ ├── btn_quit_up.bmp │ │ │ ├── cursor1.cur │ │ │ ├── nel_launcher.rc2 │ │ │ ├── progress.jpg │ │ │ ├── ryzom.ico │ │ │ ├── tab_news.jpg │ │ │ ├── tab_news_focus.jpg │ │ │ ├── tab_rn.jpg │ │ │ ├── tab_rn_focus.jpg │ │ │ ├── tab_servers.jpg │ │ │ └── tab_servers_focus.jpg │ │ ├── resource.h │ │ ├── webbrowser2.cpp │ │ └── webbrowser2.h │ ├── nel_launcher_windows_ext2 │ │ ├── CMakeLists.txt │ │ ├── connection.cpp │ │ ├── connection.h │ │ ├── nel_launcher.cfg │ │ ├── nel_launcher.cpp │ │ ├── nel_launcher.h │ │ ├── nel_launcher.rc │ │ ├── nel_launcher_dlg.cpp │ │ ├── nel_launcher_dlg.h │ │ ├── patch.cpp │ │ ├── patch.h │ │ ├── res │ │ │ ├── nel_launcher.ico │ │ │ └── nel_launcher.rc2 │ │ ├── resource.h │ │ ├── std_afx.cpp │ │ └── std_afx.h │ └── www │ │ ├── config.php │ │ └── public_html │ │ ├── index.php │ │ └── service_connection.php ├── naming_service │ ├── CMakeLists.txt │ ├── common.cfg │ ├── naming_service.cfg │ └── naming_service.cpp ├── resources │ ├── custom.ini │ ├── nel.bmp │ ├── nel.png │ └── nevraxpill.ico └── welcome_service │ ├── CMakeLists.txt │ ├── common.cfg │ ├── welcome_service.cfg │ ├── welcome_service.cpp │ ├── welcome_service.h │ ├── welcome_service_itf.cpp │ └── welcome_service_itf.h ├── revision.h.in ├── ryzom ├── CMakeLists.txt ├── COPYING ├── client │ ├── CMakeLists.txt │ ├── cfg │ │ ├── client_cpu_1.cfg │ │ ├── client_cpu_2.cfg │ │ ├── client_cpu_3.cfg │ │ ├── client_cpu_4.cfg │ │ ├── client_gpu_1.cfg │ │ ├── client_gpu_2.cfg │ │ ├── client_gpu_3.cfg │ │ ├── client_gpu_4.cfg │ │ ├── client_ram_256.cfg │ │ ├── client_ram_512.cfg │ │ ├── client_sound_buffer.cfg │ │ ├── client_vram_128.cfg │ │ ├── client_vram_32.cfg │ │ └── client_vram_64.cfg │ ├── client.cfg │ ├── client_default.cfg │ ├── client_default.cfg.in │ ├── data │ │ ├── CMakeLists.txt │ │ └── gamedev │ │ │ ├── adds │ │ │ ├── interfaces │ │ │ │ ├── color_palette.dds │ │ │ │ ├── matis_island_2_map.tga │ │ │ │ ├── matis_island_full_map.tga │ │ │ │ ├── new_launcher_bg.tga │ │ │ │ ├── new_launcher_bg_0.tga │ │ │ │ ├── new_launcher_bg_1.tga │ │ │ │ ├── new_loading_bg_0.tga │ │ │ │ ├── new_loading_bg_1.tga │ │ │ │ ├── new_resurect_caravane_bg_0.tga │ │ │ │ ├── new_resurect_caravane_bg_1.tga │ │ │ │ ├── new_resurect_kami_bg_0.tga │ │ │ │ ├── new_resurect_kami_bg_1.tga │ │ │ │ ├── new_teleport_caravan_bg_0.tga │ │ │ │ ├── new_teleport_caravan_bg_1.tga │ │ │ │ ├── new_teleport_kami_bg_0.tga │ │ │ │ ├── new_teleport_kami_bg_1.tga │ │ │ │ ├── new_texture_interfaces_dxtc.tga │ │ │ │ └── new_texture_interfaces_dxtc.txt │ │ │ ├── sfx │ │ │ │ ├── marauder_teleporter.ps │ │ │ │ ├── mp_flower.ps │ │ │ │ └── ul_mission_hall_of_fame.ps │ │ │ ├── shapes │ │ │ │ ├── FY_Acc_Bowl.shape │ │ │ │ ├── FY_Acc_Chaudron_A_1.shape │ │ │ │ ├── FY_Acc_Pick_A.shape │ │ │ │ ├── FY_Acc_Vase.shape │ │ │ │ ├── FY_Acc_Vase2.shape │ │ │ │ ├── FY_appart_joueur.ig │ │ │ │ ├── GE_Acc_Candys.shape │ │ │ │ ├── GE_HOF_caster_pvp_pantabottes.shape │ │ │ │ ├── GE_HOM_caster_pvp_pantabottes.shape │ │ │ │ ├── GE_Mission_RaceCup.shape │ │ │ │ ├── GE_Mission_Table.shape │ │ │ │ ├── GE_Mission_larvicultor_table.shape │ │ │ │ ├── GE_Tr_Map_Panel.shape │ │ │ │ ├── GE_Zo_Map_Table.shape │ │ │ │ ├── GE_mission_scrollmaker.shape │ │ │ │ ├── GE_mission_tente_ZO_rescuer.shape │ │ │ │ ├── GE_pvp_big_shield.shape │ │ │ │ ├── Ge_gift_blue.shape │ │ │ │ ├── Ge_gift_blue_yubo.shape │ │ │ │ ├── Ge_gift_green.shape │ │ │ │ ├── Ge_gift_green_yubo.shape │ │ │ │ ├── Ge_gift_red.shape │ │ │ │ ├── Ge_gift_red_yubo.shape │ │ │ │ ├── Ge_gift_yellow.shape │ │ │ │ ├── Ge_gift_yellow_yubo.shape │ │ │ │ ├── MA_Acc_Bowl.shape │ │ │ │ ├── MA_Acc_Pick_A.shape │ │ │ │ ├── MA_appart_joueur.ig │ │ │ │ ├── TR_Acc_Bowl.shape │ │ │ │ ├── TR_Acc_Pick_A.shape │ │ │ │ ├── TR_MO_arma_mount.shape │ │ │ │ ├── TR_MO_arma_mount.skel │ │ │ │ ├── UL_Mission_Hall_Of_Fame.shape │ │ │ │ ├── ZO_Acc_Bowl.shape │ │ │ │ ├── ZO_Acc_Pick_A.shape │ │ │ │ ├── ZO_bt_Appart.ig │ │ │ │ ├── tp_diamand.shape │ │ │ │ ├── tp_socle.shape │ │ │ │ ├── tr_appart.ig │ │ │ │ └── tr_appart.shape │ │ │ └── textures │ │ │ │ ├── DragonTail.tga │ │ │ │ ├── Ge_gift_blue.tga │ │ │ │ ├── Ge_gift_craft.tga │ │ │ │ ├── Ge_gift_green.tga │ │ │ │ ├── Ge_gift_red.tga │ │ │ │ ├── Ge_gift_yellow.tga │ │ │ │ ├── Ge_gift_yuboskin.tga │ │ │ │ ├── event_refday_yber.tga │ │ │ │ ├── f_pick-blades_c1.tga │ │ │ │ ├── f_pick-blades_c2.tga │ │ │ │ ├── f_pick-blades_c3.tga │ │ │ │ ├── f_pick-stick_c1.tga │ │ │ │ ├── f_pick-stick_c2.tga │ │ │ │ ├── f_pick-stick_c3.tga │ │ │ │ ├── ge_mission_stand_top_scroolmaker.tga │ │ │ │ ├── ge_mission_tente_zo_toit_rescuer.tga │ │ │ │ ├── ge_mission_tente_zo_wall_rescuer.tga │ │ │ │ ├── gn_pvp_dress.tga │ │ │ │ ├── gn_pvp_dress_hof.tga │ │ │ │ ├── m_pick-blades_c1.tga │ │ │ │ ├── m_pick-blades_c2.tga │ │ │ │ ├── m_pick-blades_c3.tga │ │ │ │ ├── m_pick-stick_c1.tga │ │ │ │ ├── m_pick-stick_c2.tga │ │ │ │ ├── m_pick-stick_c3.tga │ │ │ │ ├── t_pick-blades_c1.tga │ │ │ │ ├── t_pick-blades_c2.tga │ │ │ │ ├── t_pick-blades_c3.tga │ │ │ │ ├── t_pick-stick_c1.tga │ │ │ │ ├── t_pick-stick_c2.tga │ │ │ │ ├── t_pick-stick_c3.tga │ │ │ │ ├── t_pick-stick_c4.tga │ │ │ │ ├── ul_mission_hall_of_fame.dds │ │ │ │ ├── z_pick-blades_c1.dds │ │ │ │ ├── z_pick-blades_c2.dds │ │ │ │ ├── z_pick-blades_c3.dds │ │ │ │ ├── z_pick-stick_c1.dds │ │ │ │ ├── z_pick-stick_c2.dds │ │ │ │ └── z_pick-stick_c3.dds │ │ │ ├── auto_animations_list.txt │ │ │ ├── default │ │ │ └── default_interface.icfg │ │ │ ├── html │ │ │ ├── context_help │ │ │ │ ├── ch_action_bar_de.html │ │ │ │ ├── ch_action_bar_en.html │ │ │ │ ├── ch_action_bar_fr.html │ │ │ │ ├── ch_action_book_de.html │ │ │ │ ├── ch_action_book_en.html │ │ │ │ ├── ch_action_book_fr.html │ │ │ │ ├── ch_action_drag_drop_de.html │ │ │ │ ├── ch_action_drag_drop_en.html │ │ │ │ ├── ch_action_drag_drop_fr.html │ │ │ │ ├── ch_character_sheet_de.html │ │ │ │ ├── ch_character_sheet_en.html │ │ │ │ ├── ch_character_sheet_fr.html │ │ │ │ ├── ch_compas_de.html │ │ │ │ ├── ch_compas_en.html │ │ │ │ ├── ch_compas_fr.html │ │ │ │ ├── ch_compas_journal_de.html │ │ │ │ ├── ch_compas_journal_en.html │ │ │ │ ├── ch_compas_journal_fr.html │ │ │ │ ├── ch_inventory_de.html │ │ │ │ ├── ch_inventory_en.html │ │ │ │ ├── ch_inventory_fr.html │ │ │ │ ├── ch_journal_de.html │ │ │ │ ├── ch_journal_en.html │ │ │ │ ├── ch_journal_fr.html │ │ │ │ ├── ch_quick_help_de.html │ │ │ │ ├── ch_quick_help_en.html │ │ │ │ ├── ch_quick_help_fr.html │ │ │ │ ├── ch_skill_de.html │ │ │ │ ├── ch_skill_en.html │ │ │ │ ├── ch_skill_fr.html │ │ │ │ ├── ch_skill_point_de.html │ │ │ │ ├── ch_skill_point_en.html │ │ │ │ ├── ch_skill_point_fr.html │ │ │ │ ├── ch_team_list_de.html │ │ │ │ ├── ch_team_list_en.html │ │ │ │ ├── ch_team_list_fr.html │ │ │ │ ├── ch_title_de.html │ │ │ │ ├── ch_title_en.html │ │ │ │ └── ch_title_fr.html │ │ │ ├── help │ │ │ │ ├── abilities_item_de.html │ │ │ │ ├── abilities_item_en.html │ │ │ │ ├── abilities_item_fr.html │ │ │ │ ├── abilities_item_intro_de.html │ │ │ │ ├── abilities_item_intro_en.html │ │ │ │ ├── abilities_item_intro_fr.html │ │ │ │ ├── abilities_item_step1_1_de.html │ │ │ │ ├── abilities_item_step1_1_en.html │ │ │ │ ├── abilities_item_step1_1_fr.html │ │ │ │ ├── abilities_item_step1_2_de.html │ │ │ │ ├── abilities_item_step1_2_en.html │ │ │ │ ├── abilities_item_step1_2_fr.html │ │ │ │ ├── abilities_item_step1_de.html │ │ │ │ ├── abilities_item_step1_en.html │ │ │ │ ├── abilities_item_step1_fr.html │ │ │ │ ├── abilities_item_step2_1_de.html │ │ │ │ ├── abilities_item_step2_1_en.html │ │ │ │ ├── abilities_item_step2_1_fr.html │ │ │ │ ├── abilities_item_step2_2_de.html │ │ │ │ ├── abilities_item_step2_2_en.html │ │ │ │ ├── abilities_item_step2_2_fr.html │ │ │ │ ├── abilities_item_step2_de.html │ │ │ │ ├── abilities_item_step2_en.html │ │ │ │ ├── abilities_item_step2_fr.html │ │ │ │ ├── abilities_item_step3_1_de.html │ │ │ │ ├── abilities_item_step3_1_en.html │ │ │ │ ├── abilities_item_step3_1_fr.html │ │ │ │ ├── abilities_item_step3_2_de.html │ │ │ │ ├── abilities_item_step3_2_en.html │ │ │ │ ├── abilities_item_step3_2_fr.html │ │ │ │ ├── abilities_item_step3_de.html │ │ │ │ ├── abilities_item_step3_en.html │ │ │ │ ├── abilities_item_step3_fr.html │ │ │ │ ├── abilities_item_step4_de.html │ │ │ │ ├── abilities_item_step4_en.html │ │ │ │ ├── abilities_item_step4_fr.html │ │ │ │ ├── buy_sell_de.html │ │ │ │ ├── buy_sell_en.html │ │ │ │ ├── buy_sell_fr.html │ │ │ │ ├── buy_sell_intro_de.html │ │ │ │ ├── buy_sell_intro_en.html │ │ │ │ ├── buy_sell_intro_fr.html │ │ │ │ ├── buy_sell_step1_de.html │ │ │ │ ├── buy_sell_step1_en.html │ │ │ │ ├── buy_sell_step1_fr.html │ │ │ │ ├── buy_sell_step2_de.html │ │ │ │ ├── buy_sell_step2_en.html │ │ │ │ ├── buy_sell_step2_fr.html │ │ │ │ ├── buy_sell_step3_de.html │ │ │ │ ├── buy_sell_step3_en.html │ │ │ │ ├── buy_sell_step3_fr.html │ │ │ │ ├── buy_sell_step4_de.html │ │ │ │ ├── buy_sell_step4_en.html │ │ │ │ ├── buy_sell_step4_fr.html │ │ │ │ ├── buy_sell_step5_de.html │ │ │ │ ├── buy_sell_step5_en.html │ │ │ │ ├── buy_sell_step5_fr.html │ │ │ │ ├── create_character_de.html │ │ │ │ ├── create_character_en.html │ │ │ │ ├── create_character_fr.html │ │ │ │ ├── create_character_intro_de.html │ │ │ │ ├── create_character_intro_en.html │ │ │ │ ├── create_character_intro_fr.html │ │ │ │ ├── create_character_step1_de.html │ │ │ │ ├── create_character_step1_en.html │ │ │ │ ├── create_character_step1_fr.html │ │ │ │ ├── create_character_step2_de.html │ │ │ │ ├── create_character_step2_en.html │ │ │ │ ├── create_character_step2_fr.html │ │ │ │ ├── create_character_step3_de.html │ │ │ │ ├── create_character_step3_en.html │ │ │ │ ├── create_character_step3_fr.html │ │ │ │ ├── create_character_step4_de.html │ │ │ │ ├── create_character_step4_en.html │ │ │ │ ├── create_character_step4_fr.html │ │ │ │ ├── create_character_step5_de.html │ │ │ │ ├── create_character_step5_en.html │ │ │ │ ├── create_character_step5_fr.html │ │ │ │ ├── create_character_step6_de.html │ │ │ │ ├── create_character_step6_en.html │ │ │ │ ├── create_character_step6_fr.html │ │ │ │ ├── credits_de.html │ │ │ │ ├── credits_en.html │ │ │ │ ├── credits_fr.html │ │ │ │ ├── fight_de.html │ │ │ │ ├── fight_en.html │ │ │ │ ├── fight_fr.html │ │ │ │ ├── fight_intro_de.html │ │ │ │ ├── fight_intro_en.html │ │ │ │ ├── fight_intro_fr.html │ │ │ │ ├── fight_step1_de.html │ │ │ │ ├── fight_step1_en.html │ │ │ │ ├── fight_step1_fr.html │ │ │ │ ├── fight_step2_de.html │ │ │ │ ├── fight_step2_en.html │ │ │ │ ├── fight_step2_fr.html │ │ │ │ ├── fight_step3_de.html │ │ │ │ ├── fight_step3_en.html │ │ │ │ ├── fight_step3_fr.html │ │ │ │ ├── fight_step4_de.html │ │ │ │ ├── fight_step4_en.html │ │ │ │ ├── fight_step4_fr.html │ │ │ │ ├── fight_step5_de.html │ │ │ │ ├── fight_step5_en.html │ │ │ │ ├── fight_step5_fr.html │ │ │ │ ├── help_de.html │ │ │ │ ├── help_en.html │ │ │ │ ├── help_fr.html │ │ │ │ ├── how_to_castoffensivespells_de.html │ │ │ │ ├── how_to_castoffensivespells_en.html │ │ │ │ ├── how_to_castoffensivespells_fr.html │ │ │ │ ├── how_to_changeitemsinhand_de.html │ │ │ │ ├── how_to_changeitemsinhand_en.html │ │ │ │ ├── how_to_changeitemsinhand_fr.html │ │ │ │ ├── how_to_craft_de.html │ │ │ │ ├── how_to_craft_en.html │ │ │ │ ├── how_to_craft_fr.html │ │ │ │ ├── how_to_extractrawmaterialsfromasource_de.html │ │ │ │ ├── how_to_extractrawmaterialsfromasource_en.html │ │ │ │ ├── how_to_extractrawmaterialsfromasource_fr.html │ │ │ │ ├── how_to_findrawmaterialsources_de.html │ │ │ │ ├── how_to_findrawmaterialsources_en.html │ │ │ │ ├── how_to_findrawmaterialsources_fr.html │ │ │ │ ├── how_to_forage_de.html │ │ │ │ ├── how_to_forage_en.html │ │ │ │ ├── how_to_forage_fr.html │ │ │ │ ├── how_to_healothers_de.html │ │ │ │ ├── how_to_healothers_en.html │ │ │ │ ├── how_to_healothers_fr.html │ │ │ │ ├── how_to_resurectadeadfriend_de.html │ │ │ │ ├── how_to_resurectadeadfriend_en.html │ │ │ │ ├── how_to_resurectadeadfriend_fr.html │ │ │ │ ├── how_to_selfheal_de.html │ │ │ │ ├── how_to_selfheal_en.html │ │ │ │ ├── how_to_selfheal_fr.html │ │ │ │ ├── interf_action_bar_de.html │ │ │ │ ├── interf_action_bar_en.html │ │ │ │ ├── interf_action_bar_fr.html │ │ │ │ ├── interf_action_book_de.html │ │ │ │ ├── interf_action_book_en.html │ │ │ │ ├── interf_action_book_fr.html │ │ │ │ ├── interf_animals_de.html │ │ │ │ ├── interf_animals_en.html │ │ │ │ ├── interf_animals_fr.html │ │ │ │ ├── interf_bot_trade_de.html │ │ │ │ ├── interf_bot_trade_en.html │ │ │ │ ├── interf_bot_trade_fr.html │ │ │ │ ├── interf_chat_de.html │ │ │ │ ├── interf_chat_en.html │ │ │ │ ├── interf_chat_fr.html │ │ │ │ ├── interf_compass_de.html │ │ │ │ ├── interf_compass_en.html │ │ │ │ ├── interf_compass_fr.html │ │ │ │ ├── interf_identity_de.html │ │ │ │ ├── interf_identity_en.html │ │ │ │ ├── interf_identity_fr.html │ │ │ │ ├── interf_info_default_de.html │ │ │ │ ├── interf_info_default_en.html │ │ │ │ ├── interf_info_default_fr.html │ │ │ │ ├── interf_info_item_ammo_de.html │ │ │ │ ├── interf_info_item_ammo_en.html │ │ │ │ ├── interf_info_item_ammo_fr.html │ │ │ │ ├── interf_info_item_armor_de.html │ │ │ │ ├── interf_info_item_armor_en.html │ │ │ │ ├── interf_info_item_armor_fr.html │ │ │ │ ├── interf_info_item_craft_tool_de.html │ │ │ │ ├── interf_info_item_craft_tool_en.html │ │ │ │ ├── interf_info_item_craft_tool_fr.html │ │ │ │ ├── interf_info_item_de.html │ │ │ │ ├── interf_info_item_en.html │ │ │ │ ├── interf_info_item_fr.html │ │ │ │ ├── interf_info_item_harvest_tool_de.html │ │ │ │ ├── interf_info_item_harvest_tool_en.html │ │ │ │ ├── interf_info_item_harvest_tool_fr.html │ │ │ │ ├── interf_info_item_jewelry_de.html │ │ │ │ ├── interf_info_item_jewelry_en.html │ │ │ │ ├── interf_info_item_jewelry_fr.html │ │ │ │ ├── interf_info_item_m_weapon_de.html │ │ │ │ ├── interf_info_item_m_weapon_en.html │ │ │ │ ├── interf_info_item_m_weapon_fr.html │ │ │ │ ├── interf_info_item_misc_de.html │ │ │ │ ├── interf_info_item_misc_en.html │ │ │ │ ├── interf_info_item_misc_fr.html │ │ │ │ ├── interf_info_item_mp_de.html │ │ │ │ ├── interf_info_item_mp_en.html │ │ │ │ ├── interf_info_item_mp_fr.html │ │ │ │ ├── interf_info_item_r_weapon_de.html │ │ │ │ ├── interf_info_item_r_weapon_en.html │ │ │ │ ├── interf_info_item_r_weapon_fr.html │ │ │ │ ├── interf_info_item_shield_de.html │ │ │ │ ├── interf_info_item_shield_en.html │ │ │ │ ├── interf_info_item_shield_fr.html │ │ │ │ ├── interf_info_mission_de.html │ │ │ │ ├── interf_info_mission_en.html │ │ │ │ ├── interf_info_mission_fr.html │ │ │ │ ├── interf_info_pact_de.html │ │ │ │ ├── interf_info_pact_en.html │ │ │ │ ├── interf_info_pact_fr.html │ │ │ │ ├── interf_info_sbrick_de.html │ │ │ │ ├── interf_info_sbrick_en.html │ │ │ │ ├── interf_info_sbrick_fr.html │ │ │ │ ├── interf_info_sphrase_de.html │ │ │ │ ├── interf_info_sphrase_en.html │ │ │ │ ├── interf_info_sphrase_fr.html │ │ │ │ ├── interf_info_title_de.html │ │ │ │ ├── interf_info_title_en.html │ │ │ │ ├── interf_info_title_fr.html │ │ │ │ ├── interf_my_gauges_de.html │ │ │ │ ├── interf_my_gauges_en.html │ │ │ │ ├── interf_my_gauges_fr.html │ │ │ │ ├── interf_target_de.html │ │ │ │ ├── interf_target_en.html │ │ │ │ ├── interf_target_fr.html │ │ │ │ ├── intro_de.html │ │ │ │ ├── intro_en.html │ │ │ │ ├── intro_fr.html │ │ │ │ ├── manage_character_de.html │ │ │ │ ├── manage_character_en.html │ │ │ │ ├── manage_character_fr.html │ │ │ │ ├── manage_character_intro_de.html │ │ │ │ ├── manage_character_intro_en.html │ │ │ │ ├── manage_character_intro_fr.html │ │ │ │ ├── manage_character_step1_de.html │ │ │ │ ├── manage_character_step1_en.html │ │ │ │ ├── manage_character_step1_fr.html │ │ │ │ ├── manage_character_step2_de.html │ │ │ │ ├── manage_character_step2_en.html │ │ │ │ ├── manage_character_step2_fr.html │ │ │ │ ├── manage_character_step3_de.html │ │ │ │ ├── manage_character_step3_en.html │ │ │ │ ├── manage_character_step3_fr.html │ │ │ │ ├── manage_character_step4_de.html │ │ │ │ ├── manage_character_step4_en.html │ │ │ │ ├── manage_character_step4_fr.html │ │ │ │ ├── map_general_matis_de.html │ │ │ │ ├── map_general_matis_en.html │ │ │ │ ├── map_general_matis_fr.html │ │ │ │ ├── spell_de.html │ │ │ │ ├── spell_en.html │ │ │ │ ├── spell_fr.html │ │ │ │ ├── spell_intro_de.html │ │ │ │ ├── spell_intro_en.html │ │ │ │ ├── spell_intro_fr.html │ │ │ │ ├── spell_step1_de.html │ │ │ │ ├── spell_step1_en.html │ │ │ │ ├── spell_step1_fr.html │ │ │ │ ├── spell_step2_de.html │ │ │ │ ├── spell_step2_en.html │ │ │ │ ├── spell_step2_fr.html │ │ │ │ ├── spell_step3_de.html │ │ │ │ ├── spell_step3_en.html │ │ │ │ ├── spell_step3_fr.html │ │ │ │ ├── talk_bot_de.html │ │ │ │ ├── talk_bot_en.html │ │ │ │ ├── talk_bot_fr.html │ │ │ │ ├── talk_bot_intro_de.html │ │ │ │ ├── talk_bot_intro_en.html │ │ │ │ ├── talk_bot_intro_fr.html │ │ │ │ ├── talk_bot_step1_de.html │ │ │ │ ├── talk_bot_step1_en.html │ │ │ │ ├── talk_bot_step1_fr.html │ │ │ │ ├── talk_bot_step2_de.html │ │ │ │ ├── talk_bot_step2_en.html │ │ │ │ ├── talk_bot_step2_fr.html │ │ │ │ ├── talk_bot_step3_de.html │ │ │ │ ├── talk_bot_step3_en.html │ │ │ │ ├── talk_bot_step3_fr.html │ │ │ │ ├── talk_bot_step4_de.html │ │ │ │ ├── talk_bot_step4_en.html │ │ │ │ └── talk_bot_step4_fr.html │ │ │ ├── quick_help │ │ │ │ ├── qh_chat_de.html │ │ │ │ ├── qh_chat_en.html │ │ │ │ ├── qh_chat_fr.html │ │ │ │ ├── qh_craft_de.html │ │ │ │ ├── qh_craft_en.html │ │ │ │ ├── qh_craft_fr.html │ │ │ │ ├── qh_fight_de.html │ │ │ │ ├── qh_fight_en.html │ │ │ │ ├── qh_fight_fr.html │ │ │ │ ├── qh_help_de.html │ │ │ │ ├── qh_help_en.html │ │ │ │ ├── qh_help_fr.html │ │ │ │ ├── qh_instructor_de.html │ │ │ │ ├── qh_instructor_en.html │ │ │ │ ├── qh_instructor_fr.html │ │ │ │ ├── qh_keys_de.html │ │ │ │ ├── qh_keys_en.html │ │ │ │ ├── qh_keys_fr.html │ │ │ │ ├── qh_magic_de.html │ │ │ │ ├── qh_magic_en.html │ │ │ │ ├── qh_magic_fr.html │ │ │ │ ├── qh_memorize_de.html │ │ │ │ ├── qh_memorize_en.html │ │ │ │ ├── qh_memorize_fr.html │ │ │ │ ├── qh_money_de.html │ │ │ │ ├── qh_money_en.html │ │ │ │ ├── qh_money_fr.html │ │ │ │ ├── qh_motion_de.html │ │ │ │ ├── qh_motion_en.html │ │ │ │ ├── qh_motion_fr.html │ │ │ │ ├── qh_orientation_de.html │ │ │ │ ├── qh_orientation_en.html │ │ │ │ ├── qh_orientation_fr.html │ │ │ │ ├── qh_phrase_de.html │ │ │ │ ├── qh_phrase_en.html │ │ │ │ ├── qh_phrase_fr.html │ │ │ │ ├── qh_profession_de.html │ │ │ │ ├── qh_profession_en.html │ │ │ │ ├── qh_profession_fr.html │ │ │ │ ├── qh_quitgame_de.html │ │ │ │ ├── qh_quitgame_en.html │ │ │ │ ├── qh_quitgame_fr.html │ │ │ │ ├── qh_welcome_de.html │ │ │ │ ├── qh_welcome_en.html │ │ │ │ ├── qh_welcome_fr.html │ │ │ │ ├── qh_windows_de.html │ │ │ │ ├── qh_windows_en.html │ │ │ │ ├── qh_windows_fr.html │ │ │ │ ├── qh_windowsbar_de.html │ │ │ │ ├── qh_windowsbar_en.html │ │ │ │ └── qh_windowsbar_fr.html │ │ │ ├── release_de.html │ │ │ ├── release_en.html │ │ │ └── release_fr.html │ │ │ ├── interfaces_v3 │ │ │ ├── actions.xml │ │ │ ├── bg_downloader.lua │ │ │ ├── bg_downloader.xml │ │ │ ├── bot_chat_v4.lua │ │ │ ├── bot_chat_v4.xml │ │ │ ├── commands.xml │ │ │ ├── commands2.xml │ │ │ ├── compass.xml │ │ │ ├── config.xml │ │ │ ├── encyclopedia.xml │ │ │ ├── game_config.lua │ │ │ ├── game_config.xml │ │ │ ├── game_context_menu.xml │ │ │ ├── game_r2_loading.lua │ │ │ ├── guild.lua │ │ │ ├── guild.xml │ │ │ ├── haircut.xml │ │ │ ├── harvest.xml │ │ │ ├── help.lua │ │ │ ├── help.xml │ │ │ ├── hierarchy.xml │ │ │ ├── html.txt │ │ │ ├── info_player.lua │ │ │ ├── info_player.xml │ │ │ ├── input_config_v3.xml │ │ │ ├── interaction.lua │ │ │ ├── interaction.xml │ │ │ ├── interface.txt │ │ │ ├── interface_notes.txt │ │ │ ├── inventory.xml │ │ │ ├── keys.xml │ │ │ ├── keys_bi.wasd.xml │ │ │ ├── keys_bi.wow_alike.xml │ │ │ ├── keys_bi.zqsd.xml │ │ │ ├── keys_r2ed.xml │ │ │ ├── keys_r2ed_bi.wasd.xml │ │ │ ├── keys_r2ed_bi.wow_alike.xml │ │ │ ├── keys_r2ed_bi.zqsd.xml │ │ │ ├── local_database.xml │ │ │ ├── login_config.xml │ │ │ ├── login_keys.xml │ │ │ ├── login_main.xml │ │ │ ├── login_widgets.xml │ │ │ ├── macros.xml │ │ │ ├── map.xml │ │ │ ├── news_gamedev.txt │ │ │ ├── out_v2_appear.lua │ │ │ ├── out_v2_appear.xml │ │ │ ├── out_v2_config.xml │ │ │ ├── out_v2_connect.xml │ │ │ ├── out_v2_crash.xml │ │ │ ├── out_v2_hierarchy.xml │ │ │ ├── out_v2_intro.xml │ │ │ ├── out_v2_keys.xml │ │ │ ├── out_v2_location.xml │ │ │ ├── out_v2_select.lua │ │ │ ├── out_v2_select.xml │ │ │ ├── out_v2_widgets.xml │ │ │ ├── outgame_appear.xml │ │ │ ├── outgame_career.xml │ │ │ ├── outgame_config.xml │ │ │ ├── outgame_connect.xml │ │ │ ├── outgame_crash.xml │ │ │ ├── outgame_hierarchy.xml │ │ │ ├── outgame_intro.xml │ │ │ ├── outgame_keys.xml │ │ │ ├── outgame_location.xml │ │ │ ├── outgame_select.xml │ │ │ ├── outgame_specie.xml │ │ │ ├── outgame_summary.xml │ │ │ ├── outgame_widgets.xml │ │ │ ├── outpost.lua │ │ │ ├── outpost.xml │ │ │ ├── phrase.xml │ │ │ ├── player.lua │ │ │ ├── player.xml │ │ │ ├── player_trade.xml │ │ │ ├── r2_logic_entities.xml │ │ │ ├── r2_triggers.xml │ │ │ ├── r2ed.xml │ │ │ ├── r2ed_acts.xml │ │ │ ├── r2ed_connect.xml │ │ │ ├── r2ed_scenario.xml │ │ │ ├── reset.xml │ │ │ ├── ring_access_point.lua │ │ │ ├── ring_access_point_filter.lua │ │ │ ├── ring_access_point_filter.xml │ │ │ ├── ring_window.lua │ │ │ ├── ring_window.xml │ │ │ ├── taskbar.lua │ │ │ ├── taskbar.xml │ │ │ ├── texture_interfaces_v3.tga │ │ │ ├── texture_interfaces_v3.txt │ │ │ ├── tips.txt │ │ │ ├── tracking.xml │ │ │ ├── webig.lua │ │ │ ├── webig_widgets.xml │ │ │ └── widgets.xml │ │ │ ├── shards.cfg │ │ │ ├── texture_extra.tga │ │ │ ├── texture_extra.txt │ │ │ └── world_editor_classes.xml │ ├── data_r2ed_ui │ │ ├── TB_Forum_ring.tga │ │ ├── alpha_10.tga │ │ ├── alpha_20.tga │ │ ├── alpha_30.tga │ │ ├── alpha_40.tga │ │ ├── alpha_50.tga │ │ ├── alpha_60.tga │ │ ├── alpha_70.tga │ │ ├── alpha_80.tga │ │ ├── arbo_close_just_one_24.tga │ │ ├── arbo_level_24.tga │ │ ├── curs_can_pan_dup.tga │ │ ├── curs_create.tga │ │ ├── curs_create_multi.tga │ │ ├── curs_create_vertex_invalid.tga │ │ ├── curs_dup.tga │ │ ├── curs_pan_dup.tga │ │ ├── curs_pick_dup.tga │ │ ├── curs_stop.tga │ │ ├── decals │ │ │ ├── r2_arrow.tga │ │ │ ├── r2_foot_steps.tga │ │ │ ├── r2_highlight_decal.tga │ │ │ ├── r2_path.tga │ │ │ ├── r2_pionneer_edit.tga │ │ │ ├── r2_select_decal.tga │ │ │ ├── r2_select_edge.tga │ │ │ ├── r2_selecting_decal.tga │ │ │ ├── r2_selection_circle.tga │ │ │ ├── r2_selection_circle_double.tga │ │ │ ├── r2_wander.tga │ │ │ ├── r2_zone_corner.tga │ │ │ ├── r2_zone_edge.tga │ │ │ ├── r2_zone_edge_invalid.tga │ │ │ └── r2_zone_vertex_invalid.tga │ │ ├── grey_0.tga │ │ ├── grey_10.tga │ │ ├── grey_100.tga │ │ ├── grey_20.tga │ │ ├── grey_30.tga │ │ ├── grey_40.tga │ │ ├── grey_50.tga │ │ ├── grey_60.tga │ │ ├── grey_70.tga │ │ ├── grey_80.tga │ │ ├── grey_90.tga │ │ ├── instance_link.shape │ │ ├── r2_allow.tga │ │ ├── r2_allow_small.tga │ │ ├── r2_desert_back.tga │ │ ├── r2_entity_count_too_high.shape │ │ ├── r2_entity_place_holder.shape │ │ ├── r2_forest_back.tga │ │ ├── r2_frustum.tga │ │ ├── r2_glow_star.tga │ │ ├── r2_gradient.tga │ │ ├── r2_hand_can_pan.tga │ │ ├── r2_hand_pan.tga │ │ ├── r2_icon_action_mini.tga │ │ ├── r2_icon_action_mini_over.tga │ │ ├── r2_icon_action_mini_pushed.tga │ │ ├── r2_icon_acts.tga │ │ ├── r2_icon_acts_over.tga │ │ ├── r2_icon_acts_pushed.tga │ │ ├── r2_icon_add_hp.tga │ │ ├── r2_icon_add_hp_over.tga │ │ ├── r2_icon_add_hp_pushed.tga │ │ ├── r2_icon_animation_give.tga │ │ ├── r2_icon_animation_give_over.tga │ │ ├── r2_icon_animation_give_pushed.tga │ │ ├── r2_icon_animation_target.tga │ │ ├── r2_icon_animation_target_over.tga │ │ ├── r2_icon_animation_target_pushed.tga │ │ ├── r2_icon_animation_triggers.tga │ │ ├── r2_icon_animation_triggers_over.tga │ │ ├── r2_icon_animation_triggers_pushed.tga │ │ ├── r2_icon_chat_small.tga │ │ ├── r2_icon_components_chest.tga │ │ ├── r2_icon_components_tasks.tga │ │ ├── r2_icon_components_trigger.tga │ │ ├── r2_icon_create.tga │ │ ├── r2_icon_despawn.tga │ │ ├── r2_icon_despawn_over.tga │ │ ├── r2_icon_despawn_pushed.tga │ │ ├── r2_icon_dialog_mini.tga │ │ ├── r2_icon_dialog_mini_over.tga │ │ ├── r2_icon_dialog_mini_pushed.tga │ │ ├── r2_icon_dm_mode.tga │ │ ├── r2_icon_dm_mode_over.tga │ │ ├── r2_icon_dm_mode_pushed.tga │ │ ├── r2_icon_event_trigger_mini.tga │ │ ├── r2_icon_event_trigger_mini_over.tga │ │ ├── r2_icon_event_trigger_mini_pushed.tga │ │ ├── r2_icon_far.tga │ │ ├── r2_icon_go_test_small.tga │ │ ├── r2_icon_keys_small.tga │ │ ├── r2_icon_light_off_small.tga │ │ ├── r2_icon_light_on_small.tga │ │ ├── r2_icon_load_small.tga │ │ ├── r2_icon_mail_box_small.tga │ │ ├── r2_icon_map_entity_orient.tga │ │ ├── r2_icon_map_entity_small.tga │ │ ├── r2_icon_map_entity_small_highlight.tga │ │ ├── r2_icon_map_invalid.tga │ │ ├── r2_icon_map_invalid_small.tga │ │ ├── r2_icon_map_small.tga │ │ ├── r2_icon_new_scenario_small.tga │ │ ├── r2_icon_palette_small.tga │ │ ├── r2_icon_player_admin_small.tga │ │ ├── r2_icon_possess.tga │ │ ├── r2_icon_possess_over.tga │ │ ├── r2_icon_possess_pushed.tga │ │ ├── r2_icon_possess_small.tga │ │ ├── r2_icon_possess_small_over.tga │ │ ├── r2_icon_possess_small_pushed.tga │ │ ├── r2_icon_preferences.tga │ │ ├── r2_icon_properties.tga │ │ ├── r2_icon_r2_small.tga │ │ ├── r2_icon_reaction_mini.tga │ │ ├── r2_icon_reaction_mini_over.tga │ │ ├── r2_icon_reaction_mini_pushed.tga │ │ ├── r2_icon_resetwindows.tga │ │ ├── r2_icon_save_small.tga │ │ ├── r2_icon_scenario_prop.tga │ │ ├── r2_icon_scenario_small.tga │ │ ├── r2_icon_select.tga │ │ ├── r2_icon_speak_as.tga │ │ ├── r2_icon_speak_as_over.tga │ │ ├── r2_icon_speak_as_pushed.tga │ │ ├── r2_icon_speak_as_small.tga │ │ ├── r2_icon_speak_as_small_over.tga │ │ ├── r2_icon_speak_as_small_pushed.tga │ │ ├── r2_icon_stop_acts.tga │ │ ├── r2_icon_stop_acts_over.tga │ │ ├── r2_icon_stop_acts_pushed.tga │ │ ├── r2_icon_stop_live_small.tga │ │ ├── r2_icon_stop_possess.tga │ │ ├── r2_icon_stop_possess_over.tga │ │ ├── r2_icon_stop_possess_pushed.tga │ │ ├── r2_icon_stop_speak.tga │ │ ├── r2_icon_stop_speak_over.tga │ │ ├── r2_icon_stop_speak_pushed.tga │ │ ├── r2_icon_stop_test_small.tga │ │ ├── r2_icon_support.tga │ │ ├── r2_icon_test_mode.tga │ │ ├── r2_icon_test_mode_over.tga │ │ ├── r2_icon_test_mode_pushed.tga │ │ ├── r2_icon_weather.tga │ │ ├── r2_icon_weather_over.tga │ │ ├── r2_icon_weather_pushed.tga │ │ ├── r2_instance_link.shape │ │ ├── r2_jungle_back.tga │ │ ├── r2_lakes_back.tga │ │ ├── r2_main_bl.tga │ │ ├── r2_main_menu_full.tga │ │ ├── r2_main_menu_full_over.tga │ │ ├── r2_main_menu_full_pushed.tga │ │ ├── r2_main_menu_normal_l.tga │ │ ├── r2_main_menu_normal_m.tga │ │ ├── r2_main_menu_normal_r.tga │ │ ├── r2_main_menu_over_l.tga │ │ ├── r2_main_menu_over_m.tga │ │ ├── r2_main_menu_over_r.tga │ │ ├── r2_main_menu_pushed_l.tga │ │ ├── r2_main_menu_pushed_m.tga │ │ ├── r2_main_menu_pushed_r.tga │ │ ├── r2_map_edge_arrow.tga │ │ ├── r2_map_edge_stipple.tga │ │ ├── r2_map_edge_test.tga │ │ ├── r2_map_foot_steps.tga │ │ ├── r2_map_zone_edge.tga │ │ ├── r2_mini_activity_chat.tga │ │ ├── r2_mini_activity_empty_chat.tga │ │ ├── r2_mini_activity_feed_zone.tga │ │ ├── r2_mini_activity_follow_road.tga │ │ ├── r2_mini_activity_guard_zone.tga │ │ ├── r2_mini_activity_hunt_zone.tga │ │ ├── r2_mini_activity_inactive.tga │ │ ├── r2_mini_activity_patrol_road.tga │ │ ├── r2_mini_activity_repeat_road.tga │ │ ├── r2_mini_activity_rest_zone.tga │ │ ├── r2_mini_activity_stand_still.tga │ │ ├── r2_mini_activity_wander_zone.tga │ │ ├── r2_mini_activity_work_zone.tga │ │ ├── r2_palette_act.tga │ │ ├── r2_palette_components.tga │ │ ├── r2_palette_entities.tga │ │ ├── r2_palette_objets.tga │ │ ├── r2_palette_scenario.tga │ │ ├── r2_palette_zones.tga │ │ ├── r2_player_admin.tga │ │ ├── r2_player_admin_over.tga │ │ ├── r2_player_admin_pushed.tga │ │ ├── r2_region_vertex.shape │ │ ├── r2_road_flag.shape │ │ ├── r2_roots_back.tga │ │ ├── r2_scenario.tga │ │ ├── r2_scenario_admin.tga │ │ ├── r2_scenario_admin_over.tga │ │ ├── r2_scenario_admin_pushed.tga │ │ ├── r2_scenario_small.tga │ │ ├── r2_select_bar_start_normal_l.tga │ │ ├── r2_select_bar_start_normal_m.tga │ │ ├── r2_select_bar_start_normal_r.tga │ │ ├── r2_select_bar_start_over_l.tga │ │ ├── r2_select_bar_start_over_m.tga │ │ ├── r2_select_bar_start_over_r.tga │ │ ├── r2_select_bar_start_pushed_l.tga │ │ ├── r2_select_bar_start_pushed_m.tga │ │ ├── r2_select_bar_start_pushed_r.tga │ │ ├── r2_select_menu_l.tga │ │ ├── r2_select_menu_m.tga │ │ ├── r2_select_menu_over_l.tga │ │ ├── r2_select_menu_over_m.tga │ │ ├── r2_select_menu_over_r.tga │ │ ├── r2_select_menu_pushed_l.tga │ │ ├── r2_select_menu_pushed_m.tga │ │ ├── r2_select_menu_pushed_r.tga │ │ ├── r2_select_menu_r.tga │ │ ├── r2_stop_live.tga │ │ ├── r2_stop_live_over.tga │ │ ├── r2_stop_live_pushed.tga │ │ ├── r2_suspension.tga │ │ ├── r2_tab_sequence_pushed_l.tga │ │ ├── r2_tab_sequence_pushed_m.tga │ │ ├── r2_tab_sequence_pushed_r.tga │ │ ├── r2_tab_wide_normal_l.tga │ │ ├── r2_tab_wide_normal_m.tga │ │ ├── r2_tab_wide_normal_r.tga │ │ ├── r2_tab_wide_over_l.tga │ │ ├── r2_tab_wide_over_m.tga │ │ ├── r2_tab_wide_over_r.tga │ │ ├── r2_tab_wide_pushed_l.tga │ │ ├── r2_tab_wide_pushed_m.tga │ │ ├── r2_tab_wide_pushed_r.tga │ │ ├── r2_toolbar_customize_look.tga │ │ ├── r2_toolbar_customize_look_over.tga │ │ ├── r2_toolbar_customize_look_pushed.tga │ │ ├── r2_toolbar_customize_look_small.tga │ │ ├── r2_toolbar_customize_over.tga │ │ ├── r2_toolbar_customize_pushed.tga │ │ ├── r2_toolbar_delete.tga │ │ ├── r2_toolbar_delete_over.tga │ │ ├── r2_toolbar_delete_pushed.tga │ │ ├── r2_toolbar_delete_small.tga │ │ ├── r2_toolbar_follow_road.tga │ │ ├── r2_toolbar_follow_road_over.tga │ │ ├── r2_toolbar_follow_road_pushed.tga │ │ ├── r2_toolbar_follow_road_small.tga │ │ ├── r2_toolbar_group.tga │ │ ├── r2_toolbar_group_over.tga │ │ ├── r2_toolbar_group_pushed.tga │ │ ├── r2_toolbar_group_small.tga │ │ ├── r2_toolbar_kill.tga │ │ ├── r2_toolbar_kill_over.tga │ │ ├── r2_toolbar_kill_pushed.tga │ │ ├── r2_toolbar_kill_small.tga │ │ ├── r2_toolbar_patrol_road.tga │ │ ├── r2_toolbar_patrol_road_over.tga │ │ ├── r2_toolbar_patrol_road_pushed.tga │ │ ├── r2_toolbar_patrol_road_small.tga │ │ ├── r2_toolbar_properties.tga │ │ ├── r2_toolbar_properties_over.tga │ │ ├── r2_toolbar_properties_pushed.tga │ │ ├── r2_toolbar_properties_small.tga │ │ ├── r2_toolbar_repeat_road.tga │ │ ├── r2_toolbar_repeat_road_over.tga │ │ ├── r2_toolbar_repeat_road_pushed.tga │ │ ├── r2_toolbar_repeat_road_small.tga │ │ ├── r2_toolbar_set_as_leader.tga │ │ ├── r2_toolbar_set_as_leader_over.tga │ │ ├── r2_toolbar_set_as_leader_pushed.tga │ │ ├── r2_toolbar_set_as_leader_small.tga │ │ ├── r2_toolbar_stand_still.tga │ │ ├── r2_toolbar_stand_still_over.tga │ │ ├── r2_toolbar_stand_still_pushed.tga │ │ ├── r2_toolbar_stand_still_small.tga │ │ ├── r2_toolbar_ungroup.tga │ │ ├── r2_toolbar_ungroup_over.tga │ │ ├── r2_toolbar_ungroup_pushed.tga │ │ ├── r2_toolbar_ungroup_small.tga │ │ ├── r2_toolbar_wander_zone.tga │ │ ├── r2_toolbar_wander_zone_over.tga │ │ ├── r2_toolbar_wander_zone_pushed.tga │ │ ├── r2_toolbar_wander_zone_small.tga │ │ ├── r2ed_clouds.tga │ │ ├── r2ed_connected_char.tga │ │ ├── r2ed_create_dialog.tga │ │ ├── r2ed_create_dialog_over.tga │ │ ├── r2ed_create_dialog_pushed.tga │ │ ├── r2ed_create_location.tga │ │ ├── r2ed_current_act_content.tga │ │ ├── r2ed_current_act_content_over.tga │ │ ├── r2ed_current_act_content_pushed.tga │ │ ├── r2ed_current_act_content_small.tga │ │ ├── r2ed_desert_l.tga │ │ ├── r2ed_desert_m.tga │ │ ├── r2ed_desert_pushed_l.tga │ │ ├── r2ed_desert_pushed_m.tga │ │ ├── r2ed_desert_pushed_r.tga │ │ ├── r2ed_desert_r.tga │ │ ├── r2ed_dismatch_filter.tga │ │ ├── r2ed_down_element.tga │ │ ├── r2ed_edit_dialog.tga │ │ ├── r2ed_edit_dialog_over.tga │ │ ├── r2ed_edit_dialog_over_small.tga │ │ ├── r2ed_edit_dialog_pushed.tga │ │ ├── r2ed_edit_dialog_pushed_small.tga │ │ ├── r2ed_edit_dialog_small.tga │ │ ├── r2ed_edit_events.tga │ │ ├── r2ed_edit_events_over.tga │ │ ├── r2ed_edit_events_over_small.tga │ │ ├── r2ed_edit_events_pushed.tga │ │ ├── r2ed_edit_events_pushed_small.tga │ │ ├── r2ed_edit_events_small.tga │ │ ├── r2ed_entry_point.tga │ │ ├── r2ed_entry_point_over.tga │ │ ├── r2ed_entry_point_pushed.tga │ │ ├── r2ed_fall.tga │ │ ├── r2ed_feature_bandit_camp.tga │ │ ├── r2ed_feature_bandit_camp_over.tga │ │ ├── r2ed_feature_bandit_camp_pushed.tga │ │ ├── r2ed_feature_fauna.tga │ │ ├── r2ed_feature_fauna_over.tga │ │ ├── r2ed_feature_fauna_pushed.tga │ │ ├── r2ed_feature_fauna_system.tga │ │ ├── r2ed_feature_fauna_system_over.tga │ │ ├── r2ed_feature_fauna_system_pushed.tga │ │ ├── r2ed_feature_kitins_lair.tga │ │ ├── r2ed_feature_kitins_lair_over.tga │ │ ├── r2ed_feature_kitins_lair_pushed.tga │ │ ├── r2ed_feature_loot_spawner.tga │ │ ├── r2ed_feature_loot_spawner_over.tga │ │ ├── r2ed_feature_loot_spawner_pushed.tga │ │ ├── r2ed_feature_timer.tga │ │ ├── r2ed_feature_timer_over.tga │ │ ├── r2ed_feature_timer_pushed.tga │ │ ├── r2ed_forest_l.tga │ │ ├── r2ed_forest_m.tga │ │ ├── r2ed_forest_pushed_l.tga │ │ ├── r2ed_forest_pushed_m.tga │ │ ├── r2ed_forest_pushed_r.tga │ │ ├── r2ed_forest_r.tga │ │ ├── r2ed_icon_act.tga │ │ ├── r2ed_icon_botobject.tga │ │ ├── r2ed_icon_creatures.tga │ │ ├── r2ed_icon_default_feature.tga │ │ ├── r2ed_icon_group.tga │ │ ├── r2ed_icon_group_creatures.tga │ │ ├── r2ed_icon_macro_components.tga │ │ ├── r2ed_icon_move.tga │ │ ├── r2ed_icon_newactivity.tga │ │ ├── r2ed_icon_npc.tga │ │ ├── r2ed_icon_permanent_creatures.tga │ │ ├── r2ed_icon_permanent_group.tga │ │ ├── r2ed_icon_permanent_group_creatures.tga │ │ ├── r2ed_icon_permanent_macro_components.tga │ │ ├── r2ed_icon_region.tga │ │ ├── r2ed_icon_road.tga │ │ ├── r2ed_icon_rotate.tga │ │ ├── r2ed_icon_stop.tga │ │ ├── r2ed_invalid_event_small.tga │ │ ├── r2ed_island_border.tga │ │ ├── r2ed_island_border_select.tga │ │ ├── r2ed_island_corner.tga │ │ ├── r2ed_island_corner_select.tga │ │ ├── r2ed_jungle_l.tga │ │ ├── r2ed_jungle_m.tga │ │ ├── r2ed_jungle_pushed_l.tga │ │ ├── r2ed_jungle_pushed_m.tga │ │ ├── r2ed_jungle_pushed_r.tga │ │ ├── r2ed_jungle_r.tga │ │ ├── r2ed_kicked_char.tga │ │ ├── r2ed_lakes_l.tga │ │ ├── r2ed_lakes_m.tga │ │ ├── r2ed_lakes_pushed_l.tga │ │ ├── r2ed_lakes_pushed_m.tga │ │ ├── r2ed_lakes_pushed_r.tga │ │ ├── r2ed_lakes_r.tga │ │ ├── r2ed_left_sequence.tga │ │ ├── r2ed_liberalRules.tga │ │ ├── r2ed_little_island_border_select.tga │ │ ├── r2ed_little_island_corner_select.tga │ │ ├── r2ed_newLocation.tga │ │ ├── r2ed_not_current_act.tga │ │ ├── r2ed_open_activities.tga │ │ ├── r2ed_permanent_content.tga │ │ ├── r2ed_permanent_content_over.tga │ │ ├── r2ed_permanent_content_pushed.tga │ │ ├── r2ed_permanent_content_small.tga │ │ ├── r2ed_permanent_node.tga │ │ ├── r2ed_permanent_pins.tga │ │ ├── r2ed_previousLocations.tga │ │ ├── r2ed_prime_roots_l.tga │ │ ├── r2ed_prime_roots_m.tga │ │ ├── r2ed_prime_roots_pushed_l.tga │ │ ├── r2ed_prime_roots_pushed_m.tga │ │ ├── r2ed_prime_roots_pushed_r.tga │ │ ├── r2ed_prime_roots_r.tga │ │ ├── r2ed_right_sequence.tga │ │ ├── r2ed_ring_rating_1.tga │ │ ├── r2ed_ring_rating_10.tga │ │ ├── r2ed_ring_rating_2.tga │ │ ├── r2ed_ring_rating_3.tga │ │ ├── r2ed_ring_rating_4.tga │ │ ├── r2ed_ring_rating_5.tga │ │ ├── r2ed_ring_rating_6.tga │ │ ├── r2ed_ring_rating_7.tga │ │ ├── r2ed_ring_rating_8.tga │ │ ├── r2ed_ring_rating_9.tga │ │ ├── r2ed_spring.tga │ │ ├── r2ed_storm.tga │ │ ├── r2ed_strictRules.tga │ │ ├── r2ed_summer.tga │ │ ├── r2ed_sun.tga │ │ ├── r2ed_tool_bg.tga │ │ ├── r2ed_tool_border.tga │ │ ├── r2ed_tool_border_select.tga │ │ ├── r2ed_tool_border_select_g.tga │ │ ├── r2ed_tool_can_pick.tga │ │ ├── r2ed_tool_can_rotate.tga │ │ ├── r2ed_tool_can_rotate_over.tga │ │ ├── r2ed_tool_can_rotate_pushed.tga │ │ ├── r2ed_tool_copy.tga │ │ ├── r2ed_tool_copy_over.tga │ │ ├── r2ed_tool_copy_pushed.tga │ │ ├── r2ed_tool_corner.tga │ │ ├── r2ed_tool_corner_select.tga │ │ ├── r2ed_tool_corner_select_g.tga │ │ ├── r2ed_tool_display_mode.tga │ │ ├── r2ed_tool_display_mode_over.tga │ │ ├── r2ed_tool_display_mode_pushed.tga │ │ ├── r2ed_tool_draw_region.psd │ │ ├── r2ed_tool_draw_region.tga │ │ ├── r2ed_tool_draw_region_over.psd │ │ ├── r2ed_tool_draw_region_over.tga │ │ ├── r2ed_tool_draw_region_pushed.tga │ │ ├── r2ed_tool_draw_road.psd │ │ ├── r2ed_tool_draw_road.tga │ │ ├── r2ed_tool_draw_road_base.psd │ │ ├── r2ed_tool_draw_road_over.psd │ │ ├── r2ed_tool_draw_road_over.tga │ │ ├── r2ed_tool_draw_road_pushed.tga │ │ ├── r2ed_tool_extend_prim.tga │ │ ├── r2ed_tool_extend_prim_over.tga │ │ ├── r2ed_tool_extend_prim_pushed.tga │ │ ├── r2ed_tool_extend_prim_small.tga │ │ ├── r2ed_tool_freeze_object.tga │ │ ├── r2ed_tool_freeze_object_over.tga │ │ ├── r2ed_tool_freeze_object_pushed.tga │ │ ├── r2ed_tool_go_test.tga │ │ ├── r2ed_tool_go_test_over.tga │ │ ├── r2ed_tool_go_test_pushed.tga │ │ ├── r2ed_tool_map_window.tga │ │ ├── r2ed_tool_map_window_over.tga │ │ ├── r2ed_tool_map_window_pushed.tga │ │ ├── r2ed_tool_new_vertex.tga │ │ ├── r2ed_tool_new_vertex_over.tga │ │ ├── r2ed_tool_new_vertex_pushed.tga │ │ ├── r2ed_tool_new_vertex_small.tga │ │ ├── r2ed_tool_palette_window.tga │ │ ├── r2ed_tool_palette_window_over.tga │ │ ├── r2ed_tool_palette_window_pushed.tga │ │ ├── r2ed_tool_paste.tga │ │ ├── r2ed_tool_paste_over.tga │ │ ├── r2ed_tool_paste_pushed.tga │ │ ├── r2ed_tool_pick.tga │ │ ├── r2ed_tool_prim_display_mode.tga │ │ ├── r2ed_tool_prim_display_mode_over.tga │ │ ├── r2ed_tool_prim_display_mode_pushed.tga │ │ ├── r2ed_tool_redo.tga │ │ ├── r2ed_tool_redo_disabled.tga │ │ ├── r2ed_tool_redo_over.tga │ │ ├── r2ed_tool_redo_pushed.tga │ │ ├── r2ed_tool_rotate.tga │ │ ├── r2ed_tool_rotate_over.tga │ │ ├── r2ed_tool_rotate_pushed.tga │ │ ├── r2ed_tool_rotate_small.tga │ │ ├── r2ed_tool_rotating.tga │ │ ├── r2ed_tool_scenario_window.tga │ │ ├── r2ed_tool_scenario_window_over.tga │ │ ├── r2ed_tool_scenario_window_pushed.tga │ │ ├── r2ed_tool_select.tga │ │ ├── r2ed_tool_select_move.tga │ │ ├── r2ed_tool_select_move_over.tga │ │ ├── r2ed_tool_select_move_pushed.tga │ │ ├── r2ed_tool_select_move_small.tga │ │ ├── r2ed_tool_select_over.tga │ │ ├── r2ed_tool_select_pushed.tga │ │ ├── r2ed_tool_split_road_over.psd │ │ ├── r2ed_tool_start.tga │ │ ├── r2ed_tool_start_over.tga │ │ ├── r2ed_tool_start_pushed.tga │ │ ├── r2ed_tool_stop.tga │ │ ├── r2ed_tool_stop_over.tga │ │ ├── r2ed_tool_stop_pushed.tga │ │ ├── r2ed_tool_teleport.tga │ │ ├── r2ed_tool_teleport_over.tga │ │ ├── r2ed_tool_teleport_pushed.tga │ │ ├── r2ed_tool_undo.tga │ │ ├── r2ed_tool_undo_disabled.tga │ │ ├── r2ed_tool_undo_over.tga │ │ ├── r2ed_tool_undo_pushed.tga │ │ ├── r2ed_tool_unfreeze_object.tga │ │ ├── r2ed_tool_unfreeze_object_over.tga │ │ ├── r2ed_tool_unfreeze_object_pushed.tga │ │ ├── r2ed_toolbar_feed_zone.tga │ │ ├── r2ed_toolbar_feed_zone_over.tga │ │ ├── r2ed_toolbar_feed_zone_pushed.tga │ │ ├── r2ed_toolbar_feed_zone_small.tga │ │ ├── r2ed_toolbar_freeze.tga │ │ ├── r2ed_toolbar_freeze_over.tga │ │ ├── r2ed_toolbar_freeze_pushed.tga │ │ ├── r2ed_toolbar_freeze_small.tga │ │ ├── r2ed_toolbar_guard_zone.tga │ │ ├── r2ed_toolbar_guard_zone_over.tga │ │ ├── r2ed_toolbar_guard_zone_pushed.tga │ │ ├── r2ed_toolbar_guard_zone_small.tga │ │ ├── r2ed_toolbar_hide.tga │ │ ├── r2ed_toolbar_hide_over.tga │ │ ├── r2ed_toolbar_hide_pushed.tga │ │ ├── r2ed_toolbar_hide_small.tga │ │ ├── r2ed_toolbar_hunt_zone.tga │ │ ├── r2ed_toolbar_hunt_zone_over.tga │ │ ├── r2ed_toolbar_hunt_zone_pushed.tga │ │ ├── r2ed_toolbar_hunt_zone_small.tga │ │ ├── r2ed_toolbar_lock.tga │ │ ├── r2ed_toolbar_lock_over.tga │ │ ├── r2ed_toolbar_lock_pushed.tga │ │ ├── r2ed_toolbar_lock_small.tga │ │ ├── r2ed_toolbar_rest_zone.tga │ │ ├── r2ed_toolbar_rest_zone_over.tga │ │ ├── r2ed_toolbar_rest_zone_pushed.tga │ │ ├── r2ed_toolbar_rest_zone_small.tga │ │ ├── r2ed_toolbar_show.tga │ │ ├── r2ed_toolbar_show_over.tga │ │ ├── r2ed_toolbar_show_pushed.tga │ │ ├── r2ed_toolbar_show_small.tga │ │ ├── r2ed_toolbar_unfreeze.tga │ │ ├── r2ed_toolbar_unfreeze_over.tga │ │ ├── r2ed_toolbar_unfreeze_pushed.tga │ │ ├── r2ed_toolbar_unfreeze_small.tga │ │ ├── r2ed_toolbar_unlock.tga │ │ ├── r2ed_toolbar_unlock_over.tga │ │ ├── r2ed_toolbar_unlock_pushed.tga │ │ ├── r2ed_toolbar_unlock_small.tga │ │ ├── r2ed_toolbar_work_zone.tga │ │ ├── r2ed_toolbar_work_zone_over.tga │ │ ├── r2ed_toolbar_work_zone_pushed.tga │ │ ├── r2ed_toolbar_work_zone_small.tga │ │ ├── r2ed_triggers_blank.tga │ │ ├── r2ed_triggers_border.tga │ │ ├── r2ed_triggers_corner.tga │ │ ├── r2ed_triggers_gray.tga │ │ ├── r2ed_triggers_little_border.tga │ │ ├── r2ed_triggers_little_chat.tga │ │ ├── r2ed_triggers_little_corner.tga │ │ ├── r2ed_triggers_little_less.tga │ │ ├── r2ed_triggers_little_more.tga │ │ ├── r2ed_triggers_little_trash.tga │ │ ├── r2ed_triggers_maximize.tga │ │ ├── r2ed_triggers_minimize.tga │ │ ├── r2ed_triggers_more.tga │ │ ├── r2ed_triggers_select.tga │ │ ├── r2ed_triggers_trash.tga │ │ ├── r2ed_up_element.tga │ │ ├── r2ed_winter.tga │ │ ├── road_flag.max │ │ ├── road_flag.shape │ │ ├── rollout_closed.tga │ │ └── rollout_opened.tga │ ├── macosx │ │ ├── Info.plist │ │ ├── PkgInfo │ │ └── ryzom.icns │ ├── patcher │ │ ├── CMakeLists.txt │ │ ├── de.uxt │ │ ├── en.uxt │ │ ├── fr.uxt │ │ └── ru.uxt │ ├── src │ │ ├── 3d_notes.cpp │ │ ├── 3d_notes.h │ │ ├── CMakeLists.txt │ │ ├── actions.cpp │ │ ├── actions.h │ │ ├── actions_client.cpp │ │ ├── actions_client.h │ │ ├── animated_scene_object.cpp │ │ ├── animated_scene_object.h │ │ ├── animation.cpp │ │ ├── animation.h │ │ ├── animation_fx.cpp │ │ ├── animation_fx.h │ │ ├── animation_fx_id_array.cpp │ │ ├── animation_fx_id_array.h │ │ ├── animation_fx_misc.cpp │ │ ├── animation_fx_misc.h │ │ ├── animation_fx_sheet.cpp │ │ ├── animation_fx_sheet.h │ │ ├── animation_misc.cpp │ │ ├── animation_misc.h │ │ ├── animation_set.cpp │ │ ├── animation_set.h │ │ ├── animation_state.cpp │ │ ├── animation_state.h │ │ ├── animation_type.h │ │ ├── app_bundle_utils.cpp │ │ ├── app_bundle_utils.h │ │ ├── attached_fx.cpp │ │ ├── attached_fx.h │ │ ├── attack.h │ │ ├── attack_info.h │ │ ├── attack_list.cpp │ │ ├── attack_list.h │ │ ├── auto_anim.cpp │ │ ├── auto_anim.h │ │ ├── behaviour_context.cpp │ │ ├── behaviour_context.h │ │ ├── bg_downloader_access.cpp │ │ ├── bg_downloader_access.h │ │ ├── browse_faq.cpp │ │ ├── browse_faq.h │ │ ├── bug_report │ │ │ ├── EmailDlg.cpp │ │ │ ├── EmailDlg.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── bug_report.cpp │ │ │ ├── bug_report.h │ │ │ ├── bug_report.rc │ │ │ ├── bug_reportDlg.cpp │ │ │ ├── bug_reportDlg.h │ │ │ ├── res │ │ │ │ ├── bug_report.ico │ │ │ │ └── bug_report.rc2 │ │ │ └── resource.h │ │ ├── camera_recorder.cpp │ │ ├── camera_recorder.h │ │ ├── candidate.h │ │ ├── cdb.cpp │ │ ├── cdb.h │ │ ├── cdb_branch.cpp │ │ ├── cdb_branch.h │ │ ├── cdb_check_sum.cpp │ │ ├── cdb_check_sum.h │ │ ├── cdb_leaf.cpp │ │ ├── cdb_leaf.h │ │ ├── cdb_synchronised.cpp │ │ ├── cdb_synchronised.h │ │ ├── character_cl.cpp │ │ ├── character_cl.h │ │ ├── client.cpp │ │ ├── client.rc │ │ ├── client_cfg.cpp │ │ ├── client_cfg.h │ │ ├── client_chat_manager.cpp │ │ ├── client_chat_manager.h │ │ ├── client_sheets │ │ │ ├── CMakeLists.txt │ │ │ ├── animation_fx_set_sheet.cpp │ │ │ ├── animation_fx_set_sheet.h │ │ │ ├── animation_fx_sheet.cpp │ │ │ ├── animation_fx_sheet.h │ │ │ ├── animation_set_list_sheet.cpp │ │ │ ├── animation_set_list_sheet.h │ │ │ ├── attack_id_sheet.cpp │ │ │ ├── attack_id_sheet.h │ │ │ ├── attack_list_sheet.cpp │ │ │ ├── attack_list_sheet.h │ │ │ ├── attack_sheet.cpp │ │ │ ├── attack_sheet.h │ │ │ ├── automaton_list_sheet.cpp │ │ │ ├── automaton_list_sheet.h │ │ │ ├── body_to_bone_sheet.cpp │ │ │ ├── body_to_bone_sheet.h │ │ │ ├── building_sheet.cpp │ │ │ ├── building_sheet.h │ │ │ ├── character_sheet.cpp │ │ │ ├── character_sheet.h │ │ │ ├── client_sheets.cpp │ │ │ ├── client_sheets.h │ │ │ ├── continent_sheet.cpp │ │ │ ├── continent_sheet.h │ │ │ ├── emot_list_sheet.cpp │ │ │ ├── emot_list_sheet.h │ │ │ ├── entity_sheet.cpp │ │ │ ├── entity_sheet.h │ │ │ ├── faction_sheet.cpp │ │ │ ├── faction_sheet.h │ │ │ ├── flora_sheet.cpp │ │ │ ├── flora_sheet.h │ │ │ ├── forage_source_sheet.cpp │ │ │ ├── forage_source_sheet.h │ │ │ ├── fx_sheet.cpp │ │ │ ├── fx_sheet.h │ │ │ ├── fx_stick_mode.cpp │ │ │ ├── fx_stick_mode.h │ │ │ ├── ground_fx_sheet.cpp │ │ │ ├── ground_fx_sheet.h │ │ │ ├── id_to_string_array.cpp │ │ │ ├── id_to_string_array.h │ │ │ ├── item_fx_sheet.cpp │ │ │ ├── item_fx_sheet.h │ │ │ ├── item_sheet.cpp │ │ │ ├── item_sheet.h │ │ │ ├── light_cycle_sheet.cpp │ │ │ ├── light_cycle_sheet.h │ │ │ ├── mission_icon_sheet.cpp │ │ │ ├── mission_icon_sheet.h │ │ │ ├── mission_sheet.cpp │ │ │ ├── mission_sheet.h │ │ │ ├── outpost_building_sheet.cpp │ │ │ ├── outpost_building_sheet.h │ │ │ ├── outpost_sheet.cpp │ │ │ ├── outpost_sheet.h │ │ │ ├── outpost_squad_sheet.cpp │ │ │ ├── outpost_squad_sheet.h │ │ │ ├── pact_sheet.cpp │ │ │ ├── pact_sheet.h │ │ │ ├── plant_sheet.cpp │ │ │ ├── plant_sheet.h │ │ │ ├── player_sheet.cpp │ │ │ ├── player_sheet.h │ │ │ ├── race_stats_sheet.cpp │ │ │ ├── race_stats_sheet.h │ │ │ ├── sbrick_sheet.cpp │ │ │ ├── sbrick_sheet.h │ │ │ ├── skills_tree_sheet.cpp │ │ │ ├── skills_tree_sheet.h │ │ │ ├── sky_object_sheet.cpp │ │ │ ├── sky_object_sheet.h │ │ │ ├── sky_sheet.cpp │ │ │ ├── sky_sheet.h │ │ │ ├── sphrase_sheet.cpp │ │ │ ├── sphrase_sheet.h │ │ │ ├── stdpch.cpp │ │ │ ├── stdpch.h │ │ │ ├── success_table_sheet.cpp │ │ │ ├── success_table_sheet.h │ │ │ ├── text_emot_list_sheet.cpp │ │ │ ├── text_emot_list_sheet.h │ │ │ ├── unblock_titles_sheet.cpp │ │ │ ├── unblock_titles_sheet.h │ │ │ ├── village_sheet.cpp │ │ │ ├── village_sheet.h │ │ │ ├── weather_function_params_sheet.cpp │ │ │ ├── weather_function_params_sheet.h │ │ │ ├── weather_setup_sheet.cpp │ │ │ ├── weather_setup_sheet.h │ │ │ ├── world_sheet.cpp │ │ │ └── world_sheet.h │ │ ├── color_slot_manager.cpp │ │ ├── color_slot_manager.h │ │ ├── commands.cpp │ │ ├── commands.h │ │ ├── connection.cpp │ │ ├── connection.h │ │ ├── contextual_cursor.cpp │ │ ├── contextual_cursor.h │ │ ├── continent.cpp │ │ ├── continent.h │ │ ├── continent_manager.cpp │ │ ├── continent_manager.h │ │ ├── continent_manager_build.cpp │ │ ├── continent_manager_build.h │ │ ├── cursor_functions.cpp │ │ ├── cursor_functions.h │ │ ├── custom_matrix.cpp │ │ ├── custom_matrix.h │ │ ├── debug_client.cpp │ │ ├── debug_client.h │ │ ├── decal.cpp │ │ ├── decal.h │ │ ├── decal_anim.cpp │ │ ├── decal_anim.h │ │ ├── demo.cpp │ │ ├── demo.h │ │ ├── door_manager.cpp │ │ ├── door_manager.h │ │ ├── dummy_progress.h │ │ ├── entities.cpp │ │ ├── entities.h │ │ ├── entity_animation_manager.cpp │ │ ├── entity_animation_manager.h │ │ ├── entity_cl.cpp │ │ ├── entity_cl.h │ │ ├── entity_fx.cpp │ │ ├── entity_fx.h │ │ ├── error_logo.bmp │ │ ├── events_listener.cpp │ │ ├── events_listener.h │ │ ├── faction_war_manager.cpp │ │ ├── faction_war_manager.h │ │ ├── far_tp.cpp │ │ ├── far_tp.h │ │ ├── fix_season_data.cpp │ │ ├── fix_season_data.h │ │ ├── fog_map.cpp │ │ ├── fog_map.h │ │ ├── forage_source_cl.cpp │ │ ├── forage_source_cl.h │ │ ├── fx_cl.cpp │ │ ├── fx_cl.h │ │ ├── fx_manager.cpp │ │ ├── fx_manager.h │ │ ├── gabarit.cpp │ │ ├── gabarit.h │ │ ├── game_context_menu.cpp │ │ ├── game_context_menu.h │ │ ├── gateway_fec_transport.cpp │ │ ├── global.cpp │ │ ├── global.h │ │ ├── graph.cpp │ │ ├── graph.h │ │ ├── graphic.cpp │ │ ├── graphic.h │ │ ├── ground_fx_manager.cpp │ │ ├── ground_fx_manager.h │ │ ├── hair_set.cpp │ │ ├── hair_set.h │ │ ├── http_client_curl.cpp │ │ ├── http_client_curl.h │ │ ├── ig_callback.cpp │ │ ├── ig_callback.h │ │ ├── ig_client.cpp │ │ ├── ig_client.h │ │ ├── ig_enum.cpp │ │ ├── ig_enum.h │ │ ├── ig_season_callback.cpp │ │ ├── ig_season_callback.h │ │ ├── impulse_decoder.cpp │ │ ├── impulse_decoder.h │ │ ├── ingame_database_manager.cpp │ │ ├── ingame_database_manager.h │ │ ├── init.cpp │ │ ├── init.h │ │ ├── init_main_loop.cpp │ │ ├── init_main_loop.h │ │ ├── input.cpp │ │ ├── input.h │ │ ├── interface_v3 │ │ │ ├── action_handler.cpp │ │ │ ├── action_handler.h │ │ │ ├── action_handler_debug.cpp │ │ │ ├── action_handler_edit.cpp │ │ │ ├── action_handler_game.cpp │ │ │ ├── action_handler_help.cpp │ │ │ ├── action_handler_help.h │ │ │ ├── action_handler_item.cpp │ │ │ ├── action_handler_item.h │ │ │ ├── action_handler_misc.cpp │ │ │ ├── action_handler_misc.h │ │ │ ├── action_handler_move.cpp │ │ │ ├── action_handler_outpost.cpp │ │ │ ├── action_handler_phrase.cpp │ │ │ ├── action_handler_tools.cpp │ │ │ ├── action_handler_tools.h │ │ │ ├── action_handler_ui.cpp │ │ │ ├── action_phrase_faber.cpp │ │ │ ├── action_phrase_faber.h │ │ │ ├── add_on_manager.cpp │ │ │ ├── add_on_manager.h │ │ │ ├── animal_position_state.cpp │ │ │ ├── animal_position_state.h │ │ │ ├── bar_manager.cpp │ │ │ ├── bar_manager.h │ │ │ ├── bonus_malus.cpp │ │ │ ├── bonus_malus.h │ │ │ ├── bot_chat_manager.cpp │ │ │ ├── bot_chat_manager.h │ │ │ ├── bot_chat_page.cpp │ │ │ ├── bot_chat_page.h │ │ │ ├── bot_chat_page_all.cpp │ │ │ ├── bot_chat_page_all.h │ │ │ ├── bot_chat_page_create_guild.cpp │ │ │ ├── bot_chat_page_create_guild.h │ │ │ ├── bot_chat_page_dynamic_mission.cpp │ │ │ ├── bot_chat_page_dynamic_mission.h │ │ │ ├── bot_chat_page_mission.cpp │ │ │ ├── bot_chat_page_mission.h │ │ │ ├── bot_chat_page_mission_end.cpp │ │ │ ├── bot_chat_page_mission_end.h │ │ │ ├── bot_chat_page_news.cpp │ │ │ ├── bot_chat_page_news.h │ │ │ ├── bot_chat_page_player_gift.cpp │ │ │ ├── bot_chat_page_player_gift.h │ │ │ ├── bot_chat_page_ring_sessions.cpp │ │ │ ├── bot_chat_page_ring_sessions.h │ │ │ ├── bot_chat_page_trade.cpp │ │ │ ├── bot_chat_page_trade.h │ │ │ ├── brick_learned_callback.cpp │ │ │ ├── brick_learned_callback.h │ │ │ ├── character_3d.cpp │ │ │ ├── character_3d.h │ │ │ ├── chat_displayer.cpp │ │ │ ├── chat_displayer.h │ │ │ ├── chat_filter.cpp │ │ │ ├── chat_filter.h │ │ │ ├── chat_text_manager.cpp │ │ │ ├── chat_text_manager.h │ │ │ ├── chat_window.cpp │ │ │ ├── chat_window.h │ │ │ ├── ctrl_base.cpp │ │ │ ├── ctrl_base.h │ │ │ ├── ctrl_base_button.cpp │ │ │ ├── ctrl_base_button.h │ │ │ ├── ctrl_button.cpp │ │ │ ├── ctrl_button.h │ │ │ ├── ctrl_col_pick.cpp │ │ │ ├── ctrl_col_pick.h │ │ │ ├── ctrl_polygon.cpp │ │ │ ├── ctrl_polygon.h │ │ │ ├── ctrl_quad.cpp │ │ │ ├── ctrl_quad.h │ │ │ ├── ctrl_scroll.cpp │ │ │ ├── ctrl_scroll.h │ │ │ ├── ctrl_sheet_selection.cpp │ │ │ ├── ctrl_sheet_selection.h │ │ │ ├── ctrl_text_button.cpp │ │ │ ├── ctrl_text_button.h │ │ │ ├── ctrl_tooltip.cpp │ │ │ ├── ctrl_tooltip.h │ │ │ ├── dbctrl_sheet.cpp │ │ │ ├── dbctrl_sheet.h │ │ │ ├── dbgroup_build_phrase.cpp │ │ │ ├── dbgroup_build_phrase.h │ │ │ ├── dbgroup_combo_box.cpp │ │ │ ├── dbgroup_combo_box.h │ │ │ ├── dbgroup_list_sheet.cpp │ │ │ ├── dbgroup_list_sheet.h │ │ │ ├── dbgroup_list_sheet_bonus_malus.cpp │ │ │ ├── dbgroup_list_sheet_bonus_malus.h │ │ │ ├── dbgroup_list_sheet_icon_phrase.cpp │ │ │ ├── dbgroup_list_sheet_icon_phrase.h │ │ │ ├── dbgroup_list_sheet_mission.cpp │ │ │ ├── dbgroup_list_sheet_mission.h │ │ │ ├── dbgroup_list_sheet_text.cpp │ │ │ ├── dbgroup_list_sheet_text.h │ │ │ ├── dbgroup_list_sheet_text_brick_composition.cpp │ │ │ ├── dbgroup_list_sheet_text_brick_composition.h │ │ │ ├── dbgroup_list_sheet_text_phrase.cpp │ │ │ ├── dbgroup_list_sheet_text_phrase.h │ │ │ ├── dbgroup_list_sheet_text_phrase_id.cpp │ │ │ ├── dbgroup_list_sheet_text_phrase_id.h │ │ │ ├── dbgroup_list_sheet_text_share.cpp │ │ │ ├── dbgroup_list_sheet_text_share.h │ │ │ ├── dbgroup_list_sheet_trade.cpp │ │ │ ├── dbgroup_list_sheet_trade.h │ │ │ ├── dbgroup_select_number.cpp │ │ │ ├── dbgroup_select_number.h │ │ │ ├── dbview_bar.cpp │ │ │ ├── dbview_bar.h │ │ │ ├── dbview_bar3.cpp │ │ │ ├── dbview_bar3.h │ │ │ ├── dbview_digit.cpp │ │ │ ├── dbview_digit.h │ │ │ ├── dbview_number.cpp │ │ │ ├── dbview_number.h │ │ │ ├── dbview_quantity.cpp │ │ │ ├── dbview_quantity.h │ │ │ ├── encyclopedia_manager.cpp │ │ │ ├── encyclopedia_manager.h │ │ │ ├── event_descriptor.cpp │ │ │ ├── event_descriptor.h │ │ │ ├── filtered_chat_summary.cpp │ │ │ ├── filtered_chat_summary.h │ │ │ ├── flying_text_manager.cpp │ │ │ ├── flying_text_manager.h │ │ │ ├── group_career.cpp │ │ │ ├── group_career.h │ │ │ ├── group_compas.cpp │ │ │ ├── group_compas.h │ │ │ ├── group_container.cpp │ │ │ ├── group_container.h │ │ │ ├── group_editbox.cpp │ │ │ ├── group_editbox.h │ │ │ ├── group_frame.cpp │ │ │ ├── group_frame.h │ │ │ ├── group_header.cpp │ │ │ ├── group_header.h │ │ │ ├── group_html.cpp │ │ │ ├── group_html.h │ │ │ ├── group_html_cs.cpp │ │ │ ├── group_html_cs.h │ │ │ ├── group_html_forum.cpp │ │ │ ├── group_html_forum.h │ │ │ ├── group_html_mail.cpp │ │ │ ├── group_html_mail.h │ │ │ ├── group_html_qcm.cpp │ │ │ ├── group_html_qcm.h │ │ │ ├── group_html_webig.cpp │ │ │ ├── group_html_webig.h │ │ │ ├── group_in_scene.cpp │ │ │ ├── group_in_scene.h │ │ │ ├── group_in_scene_bubble.cpp │ │ │ ├── group_in_scene_bubble.h │ │ │ ├── group_in_scene_user_info.cpp │ │ │ ├── group_in_scene_user_info.h │ │ │ ├── group_list.cpp │ │ │ ├── group_list.h │ │ │ ├── group_map.cpp │ │ │ ├── group_map.h │ │ │ ├── group_menu.cpp │ │ │ ├── group_menu.h │ │ │ ├── group_modal.cpp │ │ │ ├── group_modal.h │ │ │ ├── group_modal_get_key.cpp │ │ │ ├── group_modal_get_key.h │ │ │ ├── group_paragraph.cpp │ │ │ ├── group_paragraph.h │ │ │ ├── group_phrase_skill_filter.cpp │ │ │ ├── group_phrase_skill_filter.h │ │ │ ├── group_quick_help.cpp │ │ │ ├── group_quick_help.h │ │ │ ├── group_scrolltext.cpp │ │ │ ├── group_scrolltext.h │ │ │ ├── group_skills.cpp │ │ │ ├── group_skills.h │ │ │ ├── group_tab.cpp │ │ │ ├── group_tab.h │ │ │ ├── group_table.cpp │ │ │ ├── group_table.h │ │ │ ├── group_tree.cpp │ │ │ ├── group_tree.h │ │ │ ├── group_wheel.cpp │ │ │ ├── group_wheel.h │ │ │ ├── guild_manager.cpp │ │ │ ├── guild_manager.h │ │ │ ├── input_handler_manager.cpp │ │ │ ├── input_handler_manager.h │ │ │ ├── interface_3d_scene.cpp │ │ │ ├── interface_3d_scene.h │ │ │ ├── interface_anim.cpp │ │ │ ├── interface_anim.h │ │ │ ├── interface_config.cpp │ │ │ ├── interface_config.h │ │ │ ├── interface_ddx.cpp │ │ │ ├── interface_ddx.h │ │ │ ├── interface_element.cpp │ │ │ ├── interface_element.h │ │ │ ├── interface_expr.cpp │ │ │ ├── interface_expr.h │ │ │ ├── interface_expr_node.cpp │ │ │ ├── interface_expr_node.h │ │ │ ├── interface_expr_user_fct.cpp │ │ │ ├── interface_expr_user_fct_game.cpp │ │ │ ├── interface_expr_user_fct_items.cpp │ │ │ ├── interface_group.cpp │ │ │ ├── interface_group.h │ │ │ ├── interface_link.cpp │ │ │ ├── interface_link.h │ │ │ ├── interface_manager.cpp │ │ │ ├── interface_manager.h │ │ │ ├── interface_observer.cpp │ │ │ ├── interface_observer.h │ │ │ ├── interface_options.cpp │ │ │ ├── interface_options.h │ │ │ ├── interface_parser.cpp │ │ │ ├── interface_parser.h │ │ │ ├── interface_pointer.h │ │ │ ├── interface_property.cpp │ │ │ ├── interface_property.h │ │ │ ├── inventory_manager.cpp │ │ │ ├── inventory_manager.h │ │ │ ├── item_consumable_effect.cpp │ │ │ ├── item_consumable_effect.h │ │ │ ├── item_special_effect.cpp │ │ │ ├── item_special_effect.h │ │ │ ├── libwww_nel_stream.cpp │ │ │ ├── libwww_nel_stream.h │ │ │ ├── list_sheet_base.cpp │ │ │ ├── list_sheet_base.h │ │ │ ├── lua_dll.cpp │ │ │ ├── lua_dll.h │ │ │ ├── lua_helper.cpp │ │ │ ├── lua_helper.h │ │ │ ├── lua_helper_inline.h │ │ │ ├── lua_ihm.cpp │ │ │ ├── lua_ihm.h │ │ │ ├── lua_loadlib.c │ │ │ ├── lua_loadlib.h │ │ │ ├── lua_object.cpp │ │ │ ├── lua_object.h │ │ │ ├── macrocmd_key.cpp │ │ │ ├── macrocmd_key.h │ │ │ ├── macrocmd_manager.cpp │ │ │ ├── macrocmd_manager.h │ │ │ ├── music_player.cpp │ │ │ ├── music_player.h │ │ │ ├── obs_huge_list.cpp │ │ │ ├── obs_huge_list.h │ │ │ ├── people_interraction.cpp │ │ │ ├── people_interraction.h │ │ │ ├── people_list.cpp │ │ │ ├── people_list.h │ │ │ ├── player_trade.cpp │ │ │ ├── player_trade.h │ │ │ ├── reflect.cpp │ │ │ ├── reflect.h │ │ │ ├── register_interface_elements.cpp │ │ │ ├── register_interface_elements.h │ │ │ ├── req_skill_formula.cpp │ │ │ ├── req_skill_formula.h │ │ │ ├── sbrick_manager.cpp │ │ │ ├── sbrick_manager.h │ │ │ ├── skill_change_callback.cpp │ │ │ ├── skill_change_callback.h │ │ │ ├── skill_manager.cpp │ │ │ ├── skill_manager.h │ │ │ ├── sphrase_manager.cpp │ │ │ ├── sphrase_manager.h │ │ │ ├── task_bar_manager.cpp │ │ │ ├── task_bar_manager.h │ │ │ ├── trade_common.cpp │ │ │ ├── trade_common.h │ │ │ ├── view_base.cpp │ │ │ ├── view_base.h │ │ │ ├── view_bitmap.cpp │ │ │ ├── view_bitmap.h │ │ │ ├── view_bitmap_combo.cpp │ │ │ ├── view_bitmap_combo.h │ │ │ ├── view_bitmap_faber_mp.cpp │ │ │ ├── view_bitmap_faber_mp.h │ │ │ ├── view_bitmap_progress.cpp │ │ │ ├── view_bitmap_progress.h │ │ │ ├── view_link.cpp │ │ │ ├── view_link.h │ │ │ ├── view_pointer.cpp │ │ │ ├── view_pointer.h │ │ │ ├── view_polygon.cpp │ │ │ ├── view_polygon.h │ │ │ ├── view_quad.cpp │ │ │ ├── view_quad.h │ │ │ ├── view_radar.cpp │ │ │ ├── view_radar.h │ │ │ ├── view_renderer.cpp │ │ │ ├── view_renderer.h │ │ │ ├── view_text.cpp │ │ │ ├── view_text.h │ │ │ ├── view_text_formated.cpp │ │ │ ├── view_text_formated.h │ │ │ ├── view_text_id.cpp │ │ │ ├── view_text_id.h │ │ │ ├── view_text_id_formated.cpp │ │ │ ├── view_text_id_formated.h │ │ │ ├── yubo_chat.cpp │ │ │ └── yubo_chat.h │ │ ├── interfaces_manager │ │ │ ├── bitmap.cpp │ │ │ ├── bitmap.h │ │ │ ├── bitmap_base.cpp │ │ │ ├── bitmap_base.h │ │ │ ├── brick_control.cpp │ │ │ ├── brick_control.h │ │ │ ├── brick_receptacle.cpp │ │ │ ├── brick_receptacle.h │ │ │ ├── button.cpp │ │ │ ├── button.h │ │ │ ├── button_base.cpp │ │ │ ├── button_base.h │ │ │ ├── candidate_list.cpp │ │ │ ├── candidate_list.h │ │ │ ├── capture.cpp │ │ │ ├── capture.h │ │ │ ├── casting_bar.cpp │ │ │ ├── casting_bar.h │ │ │ ├── chat_control.cpp │ │ │ ├── chat_control.h │ │ │ ├── chat_input.cpp │ │ │ ├── chat_input.h │ │ │ ├── choice_list.cpp │ │ │ ├── choice_list.h │ │ │ ├── control.cpp │ │ │ ├── control.h │ │ │ ├── control_list.cpp │ │ │ ├── control_list.h │ │ │ ├── horizontal_list.cpp │ │ │ ├── horizontal_list.h │ │ │ ├── interf_list.cpp │ │ │ ├── interf_list.h │ │ │ ├── interf_script.cpp │ │ │ ├── interf_script.h │ │ │ ├── interfaces_manager.cpp │ │ │ ├── interfaces_manager.h │ │ │ ├── multi_list.cpp │ │ │ ├── multi_list.h │ │ │ ├── osd.cpp │ │ │ ├── osd.h │ │ │ ├── osd_base.cpp │ │ │ ├── osd_base.h │ │ │ ├── pen.cpp │ │ │ ├── pen.h │ │ │ ├── progress_bar.cpp │ │ │ ├── progress_bar.h │ │ │ ├── radio_button.cpp │ │ │ ├── radio_button.h │ │ │ ├── radio_controller.cpp │ │ │ ├── radio_controller.h │ │ │ ├── scroll_bar.cpp │ │ │ ├── scroll_bar.h │ │ │ ├── scrollable_control.cpp │ │ │ ├── scrollable_control.h │ │ │ ├── spell_control.cpp │ │ │ ├── spell_control.h │ │ │ ├── spell_list.cpp │ │ │ ├── spell_list.h │ │ │ ├── text.cpp │ │ │ └── text.h │ │ ├── item_cl.cpp │ │ ├── item_cl.h │ │ ├── landscape_poly_drawer.cpp │ │ ├── landscape_poly_drawer.h │ │ ├── libwww.cpp │ │ ├── libwww.h │ │ ├── light_cycle_manager.cpp │ │ ├── light_cycle_manager.h │ │ ├── lod_character_user_manager.cpp │ │ ├── lod_character_user_manager.h │ │ ├── login.cpp │ │ ├── login.h │ │ ├── login_patch.cpp │ │ ├── login_patch.h │ │ ├── login_progress_post_thread.cpp │ │ ├── login_progress_post_thread.h │ │ ├── login_xdelta.cpp │ │ ├── login_xdelta.h │ │ ├── lua_ide_dll_nevrax │ │ │ ├── include │ │ │ │ ├── cj60 │ │ │ │ │ ├── CJ60Lib.h │ │ │ │ │ ├── CJCaption.h │ │ │ │ │ ├── CJControlBar.h │ │ │ │ │ ├── CJDockBar.h │ │ │ │ │ ├── CJDockContext.h │ │ │ │ │ ├── CJExplorerBar.h │ │ │ │ │ ├── CJFlatButton.h │ │ │ │ │ ├── CJFlatComboBox.h │ │ │ │ │ ├── CJFlatHeaderCtrl.h │ │ │ │ │ ├── CJFrameWnd.h │ │ │ │ │ ├── CJListCtrl.h │ │ │ │ │ ├── CJListView.h │ │ │ │ │ ├── CJMDIFrameWnd.h │ │ │ │ │ ├── CJMiniDockFrameWnd.h │ │ │ │ │ ├── CJOutlookBar.h │ │ │ │ │ ├── CJPagerCtrl.h │ │ │ │ │ ├── CJSearchEdit.h │ │ │ │ │ ├── CJSizeDockBar.h │ │ │ │ │ ├── CJTabCtrlBar.h │ │ │ │ │ ├── CJToolBar.h │ │ │ │ │ ├── CoolBar.h │ │ │ │ │ ├── CoolMenu.h │ │ │ │ │ ├── FixTB.h │ │ │ │ │ ├── FlatBar.h │ │ │ │ │ ├── MenuBar.h │ │ │ │ │ ├── ModulVer.h │ │ │ │ │ ├── SHFileInfo.h │ │ │ │ │ ├── ShellPidl.h │ │ │ │ │ ├── ShellTree.h │ │ │ │ │ ├── Subclass.h │ │ │ │ │ └── hyperlink.h │ │ │ │ ├── lua_ide_dll │ │ │ │ │ └── ide_interface.h │ │ │ │ └── scintilla │ │ │ │ │ ├── Accessor.h │ │ │ │ │ ├── KeyWords.h │ │ │ │ │ ├── Platform.h │ │ │ │ │ ├── PropSet.h │ │ │ │ │ ├── SString.h │ │ │ │ │ ├── SciLexer.h │ │ │ │ │ ├── Scintilla.h │ │ │ │ │ ├── ScintillaWidget.h │ │ │ │ │ └── WindowAccessor.h │ │ │ ├── source │ │ │ │ ├── CJ60Lib │ │ │ │ │ ├── CJ60Lib.rc │ │ │ │ │ ├── CJ60lib.cpp │ │ │ │ │ ├── CJ60lib.def │ │ │ │ │ ├── CJCaption.cpp │ │ │ │ │ ├── CJControlBar.cpp │ │ │ │ │ ├── CJDockBar.cpp │ │ │ │ │ ├── CJDockContext.cpp │ │ │ │ │ ├── CJExplorerBar.cpp │ │ │ │ │ ├── CJFlatButton.cpp │ │ │ │ │ ├── CJFlatComboBox.cpp │ │ │ │ │ ├── CJFlatHeaderCtrl.cpp │ │ │ │ │ ├── CJFrameWnd.cpp │ │ │ │ │ ├── CJListCtrl.cpp │ │ │ │ │ ├── CJListView.cpp │ │ │ │ │ ├── CJMDIFrameWnd.cpp │ │ │ │ │ ├── CJMiniDockFrameWnd.cpp │ │ │ │ │ ├── CJOutlookBar.cpp │ │ │ │ │ ├── CJPagerCtrl.cpp │ │ │ │ │ ├── CJSearchEdit.cpp │ │ │ │ │ ├── CJSizeDockBar.cpp │ │ │ │ │ ├── CJTabctrlBar.cpp │ │ │ │ │ ├── CJToolBar.cpp │ │ │ │ │ ├── CoolBar.cpp │ │ │ │ │ ├── CoolMenu.cpp │ │ │ │ │ ├── FixTB.cpp │ │ │ │ │ ├── FlatBar.cpp │ │ │ │ │ ├── Globals.cpp │ │ │ │ │ ├── Globals.h │ │ │ │ │ ├── MenuBar.cpp │ │ │ │ │ ├── ModulVer.cpp │ │ │ │ │ ├── SHFileInfo.cpp │ │ │ │ │ ├── ShellPidl.cpp │ │ │ │ │ ├── ShellTree.cpp │ │ │ │ │ ├── Subclass.cpp │ │ │ │ │ ├── hyperlink.cpp │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── res │ │ │ │ │ │ ├── btn_arro.bmp │ │ │ │ │ │ ├── btn_explorer.bmp │ │ │ │ │ │ ├── button_images.bmp │ │ │ │ │ │ ├── cj60lib.rc2 │ │ │ │ │ │ ├── cj_logo.bmp │ │ │ │ │ │ ├── hsplitba.cur │ │ │ │ │ │ └── vsplitba.cur │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ └── stdafx.h │ │ │ │ ├── Ide2 │ │ │ │ │ ├── BreakPointCondition.cpp │ │ │ │ │ ├── BreakPointCondition.h │ │ │ │ │ ├── BreakPointWnd.cpp │ │ │ │ │ ├── BreakPointWnd.h │ │ │ │ │ ├── CallStack.cpp │ │ │ │ │ ├── CallStack.h │ │ │ │ │ ├── ColumnTreeCtrl.cpp │ │ │ │ │ ├── ColumnTreeWnd.cpp │ │ │ │ │ ├── ColumnTreeWnd.h │ │ │ │ │ ├── Debugger.cpp │ │ │ │ │ ├── Debugger.h │ │ │ │ │ ├── DebuggerMessages.h │ │ │ │ │ ├── Executor.cpp │ │ │ │ │ ├── Executor.h │ │ │ │ │ ├── FindText.cpp │ │ │ │ │ ├── FindText.h │ │ │ │ │ ├── GotoLine.cpp │ │ │ │ │ ├── GotoLine.h │ │ │ │ │ ├── HelloWorld.lua │ │ │ │ │ ├── LuaDoc.cpp │ │ │ │ │ ├── LuaDoc.h │ │ │ │ │ ├── LuaEditor.cpp │ │ │ │ │ ├── LuaEditor.h │ │ │ │ │ ├── LuaFrame.cpp │ │ │ │ │ ├── LuaFrame.h │ │ │ │ │ ├── LuaHelper.cpp │ │ │ │ │ ├── LuaHelper.h │ │ │ │ │ ├── LuaView.cpp │ │ │ │ │ ├── LuaView.h │ │ │ │ │ ├── MDIClientWnd.cpp │ │ │ │ │ ├── MDIClientWnd.h │ │ │ │ │ ├── MainFrame.cpp │ │ │ │ │ ├── MainFrame.h │ │ │ │ │ ├── OutputWnd.cpp │ │ │ │ │ ├── OutputWnd.h │ │ │ │ │ ├── Project.cpp │ │ │ │ │ ├── Project.h │ │ │ │ │ ├── ProjectFile.cpp │ │ │ │ │ ├── ProjectFile.h │ │ │ │ │ ├── ProjectNew.cpp │ │ │ │ │ ├── ProjectNew.h │ │ │ │ │ ├── ProjectProperties.cpp │ │ │ │ │ ├── ProjectProperties.h │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── ScintillaBar.cpp │ │ │ │ │ ├── ScintillaBar.h │ │ │ │ │ ├── ScintillaView.cpp │ │ │ │ │ ├── ScintillaView.h │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── TreeViewFiles.cpp │ │ │ │ │ ├── TreeViewFiles.h │ │ │ │ │ ├── VariablesBar.cpp │ │ │ │ │ ├── VariablesBar.h │ │ │ │ │ ├── WatchBar.cpp │ │ │ │ │ ├── WatchBar.h │ │ │ │ │ ├── WatchList.cpp │ │ │ │ │ ├── WatchList.h │ │ │ │ │ ├── WatchList_old.cpp │ │ │ │ │ ├── WatchList_old.h │ │ │ │ │ ├── WorkspaceWnd.cpp │ │ │ │ │ ├── WorkspaceWnd.h │ │ │ │ │ ├── columntreectrl.h │ │ │ │ │ ├── ide2.cpp │ │ │ │ │ ├── ide2.h │ │ │ │ │ ├── ide2.rc │ │ │ │ │ ├── res │ │ │ │ │ │ ├── HelloWorld.lua │ │ │ │ │ │ ├── LuaDoc.ico │ │ │ │ │ │ ├── Toolbar.bmp │ │ │ │ │ │ ├── ide2.ico │ │ │ │ │ │ ├── ide2.rc2 │ │ │ │ │ │ ├── il_file.bmp │ │ │ │ │ │ └── il_tab.bmp │ │ │ │ │ ├── resource.h │ │ │ │ │ └── test.lpr │ │ │ │ ├── ide2_dll │ │ │ │ │ ├── ide2_dll.def │ │ │ │ │ └── ide_interface.cpp │ │ │ │ ├── libapi │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── libapi.c │ │ │ │ │ ├── libapi.cpp │ │ │ │ │ └── libapi.h │ │ │ │ ├── scintilla │ │ │ │ │ ├── AutoComplete.cxx │ │ │ │ │ ├── AutoComplete.h │ │ │ │ │ ├── CallTip.cxx │ │ │ │ │ ├── CallTip.h │ │ │ │ │ ├── CellBuffer.cxx │ │ │ │ │ ├── CellBuffer.h │ │ │ │ │ ├── ContractionState.cxx │ │ │ │ │ ├── ContractionState.h │ │ │ │ │ ├── Document.cxx │ │ │ │ │ ├── Document.h │ │ │ │ │ ├── DocumentAccessor.cxx │ │ │ │ │ ├── DocumentAccessor.h │ │ │ │ │ ├── Editor.cxx │ │ │ │ │ ├── Editor.h │ │ │ │ │ ├── Indicator.cxx │ │ │ │ │ ├── Indicator.h │ │ │ │ │ ├── KeyMap.cxx │ │ │ │ │ ├── KeyMap.h │ │ │ │ │ ├── KeyWords.cxx │ │ │ │ │ ├── LexAVE.cxx │ │ │ │ │ ├── LexAda.cxx │ │ │ │ │ ├── LexBaan.cxx │ │ │ │ │ ├── LexBullant.cxx │ │ │ │ │ ├── LexCPP.cxx │ │ │ │ │ ├── LexConf.cxx │ │ │ │ │ ├── LexCrontab.cxx │ │ │ │ │ ├── LexEiffel.cxx │ │ │ │ │ ├── LexHTML.cxx │ │ │ │ │ ├── LexLisp.cxx │ │ │ │ │ ├── LexLua.cxx │ │ │ │ │ ├── LexMatlab.cxx │ │ │ │ │ ├── LexOthers.cxx │ │ │ │ │ ├── LexPascal.cxx │ │ │ │ │ ├── LexPerl.cxx │ │ │ │ │ ├── LexPython.cxx │ │ │ │ │ ├── LexRuby.cxx │ │ │ │ │ ├── LexSQL.cxx │ │ │ │ │ ├── LexVB.cxx │ │ │ │ │ ├── LineMarker.cxx │ │ │ │ │ ├── LineMarker.h │ │ │ │ │ ├── Margin.cur │ │ │ │ │ ├── PropSet.cxx │ │ │ │ │ ├── RESearch.cxx │ │ │ │ │ ├── RESearch.h │ │ │ │ │ ├── SVector.h │ │ │ │ │ ├── ScintRes.rc │ │ │ │ │ ├── ScintillaBase.cxx │ │ │ │ │ ├── ScintillaBase.h │ │ │ │ │ ├── Style.cxx │ │ │ │ │ ├── Style.h │ │ │ │ │ ├── StyleContext.cxx │ │ │ │ │ ├── StyleContext.h │ │ │ │ │ ├── UniConversion.cxx │ │ │ │ │ ├── UniConversion.h │ │ │ │ │ ├── ViewStyle.cxx │ │ │ │ │ ├── ViewStyle.h │ │ │ │ │ ├── WindowAccessor.cxx │ │ │ │ │ └── win32 │ │ │ │ │ │ ├── ExternalLexer.cxx │ │ │ │ │ │ ├── ExternalLexer.h │ │ │ │ │ │ ├── Margin.cur │ │ │ │ │ │ ├── PlatWin.cxx │ │ │ │ │ │ ├── PlatformRes.h │ │ │ │ │ │ ├── ScintRes.rc │ │ │ │ │ │ └── ScintillaWin.cxx │ │ │ │ ├── standard │ │ │ │ │ ├── lauxlib.c │ │ │ │ │ ├── lbaselib.c │ │ │ │ │ ├── ldblib.c │ │ │ │ │ ├── liolib.c │ │ │ │ │ ├── lmathlib.c │ │ │ │ │ ├── loadlib.c │ │ │ │ │ ├── lstrlib.c │ │ │ │ │ └── ltablib.c │ │ │ │ └── stdlib │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── stdlib.cpp │ │ │ │ │ └── stdlib.h │ │ │ ├── test.lua │ │ │ ├── test2.lua │ │ │ └── test_ide_dll_2 │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── resource.h │ │ │ │ ├── small.ico │ │ │ │ ├── test_ide_dll_2.cpp │ │ │ │ ├── test_ide_dll_2.h │ │ │ │ ├── test_ide_dll_2.ico │ │ │ │ └── test_ide_dll_2.rc │ │ ├── main_loop.cpp │ │ ├── main_loop.h │ │ ├── mesh_camera_col_manager.cpp │ │ ├── mesh_camera_col_manager.h │ │ ├── micro_life_manager.cpp │ │ ├── micro_life_manager.h │ │ ├── misc.cpp │ │ ├── misc.h │ │ ├── motion │ │ │ ├── modes │ │ │ │ ├── ai_mode.cpp │ │ │ │ ├── death_mode.cpp │ │ │ │ ├── free_head.cpp │ │ │ │ ├── interface_mode.cpp │ │ │ │ ├── mount_mode.cpp │ │ │ │ └── third_mode.cpp │ │ │ ├── user_controls.cpp │ │ │ └── user_controls.h │ │ ├── movie_shooter.cpp │ │ ├── movie_shooter.h │ │ ├── net_manager.cpp │ │ ├── net_manager.h │ │ ├── network_connection.cpp │ │ ├── network_connection.h │ │ ├── npc_icon.cpp │ │ ├── npc_icon.h │ │ ├── outpost.cpp │ │ ├── outpost.h │ │ ├── outpost_manager.cpp │ │ ├── outpost_manager.h │ │ ├── pacs_client.cpp │ │ ├── pacs_client.h │ │ ├── permanent_ban.cpp │ │ ├── permanent_ban.h │ │ ├── player_cl.cpp │ │ ├── player_cl.h │ │ ├── player_r2_cl.cpp │ │ ├── player_r2_cl.h │ │ ├── precipitation.cpp │ │ ├── precipitation.h │ │ ├── precipitation_clip_grid.cpp │ │ ├── precipitation_clip_grid.h │ │ ├── prim_file.cpp │ │ ├── prim_file.h │ │ ├── progress.cpp │ │ ├── progress.h │ │ ├── projectile_desc.h │ │ ├── projectile_manager.cpp │ │ ├── projectile_manager.h │ │ ├── property_decoder.cpp │ │ ├── property_decoder.h │ │ ├── r2 │ │ │ ├── auto_group.cpp │ │ │ ├── auto_group.h │ │ │ ├── config_var.cpp │ │ │ ├── config_var.h │ │ │ ├── displayer_base.cpp │ │ │ ├── displayer_base.h │ │ │ ├── displayer_lua.cpp │ │ │ ├── displayer_lua.h │ │ │ ├── displayer_property.h │ │ │ ├── displayer_visual.cpp │ │ │ ├── displayer_visual.h │ │ │ ├── displayer_visual_activity_sequence.cpp │ │ │ ├── displayer_visual_activity_sequence.h │ │ │ ├── displayer_visual_entity.cpp │ │ │ ├── displayer_visual_entity.h │ │ │ ├── displayer_visual_group.cpp │ │ │ ├── displayer_visual_group.h │ │ │ ├── displayer_visual_road.cpp │ │ │ ├── displayer_visual_road.h │ │ │ ├── displayer_visual_shape.cpp │ │ │ ├── displayer_visual_shape.h │ │ │ ├── dmc │ │ │ │ ├── action_historic.cpp │ │ │ │ ├── action_historic.h │ │ │ │ ├── client_edition_module.cpp │ │ │ │ ├── client_edition_module.h │ │ │ │ ├── com_lua_module.cpp │ │ │ │ ├── com_lua_module.h │ │ │ │ ├── dmc.cpp │ │ │ │ ├── dmc.h │ │ │ │ ├── idmc.h │ │ │ │ ├── palette.cpp │ │ │ │ ├── palette.h │ │ │ │ ├── property_accessor.cpp │ │ │ │ └── property_accessor.h │ │ │ ├── ed_command.h │ │ │ ├── editor.cpp │ │ │ ├── editor.h │ │ │ ├── entity_custom_select_box.cpp │ │ │ ├── entity_custom_select_box.h │ │ │ ├── entity_sorter.cpp │ │ │ ├── entity_sorter.h │ │ │ ├── instance.cpp │ │ │ ├── instance.h │ │ │ ├── instance_map_deco.cpp │ │ │ ├── instance_map_deco.h │ │ │ ├── island_collision.cpp │ │ │ ├── island_collision.h │ │ │ ├── lua_event_forwarder.cpp │ │ │ ├── lua_event_forwarder.h │ │ │ ├── mesh_array.cpp │ │ │ ├── mesh_array.h │ │ │ ├── npc_editor.cpp │ │ │ ├── npc_editor.h │ │ │ ├── object_factory_client.cpp │ │ │ ├── object_factory_client.h │ │ │ ├── palette_node.cpp │ │ │ ├── palette_node.h │ │ │ ├── prim_render.cpp │ │ │ ├── prim_render.h │ │ │ ├── r2_config.cpp │ │ │ ├── r2_config.h │ │ │ ├── r2_lua.cpp │ │ │ ├── r2_lua.h │ │ │ ├── tool.cpp │ │ │ ├── tool.h │ │ │ ├── tool_choose_pos.cpp │ │ │ ├── tool_choose_pos.h │ │ │ ├── tool_choose_pos_lua.cpp │ │ │ ├── tool_choose_pos_lua.h │ │ │ ├── tool_create_entity.cpp │ │ │ ├── tool_create_entity.h │ │ │ ├── tool_draw_prim.cpp │ │ │ ├── tool_draw_prim.h │ │ │ ├── tool_draw_road.cpp │ │ │ ├── tool_draw_road.h │ │ │ ├── tool_maintained_action.cpp │ │ │ ├── tool_maintained_action.h │ │ │ ├── tool_new_vertex.cpp │ │ │ ├── tool_new_vertex.h │ │ │ ├── tool_pick.cpp │ │ │ ├── tool_pick.h │ │ │ ├── tool_select_move.cpp │ │ │ ├── tool_select_move.h │ │ │ ├── tool_select_rotate.cpp │ │ │ ├── tool_select_rotate.h │ │ │ ├── verbose_clock.cpp │ │ │ └── verbose_clock.h │ │ ├── release.cpp │ │ ├── release.h │ │ ├── resource.h │ │ ├── rosace.cpp │ │ ├── rosace.h │ │ ├── rosace_functions.cpp │ │ ├── rosace_functions.h │ │ ├── ryzom.ico │ │ ├── ryzom_small.ico │ │ ├── scalable_time.cpp │ │ ├── scalable_time.h │ │ ├── scene_parser.cpp │ │ ├── scene_parser.h │ │ ├── session_browser.cpp │ │ ├── session_browser.h │ │ ├── session_browser_impl.cpp │ │ ├── session_browser_impl.h │ │ ├── seven_zip │ │ │ ├── 7zAlloc.cpp │ │ │ ├── 7zAlloc.h │ │ │ ├── 7zBuffer.cpp │ │ │ ├── 7zBuffer.h │ │ │ ├── 7zCrc.cpp │ │ │ ├── 7zCrc.h │ │ │ ├── 7zDecode.cpp │ │ │ ├── 7zDecode.h │ │ │ ├── 7zExtract.cpp │ │ │ ├── 7zExtract.h │ │ │ ├── 7zHeader.cpp │ │ │ ├── 7zHeader.h │ │ │ ├── 7zIn.cpp │ │ │ ├── 7zIn.h │ │ │ ├── 7zItem.cpp │ │ │ ├── 7zItem.h │ │ │ ├── 7zMain.cpp │ │ │ ├── 7zMethodID.cpp │ │ │ ├── 7zMethodID.h │ │ │ ├── 7zTypes.h │ │ │ ├── BranchTypes.h │ │ │ ├── BranchX86.cpp │ │ │ ├── BranchX86.h │ │ │ ├── CMakeLists.txt │ │ │ ├── LzmaDecode.cpp │ │ │ ├── LzmaDecode.h │ │ │ ├── LzmaRamDecode.cpp │ │ │ ├── LzmaRamDecode.h │ │ │ ├── LzmaTypes.h │ │ │ └── readme.txt │ │ ├── sheet_manager.cpp │ │ ├── sheet_manager.h │ │ ├── sky.cpp │ │ ├── sky.h │ │ ├── sky_material_setup.cpp │ │ ├── sky_material_setup.h │ │ ├── sky_object.cpp │ │ ├── sky_object.h │ │ ├── sky_render.cpp │ │ ├── sky_render.h │ │ ├── sound_manager.cpp │ │ ├── sound_manager.h │ │ ├── splash_screen.bmp │ │ ├── stage.cpp │ │ ├── stage.h │ │ ├── starting_roles.cpp │ │ ├── starting_roles.h │ │ ├── stdpch.cpp │ │ ├── stdpch.h │ │ ├── streamable_entity.cpp │ │ ├── streamable_entity.h │ │ ├── streamable_entity_composite.cpp │ │ ├── streamable_entity_composite.h │ │ ├── streamable_ig.cpp │ │ ├── streamable_ig.h │ │ ├── stremable_ig.cpp │ │ ├── string_manager_client.cpp │ │ ├── string_manager_client.h │ │ ├── teleport.cpp │ │ ├── teleport.h │ │ ├── text_manager.cpp │ │ ├── text_manager.h │ │ ├── time_client.cpp │ │ ├── time_client.h │ │ ├── timed_fx_manager.cpp │ │ ├── timed_fx_manager.h │ │ ├── user_entity.cpp │ │ ├── user_entity.h │ │ ├── view.cpp │ │ ├── view.h │ │ ├── village.cpp │ │ ├── village.h │ │ ├── water_env_map_rdr.cpp │ │ ├── water_env_map_rdr.h │ │ ├── water_map.cpp │ │ ├── water_map.h │ │ ├── weather.cpp │ │ ├── weather.h │ │ ├── weather_manager_client.cpp │ │ ├── weather_manager_client.h │ │ ├── weather_setup_client.cpp │ │ ├── weather_setup_client.h │ │ ├── world_database_manager.cpp │ │ ├── world_database_manager.h │ │ ├── zone_util.cpp │ │ └── zone_util.h │ └── unix │ │ ├── CMakeLists.txt │ │ ├── ryzom_128x128.png │ │ ├── ryzom_16x16.png │ │ ├── ryzom_22x22.png │ │ ├── ryzom_24x24.png │ │ ├── ryzom_32x32.png │ │ ├── ryzom_48x48.png │ │ ├── ryzom_client.desktop.in │ │ ├── ryzom_client.png │ │ └── ryzom_client.xpm ├── common │ ├── CMakeLists.txt │ ├── data_common │ │ ├── chat │ │ │ ├── bot_chat.txt │ │ │ ├── bs_combat.txt │ │ │ ├── bs_magic.txt │ │ │ ├── bs_static.txt │ │ │ ├── chat_dynamic.occ │ │ │ ├── chat_static.cdb │ │ │ ├── chat_static.occ │ │ │ ├── chat_static.txt │ │ │ ├── create_cdb.bat │ │ │ ├── death_static.txt │ │ │ ├── egs_brick_error_msg.txt │ │ │ ├── egs_effect_static.txt │ │ │ ├── egs_static.txt │ │ │ ├── faber_static.txt │ │ │ ├── harvest_static.txt │ │ │ ├── identify_creature_static.txt │ │ │ ├── news_static.txt │ │ │ ├── report_progression_static.txt │ │ │ └── wos_static.txt │ │ ├── database.xml │ │ ├── landscape_col_prim_pacs_list.txt │ │ ├── msg.xml │ │ ├── r2 │ │ │ ├── IslandScreenshots.cfg │ │ │ ├── r2_actions.lua │ │ │ ├── r2_activities.lua │ │ │ ├── r2_base_class.lua │ │ │ ├── r2_base_class_private.lua │ │ │ ├── r2_basic_bricks.lua │ │ │ ├── r2_components.lua │ │ │ ├── r2_config.lua │ │ │ ├── r2_console.lua │ │ │ ├── r2_core.lua │ │ │ ├── r2_core_user_component_manager.lua │ │ │ ├── r2_debug.lua │ │ │ ├── r2_dialogs.lua │ │ │ ├── r2_environment.lua │ │ │ ├── r2_event_handler_system.lua │ │ │ ├── r2_events.lua │ │ │ ├── r2_features.lua │ │ │ ├── r2_features_ambush.lua │ │ │ ├── r2_features_bandits_camp.lua │ │ │ ├── r2_features_boss_spawner.lua │ │ │ ├── r2_features_counter.lua │ │ │ ├── r2_features_default.lua │ │ │ ├── r2_features_delivery_task.lua │ │ │ ├── r2_features_easter_egg.lua │ │ │ ├── r2_features_empty.lua │ │ │ ├── r2_features_fauna.lua │ │ │ ├── r2_features_get_item_from_scenery.lua │ │ │ ├── r2_features_get_item_from_scenery_task.lua │ │ │ ├── r2_features_give_item.lua │ │ │ ├── r2_features_hidden_chest.lua │ │ │ ├── r2_features_hunt_task.lua │ │ │ ├── r2_features_kill_npc.lua │ │ │ ├── r2_features_loaded.lua │ │ │ ├── r2_features_loot_spawner.lua │ │ │ ├── r2_features_man_hunt.lua │ │ │ ├── r2_features_npc_groups.lua │ │ │ ├── r2_features_npc_interaction.lua │ │ │ ├── r2_features_proximity_dialog.lua │ │ │ ├── r2_features_quest.lua │ │ │ ├── r2_features_random_chest.lua │ │ │ ├── r2_features_request_item.lua │ │ │ ├── r2_features_reward_provider.lua │ │ │ ├── r2_features_scenery_object_interaction.lua │ │ │ ├── r2_features_scenery_object_interaction_task.lua │ │ │ ├── r2_features_scenery_object_remover.lua │ │ │ ├── r2_features_talk_to.lua │ │ │ ├── r2_features_target_mob.lua │ │ │ ├── r2_features_time_trigger.lua │ │ │ ├── r2_features_timed_spawn.lua │ │ │ ├── r2_features_timer.lua │ │ │ ├── r2_features_user_item.lua │ │ │ ├── r2_features_user_trigger.lua │ │ │ ├── r2_features_visit_zone.lua │ │ │ ├── r2_features_zone_triggers.lua │ │ │ ├── r2_init.lua │ │ │ ├── r2_islands.xml │ │ │ ├── r2_logic.lua │ │ │ ├── r2_logic_comp.lua │ │ │ ├── r2_logic_entities.lua │ │ │ ├── r2_logic_ui.lua │ │ │ ├── r2_mini_activities.lua │ │ │ ├── r2_misc.lua │ │ │ ├── r2_palette.lua │ │ │ ├── r2_palette_light.lua │ │ │ ├── r2_piece.lua │ │ │ ├── r2_plot_item.lua │ │ │ ├── r2_prim_render.lua │ │ │ ├── r2_refid.lua │ │ │ ├── r2_ring_access.xml │ │ │ ├── r2_scenario.lua │ │ │ ├── r2_texts.lua │ │ │ ├── r2_translator.lua │ │ │ ├── r2_ui.lua │ │ │ ├── r2_ui_acts.lua │ │ │ ├── r2_ui_anim_acts.lua │ │ │ ├── r2_ui_anim_bar.lua │ │ │ ├── r2_ui_anim_user_triggers.lua │ │ │ ├── r2_ui_char_tracking.lua │ │ │ ├── r2_ui_contextual_commands.lua │ │ │ ├── r2_ui_contextual_commands_new.lua │ │ │ ├── r2_ui_custom_boxes_data.lua │ │ │ ├── r2_ui_custom_selection_bbox.lua │ │ │ ├── r2_ui_displayer_npc.lua │ │ │ ├── r2_ui_displayers.lua │ │ │ ├── r2_ui_dm_gift.lua │ │ │ ├── r2_ui_event_handlers.lua │ │ │ ├── r2_ui_features_tree.lua │ │ │ ├── r2_ui_forms.lua │ │ │ ├── r2_ui_logic_entities.lua │ │ │ ├── r2_ui_lua_inspector.lua │ │ │ ├── r2_ui_main_loop.lua │ │ │ ├── r2_ui_mini_toolbar.lua │ │ │ ├── r2_ui_misc.lua │ │ │ ├── r2_ui_palette.lua │ │ │ ├── r2_ui_player_tracking.lua │ │ │ ├── r2_ui_property_sheet.lua │ │ │ ├── r2_ui_reset.lua │ │ │ ├── r2_ui_scenario.lua │ │ │ ├── r2_ui_scenario_scores.lua │ │ │ ├── r2_ui_select_bar.lua │ │ │ ├── r2_ui_select_bar_2.lua │ │ │ ├── r2_ui_toolbar_base.lua │ │ │ ├── r2_ui_tools.lua │ │ │ ├── r2_ui_triggers.lua │ │ │ ├── r2_ui_windows.lua │ │ │ ├── r2_utils.lua │ │ │ ├── r2_version.lua │ │ │ ├── r2_world_object.lua │ │ │ ├── ring_map_entry_ponts.txt │ │ │ └── unit_test │ │ │ │ ├── r2_client1.lua │ │ │ │ ├── r2_client2.lua │ │ │ │ ├── r2_client3.lua │ │ │ │ └── r2_unit_test.lua │ │ ├── system_files.cfg │ │ └── weather.cfg │ ├── data_leveldesign │ │ ├── leveldesign │ │ │ ├── DFN │ │ │ │ ├── _attack_radius.typ │ │ │ │ ├── _fog.dfn │ │ │ │ ├── _light.dfn │ │ │ │ ├── _primitive.dfn │ │ │ │ ├── _rgba.dfn │ │ │ │ ├── _vector.dfn │ │ │ │ ├── basics │ │ │ │ │ ├── _data_elem.dfn │ │ │ │ │ ├── _data_elem.typ │ │ │ │ │ ├── _typ.dfn │ │ │ │ │ ├── _type.typ │ │ │ │ │ ├── boolean.typ │ │ │ │ │ ├── color.typ │ │ │ │ │ ├── dataset.dfn │ │ │ │ │ ├── edit.typ │ │ │ │ │ ├── filename.typ │ │ │ │ │ ├── float.typ │ │ │ │ │ ├── iboolean.typ │ │ │ │ │ ├── int.typ │ │ │ │ │ ├── sint16.typ │ │ │ │ │ ├── sint32.typ │ │ │ │ │ ├── sint64.typ │ │ │ │ │ ├── sint8.typ │ │ │ │ │ ├── string.typ │ │ │ │ │ ├── type_property.typ │ │ │ │ │ ├── uint16.typ │ │ │ │ │ ├── uint32.typ │ │ │ │ │ ├── uint64.typ │ │ │ │ │ └── uint8.typ │ │ │ │ ├── game_elem │ │ │ │ │ ├── People.typ │ │ │ │ │ ├── _Plant │ │ │ │ │ │ ├── _plant.plant │ │ │ │ │ │ ├── _plant_3D_info.dfn │ │ │ │ │ │ ├── _plant_fx_info.dfn │ │ │ │ │ │ ├── _plant_game_param.dfn │ │ │ │ │ │ ├── _plant_instance.dfn │ │ │ │ │ │ └── timed_fx_mode.typ │ │ │ │ │ ├── _XpTables │ │ │ │ │ │ ├── _paliers.dfn │ │ │ │ │ │ ├── _skill_stage_association.dfn │ │ │ │ │ │ ├── _type.dfn │ │ │ │ │ │ ├── action_xp_factor.dfn │ │ │ │ │ │ ├── skill_stage_type_table.dfn │ │ │ │ │ │ └── xp_table.dfn │ │ │ │ │ ├── _ai │ │ │ │ │ │ ├── _ai_action_server.typ │ │ │ │ │ │ ├── _ai_animal.dfn │ │ │ │ │ │ ├── _ai_attribut.typ │ │ │ │ │ │ ├── _ai_bag.dfn │ │ │ │ │ │ ├── _ai_behaviour.dfn │ │ │ │ │ │ ├── _ai_behaviour_param.dfn │ │ │ │ │ │ ├── _ai_combatif.dfn │ │ │ │ │ │ ├── _ai_creature.dfn │ │ │ │ │ │ ├── _ai_creature_elem.dfn │ │ │ │ │ │ ├── _ai_creature_spawn.dfn │ │ │ │ │ │ ├── _ai_creature_type.typ │ │ │ │ │ │ ├── _ai_dynmaic_object.dfn │ │ │ │ │ │ ├── _ai_fish.dfn │ │ │ │ │ │ ├── _ai_gabari.dfn │ │ │ │ │ │ ├── _ai_game_var.dfn │ │ │ │ │ │ ├── _ai_group_action.dfn │ │ │ │ │ │ ├── _ai_group_attack.typ │ │ │ │ │ │ ├── _ai_group_move.typ │ │ │ │ │ │ ├── _ai_herbe.dfn │ │ │ │ │ │ ├── _ai_init_var.dfn │ │ │ │ │ │ ├── _ai_init_var.typ │ │ │ │ │ │ ├── _ai_init_var_value.dfn │ │ │ │ │ │ ├── _ai_location.dfn │ │ │ │ │ │ ├── _ai_manager.dfn │ │ │ │ │ │ ├── _ai_manager_param.dfn │ │ │ │ │ │ ├── _ai_motivation.dfn │ │ │ │ │ │ ├── _ai_motivation.typ │ │ │ │ │ │ ├── _ai_motivation_influence.dfn │ │ │ │ │ │ ├── _ai_motivation_value.typ │ │ │ │ │ │ ├── _ai_mouvable.dfn │ │ │ │ │ │ ├── _ai_object.dfn │ │ │ │ │ │ ├── _ai_object_type.typ │ │ │ │ │ │ ├── _ai_operational.dfn │ │ │ │ │ │ ├── _ai_operator.typ │ │ │ │ │ │ ├── _ai_pastatoid.dfn │ │ │ │ │ │ ├── _ai_pastatoid_def.dfn │ │ │ │ │ │ ├── _ai_patate.dfn │ │ │ │ │ │ ├── _ai_path_elm.dfn │ │ │ │ │ │ ├── _ai_path_finding.dfn │ │ │ │ │ │ ├── _ai_player.dfn │ │ │ │ │ │ ├── _ai_population.dfn │ │ │ │ │ │ ├── _ai_relation.dfn │ │ │ │ │ │ ├── _ai_saison.typ │ │ │ │ │ │ ├── _ai_static_object.dfn │ │ │ │ │ │ ├── _ai_static_type.dfn │ │ │ │ │ │ ├── _ai_type.typ │ │ │ │ │ │ ├── _ai_type_def.dfn │ │ │ │ │ │ ├── _ai_virtual_dfn_arry.dfn │ │ │ │ │ │ ├── _ai_vitesse.dfn │ │ │ │ │ │ ├── actions_groupe.dfn │ │ │ │ │ │ ├── ai_group_move.typ │ │ │ │ │ │ ├── ai_manager.dfn │ │ │ │ │ │ ├── ai_pastatoid_def.dfn │ │ │ │ │ │ ├── blah │ │ │ │ │ │ │ ├── _ai_manager_param01.dfn │ │ │ │ │ │ │ ├── _ai_manager_param02.dfn │ │ │ │ │ │ │ ├── _ai_manager_param03.dfn │ │ │ │ │ │ │ ├── _ai_manager_param04.dfn │ │ │ │ │ │ │ ├── _ai_manager_param05.dfn │ │ │ │ │ │ │ ├── _ai_manager_param06.dfn │ │ │ │ │ │ │ ├── _ai_manager_param07.dfn │ │ │ │ │ │ │ ├── _ai_manager_param08.dfn │ │ │ │ │ │ │ ├── _ai_manager_param09.dfn │ │ │ │ │ │ │ ├── _ai_manager_param10.dfn │ │ │ │ │ │ │ ├── _ai_manager_param11.dfn │ │ │ │ │ │ │ ├── _ai_manager_param12.dfn │ │ │ │ │ │ │ ├── _ai_manager_param13.dfn │ │ │ │ │ │ │ ├── _ai_manager_param14.dfn │ │ │ │ │ │ │ ├── _ai_manager_param15.dfn │ │ │ │ │ │ │ ├── _ai_manager_param16.dfn │ │ │ │ │ │ │ ├── _ai_manager_param17.dfn │ │ │ │ │ │ │ ├── _ai_manager_param18.dfn │ │ │ │ │ │ │ ├── _ai_manager_param19.dfn │ │ │ │ │ │ │ └── _ai_manager_param20.dfn │ │ │ │ │ │ ├── caster_attack_group_action.dfn │ │ │ │ │ │ ├── caster_buffer_group_action.dfn │ │ │ │ │ │ ├── creature │ │ │ │ │ │ │ ├── _ai_comportement.dfn │ │ │ │ │ │ │ ├── _ai_comportement_chase.dfn │ │ │ │ │ │ │ ├── _ai_comportement_eat.dfn │ │ │ │ │ │ │ ├── _ai_comportement_explore.dfn │ │ │ │ │ │ │ ├── _ai_comportement_fight.dfn │ │ │ │ │ │ │ ├── _ai_comportement_sleep.dfn │ │ │ │ │ │ │ ├── _ai_comportement_tolk.dfn │ │ │ │ │ │ │ ├── _ai_comportement_walk.dfn │ │ │ │ │ │ │ ├── _ai_fame.dfn │ │ │ │ │ │ │ ├── _ai_food.dfn │ │ │ │ │ │ │ ├── _ai_is_a.dfn │ │ │ │ │ │ │ ├── _ai_lair.dfn │ │ │ │ │ │ │ ├── _ai_model_creature.dfn │ │ │ │ │ │ │ ├── _ai_motivation_dfn.dfn │ │ │ │ │ │ │ ├── _ai_motivation_explore.dfn │ │ │ │ │ │ │ ├── _ai_motivation_fatigue.dfn │ │ │ │ │ │ │ ├── _ai_motivation_health.dfn │ │ │ │ │ │ │ ├── _ai_motivation_hunger.dfn │ │ │ │ │ │ │ ├── _ai_motivation_param.dfn │ │ │ │ │ │ │ ├── _ai_motivation_param_fatigue.dfn │ │ │ │ │ │ │ ├── _ai_motivation_param_hunger.dfn │ │ │ │ │ │ │ └── _ai_timer.typ │ │ │ │ │ │ ├── faber_group_action.dfn │ │ │ │ │ │ ├── flesh │ │ │ │ │ │ │ ├── _ai_charogne.dfn │ │ │ │ │ │ │ ├── _ai_nourriture.dfn │ │ │ │ │ │ │ ├── _ai_poisson.dfn │ │ │ │ │ │ │ ├── _ai_vegetal.dfn │ │ │ │ │ │ │ ├── _ai_vegetal_terrestre.dfn │ │ │ │ │ │ │ ├── _ai_viande.dfn │ │ │ │ │ │ │ └── _ai_viande_terrestre.dfn │ │ │ │ │ │ ├── gameDev │ │ │ │ │ │ │ └── game_creature.typ │ │ │ │ │ │ ├── group_actions.dfn │ │ │ │ │ │ ├── harvester_group_action.dfn │ │ │ │ │ │ ├── healer_group_action.dfn │ │ │ │ │ │ ├── lair.dfn │ │ │ │ │ │ ├── lair │ │ │ │ │ │ │ ├── ai_charognard_lair.dfn │ │ │ │ │ │ │ ├── ai_herbivore_lair.dfn │ │ │ │ │ │ │ ├── ai_omnivore_lair.dfn │ │ │ │ │ │ │ ├── ai_poisson_lair.dfn │ │ │ │ │ │ │ └── ai_predateur_lair.dfn │ │ │ │ │ │ ├── melee_fighter_group_action.dfn │ │ │ │ │ │ ├── range_fighter_group_action.dfn │ │ │ │ │ │ ├── table.group_actions │ │ │ │ │ │ ├── test.typ │ │ │ │ │ │ └── trader_group_action.dfn │ │ │ │ │ ├── _anim │ │ │ │ │ │ ├── animation.dfn │ │ │ │ │ │ ├── animation_set.dfn │ │ │ │ │ │ ├── animation_state.dfn │ │ │ │ │ │ ├── animset_list.dfn │ │ │ │ │ │ ├── animset_mode.dfn │ │ │ │ │ │ ├── animset_type.dfn │ │ │ │ │ │ ├── automaton.dfn │ │ │ │ │ │ ├── automaton_atk_states.dfn │ │ │ │ │ │ ├── automaton_generic_states.dfn │ │ │ │ │ │ ├── automaton_list.dfn │ │ │ │ │ │ ├── automaton_mode_states.dfn │ │ │ │ │ │ ├── automaton_motion_states.dfn │ │ │ │ │ │ ├── automaton_other_states.dfn │ │ │ │ │ │ ├── automaton_spell_states.dfn │ │ │ │ │ │ ├── automaton_state.dfn │ │ │ │ │ │ ├── fx │ │ │ │ │ │ │ ├── animation_fx.dfn │ │ │ │ │ │ │ ├── animation_fx_set.dfn │ │ │ │ │ │ │ ├── animation_fx_set_by_lvl.dfn │ │ │ │ │ │ │ ├── animation_magic.dfn │ │ │ │ │ │ │ ├── cast_fx.dfn │ │ │ │ │ │ │ ├── spell.dfn │ │ │ │ │ │ │ ├── spell_id.dfn │ │ │ │ │ │ │ ├── spell_list.dfn │ │ │ │ │ │ │ └── stick_mode.dfn │ │ │ │ │ │ ├── fx_repeat_mode.typ │ │ │ │ │ │ ├── job_mode.typ │ │ │ │ │ │ ├── spell_cast_stage.typ │ │ │ │ │ │ ├── spell_id.typ │ │ │ │ │ │ ├── spell_mode.typ │ │ │ │ │ │ ├── spell_type.typ │ │ │ │ │ │ ├── stick_mode.typ │ │ │ │ │ │ └── string_array.dfn │ │ │ │ │ ├── _bot_chat │ │ │ │ │ │ ├── bot_chat.dfn │ │ │ │ │ │ ├── bot_chat_action.typ │ │ │ │ │ │ ├── bot_chat_choice_list.typ │ │ │ │ │ │ ├── bot_chat_family.typ │ │ │ │ │ │ ├── bot_chat_option.dfn │ │ │ │ │ │ ├── bot_chat_page.typ │ │ │ │ │ │ └── bot_chat_program.typ │ │ │ │ │ ├── _brick │ │ │ │ │ │ ├── _brick_basics.dfn │ │ │ │ │ │ ├── _brick_client.dfn │ │ │ │ │ │ ├── _brick_energy_type.typ │ │ │ │ │ │ ├── _brick_families.typ │ │ │ │ │ │ ├── _brick_family.typ │ │ │ │ │ │ ├── _brick_learning.dfn │ │ │ │ │ │ ├── _brick_level_adjustment_line.dfn │ │ │ │ │ │ ├── _brick_mp.dfn │ │ │ │ │ │ ├── _brick_power.typ │ │ │ │ │ │ ├── _brick_type.typ │ │ │ │ │ │ ├── _brick_valid_targets.dfn │ │ │ │ │ │ ├── _effect_type.typ │ │ │ │ │ │ ├── _faction.typ │ │ │ │ │ │ ├── _fauna_races.dfn │ │ │ │ │ │ ├── _flora_races.dfn │ │ │ │ │ │ ├── _functionality.dfn │ │ │ │ │ │ ├── _functionality_attribute.dfn │ │ │ │ │ │ ├── _homins_races.dfn │ │ │ │ │ │ ├── _learning_playable_races.typ │ │ │ │ │ │ ├── _localisation_slot.typ │ │ │ │ │ │ ├── _phrase_nature.typ │ │ │ │ │ │ ├── _position_in_family.typ │ │ │ │ │ │ ├── _sbrick_basics.dfn │ │ │ │ │ │ ├── _sbrick_credit.dfn │ │ │ │ │ │ ├── _sbrick_families.typ │ │ │ │ │ │ ├── _sbrick_mandatory.dfn │ │ │ │ │ │ ├── _sbrick_optional.dfn │ │ │ │ │ │ ├── _sbrick_parameter.dfn │ │ │ │ │ │ ├── _sbrick_target_restriction.typ │ │ │ │ │ │ ├── _static_string.dfn │ │ │ │ │ │ ├── _success_chances_line.dfn │ │ │ │ │ │ ├── _suffix_type.typ │ │ │ │ │ │ ├── _valid_target_races.dfn │ │ │ │ │ │ ├── brick.dfn │ │ │ │ │ │ ├── brick_base.dfn │ │ │ │ │ │ ├── brick_level_adjustment_table.dfn │ │ │ │ │ │ ├── carrier_phrases.dfn │ │ │ │ │ │ ├── effect_type.typ │ │ │ │ │ │ ├── functionalities │ │ │ │ │ │ │ ├── _absorb_score.dfn │ │ │ │ │ │ │ ├── _add_valid_target_type.dfn │ │ │ │ │ │ │ ├── _affect_aggressors.dfn │ │ │ │ │ │ │ ├── _area_effect.dfn │ │ │ │ │ │ │ ├── _berserk.dfn │ │ │ │ │ │ │ ├── _cancel_effect.dfn │ │ │ │ │ │ │ ├── _cancel_effet_type.dfn │ │ │ │ │ │ │ ├── _change_ai_state.dfn │ │ │ │ │ │ │ ├── _change_behaviour.dfn │ │ │ │ │ │ │ ├── _change_sentence_latency.dfn │ │ │ │ │ │ │ ├── _check_armor_set.dfn │ │ │ │ │ │ │ ├── _check_continent.dfn │ │ │ │ │ │ │ ├── _check_target_actions.dfn │ │ │ │ │ │ │ ├── _check_target_level.dfn │ │ │ │ │ │ │ ├── _cost_modifier.dfn │ │ │ │ │ │ │ ├── _damage_value.typ │ │ │ │ │ │ │ ├── _difficulty_modifier.dfn │ │ │ │ │ │ │ ├── _disengage.dfn │ │ │ │ │ │ │ ├── _display_static_texts.dfn │ │ │ │ │ │ │ ├── _duration_in_action_type.typ │ │ │ │ │ │ │ ├── _effect.dfn │ │ │ │ │ │ │ ├── _effect_functions.typ │ │ │ │ │ │ │ ├── _effect_modifier.dfn │ │ │ │ │ │ │ ├── _engage.dfn │ │ │ │ │ │ │ ├── _engage_mode.dfn │ │ │ │ │ │ │ ├── _entity_msgs.dfn │ │ │ │ │ │ │ ├── _faber_filter1.typ │ │ │ │ │ │ │ ├── _faber_filter2.typ │ │ │ │ │ │ │ ├── _global_resist.dfn │ │ │ │ │ │ │ ├── _ignore_protection.dfn │ │ │ │ │ │ │ ├── _kamic_impregnation.dfn │ │ │ │ │ │ │ ├── _knowledge_market.dfn │ │ │ │ │ │ │ ├── _knowledge_mp.dfn │ │ │ │ │ │ │ ├── _latency_modifier.dfn │ │ │ │ │ │ │ ├── _length.dfn │ │ │ │ │ │ │ ├── _magical_damage.dfn │ │ │ │ │ │ │ ├── _modifier.dfn │ │ │ │ │ │ │ ├── _modifier_mode.typ │ │ │ │ │ │ │ ├── _modify_var.dfn │ │ │ │ │ │ │ ├── _modify_var_temp.dfn │ │ │ │ │ │ │ ├── _physical_damage.dfn │ │ │ │ │ │ │ ├── _range.dfn │ │ │ │ │ │ │ ├── _range_combat_damage_modifiers.dfn │ │ │ │ │ │ │ ├── _restore_mp.dfn │ │ │ │ │ │ │ ├── _root_add_to_train.dfn │ │ │ │ │ │ │ ├── _root_common.dfn │ │ │ │ │ │ │ ├── _root_default_attack.dfn │ │ │ │ │ │ │ ├── _root_faber.dfn │ │ │ │ │ │ │ ├── _root_harvest.dfn │ │ │ │ │ │ │ ├── _root_magic.dfn │ │ │ │ │ │ │ ├── _root_melee_combat.dfn │ │ │ │ │ │ │ ├── _root_range_combat.dfn │ │ │ │ │ │ │ ├── _root_refine_item.dfn │ │ │ │ │ │ │ ├── _root_repair_item.dfn │ │ │ │ │ │ │ ├── _root_tame.dfn │ │ │ │ │ │ │ ├── _root_tracking.dfn │ │ │ │ │ │ │ ├── _root_training.dfn │ │ │ │ │ │ │ ├── _sentence_modifier.dfn │ │ │ │ │ │ │ ├── _sentence_modifier_operator.typ │ │ │ │ │ │ │ ├── _set_dispell_transfert.dfn │ │ │ │ │ │ │ ├── _set_effect_duration.dfn │ │ │ │ │ │ │ ├── _set_effect_dynamic_modifier.dfn │ │ │ │ │ │ │ ├── _set_effect_modifier.dfn │ │ │ │ │ │ │ ├── _set_localisation.dfn │ │ │ │ │ │ │ ├── _set_sentence_nb_cycles.dfn │ │ │ │ │ │ │ ├── _static_string_params.typ │ │ │ │ │ │ │ ├── _stun.dfn │ │ │ │ │ │ │ ├── _target_beasts_train.dfn │ │ │ │ │ │ │ ├── _target_pets.dfn │ │ │ │ │ │ │ ├── _target_types.typ │ │ │ │ │ │ │ ├── _temporal_acceleration.dfn │ │ │ │ │ │ │ └── _transfert.dfn │ │ │ │ │ │ ├── phrase.dfn │ │ │ │ │ │ ├── saibrick.dfn │ │ │ │ │ │ ├── saiphrase.dfn │ │ │ │ │ │ ├── sbrick.dfn │ │ │ │ │ │ ├── sbrick_magic_range.dfn │ │ │ │ │ │ └── sphrase.dfn │ │ │ │ │ ├── _building_power.dfn │ │ │ │ │ ├── _building_powers.dfn │ │ │ │ │ ├── _classification_types.typ │ │ │ │ │ ├── _combat_move.dfn │ │ │ │ │ ├── _create_perso │ │ │ │ │ │ ├── _default_equipment.dfn │ │ │ │ │ │ ├── _player_default_equipment.dfn │ │ │ │ │ │ ├── _player_skin.typ │ │ │ │ │ │ ├── _sentence.dfn │ │ │ │ │ │ ├── _training_progression.dfn │ │ │ │ │ │ ├── race_stats.dfn │ │ │ │ │ │ ├── role.typ │ │ │ │ │ │ └── starting_role.dfn │ │ │ │ │ ├── _creature │ │ │ │ │ │ ├── _creature_3d.dfn │ │ │ │ │ │ ├── _creature_3d_equipment.dfn │ │ │ │ │ │ ├── _creature_3d_eyes_color.typ │ │ │ │ │ │ ├── _creature_3d_ground_fx.dfn │ │ │ │ │ │ ├── _creature_3d_hair_color.typ │ │ │ │ │ │ ├── _creature_3d_shadow.dfn │ │ │ │ │ │ ├── _creature_3d_skin.typ │ │ │ │ │ │ ├── _creature_IA.dfn │ │ │ │ │ │ ├── _creature_bag.dfn │ │ │ │ │ │ ├── _creature_basics.dfn │ │ │ │ │ │ ├── _creature_basics_type.typ │ │ │ │ │ │ ├── _creature_characteristics.dfn │ │ │ │ │ │ ├── _creature_chat_profile.typ │ │ │ │ │ │ ├── _creature_collision.dfn │ │ │ │ │ │ ├── _creature_color_equipment.typ │ │ │ │ │ │ ├── _creature_combat.dfn │ │ │ │ │ │ ├── _creature_combat_move.dfn │ │ │ │ │ │ ├── _creature_damage_shield.dfn │ │ │ │ │ │ ├── _creature_derivated_scores.dfn │ │ │ │ │ │ ├── _creature_ecosystem.typ │ │ │ │ │ │ ├── _creature_equipment.dfn │ │ │ │ │ │ ├── _creature_harvest.dfn │ │ │ │ │ │ ├── _creature_items.dfn │ │ │ │ │ │ ├── _creature_loot.dfn │ │ │ │ │ │ ├── _creature_loot_harvest_state.typ │ │ │ │ │ │ ├── _creature_movespeed.dfn │ │ │ │ │ │ ├── _creature_mp.dfn │ │ │ │ │ │ ├── _creature_phrases.dfn │ │ │ │ │ │ ├── _creature_phrases_buffer.dfn │ │ │ │ │ │ ├── _creature_phrases_healer.dfn │ │ │ │ │ │ ├── _creature_phrases_mage.dfn │ │ │ │ │ │ ├── _creature_phrases_melee.dfn │ │ │ │ │ │ ├── _creature_phrases_shooter.dfn │ │ │ │ │ │ ├── _creature_properties.dfn │ │ │ │ │ │ ├── _creature_race.typ │ │ │ │ │ │ ├── _creature_resists.dfn │ │ │ │ │ │ ├── _creature_shopkeeper_type.dfn │ │ │ │ │ │ ├── _creature_size.typ │ │ │ │ │ │ ├── _creature_species.typ │ │ │ │ │ │ ├── _creature_text_id.dfn │ │ │ │ │ │ ├── _creature_texture.typ │ │ │ │ │ │ ├── _creature_texture_equipment.typ │ │ │ │ │ │ ├── _creature_type.typ │ │ │ │ │ │ ├── creature_stat.typ │ │ │ │ │ │ ├── fight_config.dfn │ │ │ │ │ │ ├── teleport_type.typ │ │ │ │ │ │ └── text_id_correspondance.dfn │ │ │ │ │ ├── _deposit │ │ │ │ │ │ ├── _deposit_mp.dfn │ │ │ │ │ │ └── _deposit_mp_season.dfn │ │ │ │ │ ├── _difficulty_appreciation.typ │ │ │ │ │ ├── _economic │ │ │ │ │ │ ├── _bot_buy_sell.dfn │ │ │ │ │ │ └── prices_table.dfn │ │ │ │ │ ├── _emote │ │ │ │ │ │ ├── _text_emote.dfn │ │ │ │ │ │ ├── emot.dfn │ │ │ │ │ │ └── text_emotes.dfn │ │ │ │ │ ├── _encyclopedia │ │ │ │ │ │ ├── encyclo_album.dfn │ │ │ │ │ │ └── encyclo_thema.dfn │ │ │ │ │ ├── _entity_types.typ │ │ │ │ │ ├── _fx(tmp) │ │ │ │ │ │ ├── _fx_ps.dfn │ │ │ │ │ │ ├── _fx_ps_user_params_critical.dfn │ │ │ │ │ │ ├── _fx_ps_user_params_standard.dfn │ │ │ │ │ │ ├── _fx_ps_user_params_strong.dfn │ │ │ │ │ │ ├── _fx_ps_user_params_strong_combo.dfn │ │ │ │ │ │ ├── _fx_ps_user_params_weak.dfn │ │ │ │ │ │ ├── _fx_ps_user_params_weak_combo.dfn │ │ │ │ │ │ ├── _fx_trail.dfn │ │ │ │ │ │ ├── _fx_user_param.typ │ │ │ │ │ │ └── fx.dfn │ │ │ │ │ ├── _item │ │ │ │ │ │ ├── _item_3d.dfn │ │ │ │ │ │ ├── _item_3d_fx.dfn │ │ │ │ │ │ ├── _item_3d_fx_static.dfn │ │ │ │ │ │ ├── _item_ammo.dfn │ │ │ │ │ │ ├── _item_armor.dfn │ │ │ │ │ │ ├── _item_bag.dfn │ │ │ │ │ │ ├── _item_basics.dfn │ │ │ │ │ │ ├── _item_command_ticket.dfn │ │ │ │ │ │ ├── _item_consumable.dfn │ │ │ │ │ │ ├── _item_cosmetics.dfn │ │ │ │ │ │ ├── _item_crafting_tool.dfn │ │ │ │ │ │ ├── _item_effects.dfn │ │ │ │ │ │ ├── _item_equipment_info.dfn │ │ │ │ │ │ ├── _item_equipment_modifier.dfn │ │ │ │ │ │ ├── _item_faber.dfn │ │ │ │ │ │ ├── _item_faber_component.dfn │ │ │ │ │ │ ├── _item_faber_learning.dfn │ │ │ │ │ │ ├── _item_faber_mp_parameters.dfn │ │ │ │ │ │ ├── _item_faber_plan.dfn │ │ │ │ │ │ ├── _item_food.dfn │ │ │ │ │ │ ├── _item_guild_option.dfn │ │ │ │ │ │ ├── _item_harvest_tool.dfn │ │ │ │ │ │ ├── _item_melee_weapon.dfn │ │ │ │ │ │ ├── _item_mp.dfn │ │ │ │ │ │ ├── _item_mp_param.dfn │ │ │ │ │ │ ├── _item_pet.dfn │ │ │ │ │ │ ├── _item_range_weapon.dfn │ │ │ │ │ │ ├── _item_regen_characteristic_modifier.dfn │ │ │ │ │ │ ├── _item_regen_scores_modifier.dfn │ │ │ │ │ │ ├── _item_scores_modifier.dfn │ │ │ │ │ │ ├── _item_scroll.dfn │ │ │ │ │ │ ├── _item_service.dfn │ │ │ │ │ │ ├── _item_shield.dfn │ │ │ │ │ │ ├── _item_skills_modifier.dfn │ │ │ │ │ │ ├── _item_special_effect.dfn │ │ │ │ │ │ ├── _item_special_effects.dfn │ │ │ │ │ │ ├── _item_taming_tool.dfn │ │ │ │ │ │ ├── _item_teleport.dfn │ │ │ │ │ │ ├── _item_training_tool.dfn │ │ │ │ │ │ ├── _item_xp_catalyser.dfn │ │ │ │ │ │ ├── _protections.dfn │ │ │ │ │ │ ├── item_ammo_type.typ │ │ │ │ │ │ ├── item_animset.typ │ │ │ │ │ │ ├── item_armor_max_protection.typ │ │ │ │ │ │ ├── item_armor_protection.typ │ │ │ │ │ │ ├── item_attack_type.typ │ │ │ │ │ │ ├── item_category.typ │ │ │ │ │ │ ├── item_color.typ │ │ │ │ │ │ ├── item_cosmetics_types.typ │ │ │ │ │ │ ├── item_crafting_tool_type.typ │ │ │ │ │ │ ├── item_damage_type.typ │ │ │ │ │ │ ├── item_effect_type.typ │ │ │ │ │ │ ├── item_family.typ │ │ │ │ │ │ ├── item_firing_range.typ │ │ │ │ │ │ ├── item_guild_option_type.typ │ │ │ │ │ │ ├── item_magazine_size.typ │ │ │ │ │ │ ├── item_map.typ │ │ │ │ │ │ ├── item_memorization_slot_types.typ │ │ │ │ │ │ ├── item_mp_category.typ │ │ │ │ │ │ ├── item_mp_faber_property.typ │ │ │ │ │ │ ├── item_mp_faber_type.typ │ │ │ │ │ │ ├── item_mp_family.typ │ │ │ │ │ │ ├── item_mp_group.typ │ │ │ │ │ │ ├── item_mp_property.typ │ │ │ │ │ │ ├── item_mp_property_depth.typ │ │ │ │ │ │ ├── item_mp_protection_type.typ │ │ │ │ │ │ ├── item_mp_use.typ │ │ │ │ │ │ ├── item_origine.typ │ │ │ │ │ │ ├── item_service.typ │ │ │ │ │ │ ├── item_shield_category.typ │ │ │ │ │ │ ├── item_slot.typ │ │ │ │ │ │ ├── item_slot_type.typ │ │ │ │ │ │ ├── item_taming_range.typ │ │ │ │ │ │ ├── item_taming_tool_type.typ │ │ │ │ │ │ ├── item_teleport_type.typ │ │ │ │ │ │ ├── item_type.typ │ │ │ │ │ │ ├── item_weapon_max_damage.typ │ │ │ │ │ │ ├── item_weight.typ │ │ │ │ │ │ └── item_workshop_needed.typ │ │ │ │ │ ├── _localisation_size_adjustment.dfn │ │ │ │ │ ├── _localisation_table_line.dfn │ │ │ │ │ ├── _loot.dfn │ │ │ │ │ ├── _loot_tables │ │ │ │ │ │ ├── _loot_money.dfn │ │ │ │ │ │ ├── _loot_set_row.dfn │ │ │ │ │ │ ├── _loot_table_row.dfn │ │ │ │ │ │ ├── loot_set.dfn │ │ │ │ │ │ └── loot_table.dfn │ │ │ │ │ ├── _mission │ │ │ │ │ │ ├── _mission_logic_table_entry.dfn │ │ │ │ │ │ ├── mission_icon.dfn │ │ │ │ │ │ └── mission_logic_table.dfn │ │ │ │ │ ├── _outposts │ │ │ │ │ │ ├── _outpost_building_driller.dfn │ │ │ │ │ │ ├── _outpost_building_driller_mp.dfn │ │ │ │ │ │ ├── outpost.dfn │ │ │ │ │ │ ├── outpost_building.dfn │ │ │ │ │ │ ├── outpost_building_type.typ │ │ │ │ │ │ └── outpost_squad.dfn │ │ │ │ │ ├── _pacts │ │ │ │ │ │ ├── _stats.dfn │ │ │ │ │ │ └── death_impact.dfn │ │ │ │ │ ├── _plant_textureset.typ │ │ │ │ │ ├── _player(tmp) │ │ │ │ │ │ ├── _pacte_type.typ │ │ │ │ │ │ ├── _peuple.typ │ │ │ │ │ │ └── player.dfn │ │ │ │ │ ├── _regen │ │ │ │ │ │ ├── _regen.dfn │ │ │ │ │ │ └── regen_table.dfn │ │ │ │ │ ├── _role │ │ │ │ │ │ ├── _action_nature.typ │ │ │ │ │ │ ├── _career.typ │ │ │ │ │ │ ├── _characteristic.typ │ │ │ │ │ │ ├── _job.typ │ │ │ │ │ │ ├── _role_master.typ │ │ │ │ │ │ ├── _scores.typ │ │ │ │ │ │ ├── _skill_category.typ │ │ │ │ │ │ ├── _skill_role_category.typ │ │ │ │ │ │ ├── _skill_type_and_associated_carac.dfn │ │ │ │ │ │ ├── _specialized_skill_type_and_associated_carac.dfn │ │ │ │ │ │ └── role_definition.dfn │ │ │ │ │ ├── _season_light_cycle.dfn │ │ │ │ │ ├── _skills │ │ │ │ │ │ ├── Skills.csv │ │ │ │ │ │ ├── SkillsCategory.xls │ │ │ │ │ │ ├── _civilization_skills.dfn │ │ │ │ │ │ ├── _civilization_skills.typ │ │ │ │ │ │ ├── _civilization_specialized_skills.typ │ │ │ │ │ │ ├── _craft_skills.dfn │ │ │ │ │ │ ├── _craft_skills.typ │ │ │ │ │ │ ├── _crafting_skills.dfn │ │ │ │ │ │ ├── _crafting_skills.typ │ │ │ │ │ │ ├── _crafting_specialized_skills.typ │ │ │ │ │ │ ├── _defense_skills.dfn │ │ │ │ │ │ ├── _defense_skills.typ │ │ │ │ │ │ ├── _generic_skills.dfn │ │ │ │ │ │ ├── _generic_skills.typ │ │ │ │ │ │ ├── _generic_specialized_skills.typ │ │ │ │ │ │ ├── _harvest_skills.dfn │ │ │ │ │ │ ├── _harvest_skills.typ │ │ │ │ │ │ ├── _harvest_specialized_skills.typ │ │ │ │ │ │ ├── _magic_alteration_skills.dfn │ │ │ │ │ │ ├── _magic_alteration_skills.typ │ │ │ │ │ │ ├── _magic_alteration_specialized_skills.typ │ │ │ │ │ │ ├── _magic_attack_skills.dfn │ │ │ │ │ │ ├── _magic_attack_skills.typ │ │ │ │ │ │ ├── _magic_attack_specialized_skills.typ │ │ │ │ │ │ ├── _magic_healer_skills.dfn │ │ │ │ │ │ ├── _magic_healer_skills.typ │ │ │ │ │ │ ├── _magic_healer_specialized_skills.typ │ │ │ │ │ │ ├── _magic_skills.dfn │ │ │ │ │ │ ├── _magic_skills.typ │ │ │ │ │ │ ├── _magic_specialized_skills.typ │ │ │ │ │ │ ├── _melee_skills.dfn │ │ │ │ │ │ ├── _melee_skills.typ │ │ │ │ │ │ ├── _melee_specialized_skills.typ │ │ │ │ │ │ ├── _move_competences.dfn │ │ │ │ │ │ ├── _range_skills.dfn │ │ │ │ │ │ ├── _range_skills.typ │ │ │ │ │ │ ├── _range_specialized_skills.typ │ │ │ │ │ │ ├── _skill_data.dfn │ │ │ │ │ │ ├── _skills.typ │ │ │ │ │ │ ├── _skillsCode.typ │ │ │ │ │ │ ├── _skills_and_specialized_skills.typ │ │ │ │ │ │ ├── _specialized_skills.typ │ │ │ │ │ │ ├── _title.typ │ │ │ │ │ │ ├── _title_civ.typ │ │ │ │ │ │ ├── _title_cult.typ │ │ │ │ │ │ ├── _title_unblock.dfn │ │ │ │ │ │ ├── _trading_skills.dfn │ │ │ │ │ │ ├── _trading_skills.typ │ │ │ │ │ │ ├── _trading_specialized_skills.typ │ │ │ │ │ │ ├── _training_characteristic_skills.dfn │ │ │ │ │ │ ├── _training_characteristic_skills.typ │ │ │ │ │ │ ├── _training_characteristic_specialized_skills.typ │ │ │ │ │ │ ├── _training_score_skills.dfn │ │ │ │ │ │ ├── _training_score_skills.typ │ │ │ │ │ │ ├── _training_score_specialized_skills.typ │ │ │ │ │ │ ├── _training_skills.typ │ │ │ │ │ │ ├── _training_specialized_skills.typ │ │ │ │ │ │ ├── generate_skills_dfn.bat │ │ │ │ │ │ ├── skill_extractor.cfg │ │ │ │ │ │ ├── skill_tree.dfn │ │ │ │ │ │ └── titles.dfn │ │ │ │ │ ├── actionlist.dfn │ │ │ │ │ ├── aiaction.dfn │ │ │ │ │ ├── aiaction_aiming_type.typ │ │ │ │ │ ├── aiaction_area_type.typ │ │ │ │ │ ├── aiaction_combat_damage_type.typ │ │ │ │ │ ├── aiaction_effect_type.typ │ │ │ │ │ ├── aiaction_linkOTType.typ │ │ │ │ │ ├── aiaction_type.typ │ │ │ │ │ ├── armor.dfn │ │ │ │ │ ├── armorpiece.dfn │ │ │ │ │ ├── attack.dfn │ │ │ │ │ ├── attack_id.dfn │ │ │ │ │ ├── attack_list.dfn │ │ │ │ │ ├── attack_list_entry.dfn │ │ │ │ │ ├── attack_type.typ │ │ │ │ │ ├── audioFX.dfn │ │ │ │ │ ├── body_to_bone.dfn │ │ │ │ │ ├── building.dfn │ │ │ │ │ ├── cast_ray.dfn │ │ │ │ │ ├── characterdamagelocalisationtable.typ │ │ │ │ │ ├── civilisation.dfn │ │ │ │ │ ├── commission.dfn │ │ │ │ │ ├── continents.typ │ │ │ │ │ ├── creature.dfn │ │ │ │ │ ├── damage_shield_type.typ │ │ │ │ │ ├── deathpact.dfn │ │ │ │ │ ├── deposit.dfn │ │ │ │ │ ├── forage_source.dfn │ │ │ │ │ ├── gender.typ │ │ │ │ │ ├── id_to_string.dfn │ │ │ │ │ ├── id_to_string_array.dfn │ │ │ │ │ ├── item.dfn │ │ │ │ │ ├── item.typ │ │ │ │ │ ├── itemstat.dfn │ │ │ │ │ ├── law.dfn │ │ │ │ │ ├── light_cycle.dfn │ │ │ │ │ ├── localisation_size_adjustment_table.dfn │ │ │ │ │ ├── localisation_table.dfn │ │ │ │ │ ├── plant.dfn │ │ │ │ │ ├── race.dfn │ │ │ │ │ ├── range_weapon_type.typ │ │ │ │ │ ├── region_list.typ │ │ │ │ │ ├── role.dfn │ │ │ │ │ ├── sitem.dfn │ │ │ │ │ ├── sky.dfn │ │ │ │ │ ├── sky_color_gradient_info.dfn │ │ │ │ │ ├── sky_color_info.dfn │ │ │ │ │ ├── sky_color_mode.typ │ │ │ │ │ ├── sky_object.dfn │ │ │ │ │ ├── sky_object_priority.typ │ │ │ │ │ ├── sky_object_version.dfn │ │ │ │ │ ├── sky_ref_color.typ │ │ │ │ │ ├── succes_chances_table.dfn │ │ │ │ │ ├── success_chances_table.dfn │ │ │ │ │ ├── town_list.typ │ │ │ │ │ ├── tribe.dfn │ │ │ │ │ ├── weather_function.dfn │ │ │ │ │ ├── weather_function_modifier.dfn │ │ │ │ │ ├── weather_function_params.dfn │ │ │ │ │ ├── weather_function_visual.dfn │ │ │ │ │ └── weather_setup.dfn │ │ │ │ ├── ico │ │ │ │ │ ├── creature.ico │ │ │ │ │ └── item.ico │ │ │ │ ├── predefs │ │ │ │ │ ├── bot_buffer_attack_phrases.typ │ │ │ │ │ ├── bot_buffer_defence_phrases.typ │ │ │ │ │ ├── bot_healer_defence_phrases.typ │ │ │ │ │ ├── bot_healer_special_phrases.typ │ │ │ │ │ ├── bot_mage_attack_phrases.typ │ │ │ │ │ ├── bot_mage_special_phrases.typ │ │ │ │ │ ├── bot_melee_attack_phrases.typ │ │ │ │ │ ├── bot_melee_defence_phrases.typ │ │ │ │ │ ├── bot_shooter_attack_phrases.typ │ │ │ │ │ ├── bot_shooter_special_phrases.typ │ │ │ │ │ ├── character_characteristics.typ │ │ │ │ │ ├── character_name.typ │ │ │ │ │ ├── creature_hitpoint_formuli.typ │ │ │ │ │ ├── creature_sap_formuli.typ │ │ │ │ │ ├── creature_stamina_formuli.typ │ │ │ │ │ ├── ecosystem.typ │ │ │ │ │ ├── floradensity.typ │ │ │ │ │ ├── formulae.typ │ │ │ │ │ ├── item_hitpoint_formuli.typ │ │ │ │ │ ├── item_special_effect.typ │ │ │ │ │ ├── plantscalemax.typ │ │ │ │ │ ├── plantscalemin.typ │ │ │ │ │ └── randomseed.typ │ │ │ │ ├── primitive.typ │ │ │ │ ├── reaction.typ │ │ │ │ ├── tmp │ │ │ │ │ ├── plant_name.typ │ │ │ │ │ └── point_name.typ │ │ │ │ ├── trigger.typ │ │ │ │ └── world │ │ │ │ │ ├── __TRAP__filename.typ │ │ │ │ │ ├── _world_continent.dfn │ │ │ │ │ ├── _world_map.dfn │ │ │ │ │ ├── _world_map_child.dfn │ │ │ │ │ ├── ai.dfn │ │ │ │ │ ├── aimgr.dfn │ │ │ │ │ ├── area.dfn │ │ │ │ │ ├── continent.dfn │ │ │ │ │ ├── ecosystem.dfn │ │ │ │ │ ├── faction.dfn │ │ │ │ │ ├── flora.dfn │ │ │ │ │ ├── landmark.dfn │ │ │ │ │ ├── region.dfn │ │ │ │ │ ├── season.typ │ │ │ │ │ ├── village.dfn │ │ │ │ │ ├── village_ig.dfn │ │ │ │ │ ├── world.dfn │ │ │ │ │ └── zc.dfn │ │ │ ├── Ecosystems │ │ │ │ ├── desert.ecosystem │ │ │ │ ├── jungle.ecosystem │ │ │ │ ├── lacustre.ecosystem │ │ │ │ └── primes_roots.ecosystem │ │ │ ├── Game_elem │ │ │ │ ├── Building │ │ │ │ │ └── guard_tower.building │ │ │ │ ├── CreatePerso │ │ │ │ │ ├── _parent │ │ │ │ │ │ ├── _craftsman.starting_role │ │ │ │ │ │ ├── _fighter.starting_role │ │ │ │ │ │ ├── _fyros.starting_role │ │ │ │ │ │ ├── _harvester.starting_role │ │ │ │ │ │ ├── _magician.starting_role │ │ │ │ │ │ ├── _matis.starting_role │ │ │ │ │ │ ├── _parent.starting_role │ │ │ │ │ │ ├── _parent_attacks.race_stats │ │ │ │ │ │ ├── _tryker.starting_role │ │ │ │ │ │ └── _zorai.starting_role │ │ │ │ │ ├── fyros.race_stats │ │ │ │ │ ├── fyros_craftsman.starting_role │ │ │ │ │ ├── fyros_fighter.starting_role │ │ │ │ │ ├── fyros_harvester.starting_role │ │ │ │ │ ├── fyros_magician.starting_role │ │ │ │ │ ├── matis.race_stats │ │ │ │ │ ├── matis_craftsman.starting_role │ │ │ │ │ ├── matis_fighter.starting_role │ │ │ │ │ ├── matis_harvester.starting_role │ │ │ │ │ ├── matis_magician.starting_role │ │ │ │ │ ├── tryker.race_stats │ │ │ │ │ ├── tryker_craftsman.starting_role │ │ │ │ │ ├── tryker_fighter.starting_role │ │ │ │ │ ├── tryker_harvester.starting_role │ │ │ │ │ ├── tryker_magician.starting_role │ │ │ │ │ ├── zorai.race_stats │ │ │ │ │ ├── zorai_craftsman.starting_role │ │ │ │ │ ├── zorai_fighter.starting_role │ │ │ │ │ ├── zorai_harvester.starting_role │ │ │ │ │ └── zorai_magician.starting_role │ │ │ │ ├── Creature │ │ │ │ │ ├── Npc │ │ │ │ │ │ ├── bestiary │ │ │ │ │ │ │ ├── actionlist │ │ │ │ │ │ │ │ ├── amftm1.actionlist │ │ │ │ │ │ │ │ └── dag_attack.actionlist │ │ │ │ │ │ │ ├── aiaction │ │ │ │ │ │ │ │ ├── dag_attack.aiaction │ │ │ │ │ │ │ │ ├── default_fauna_attack_slash.aiaction │ │ │ │ │ │ │ │ ├── melee_extra_damage_f.aiaction │ │ │ │ │ │ │ │ └── melee_normal_damage_f.aiaction │ │ │ │ │ │ │ └── creature │ │ │ │ │ │ │ │ ├── _attack_type_parents │ │ │ │ │ │ │ │ └── dag_attack.creature │ │ │ │ │ │ │ │ └── chiang │ │ │ │ │ │ │ │ ├── company_of_the_drill_loge_master_z_h_b1.creature │ │ │ │ │ │ │ │ ├── drill_zohc3.creature │ │ │ │ │ │ │ │ └── fmftm1.creature │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ ├── _basics_3D │ │ │ │ │ │ │ ├── _fyros_female.creature │ │ │ │ │ │ │ ├── _fyros_male.creature │ │ │ │ │ │ │ ├── _homin_attack.creature │ │ │ │ │ │ │ ├── _karavan_female.creature │ │ │ │ │ │ │ ├── _karavan_male.creature │ │ │ │ │ │ │ ├── _matis_female.creature │ │ │ │ │ │ │ ├── _matis_male.creature │ │ │ │ │ │ │ ├── _tryker_female.creature │ │ │ │ │ │ │ ├── _tryker_male.creature │ │ │ │ │ │ │ ├── _zorai_female.creature │ │ │ │ │ │ │ └── _zorai_male.creature │ │ │ │ │ │ │ └── _default_NPC_caracteristics.creature │ │ │ │ │ ├── _formuli.creature │ │ │ │ │ ├── fame_parent │ │ │ │ │ │ ├── _fame_none.creature │ │ │ │ │ │ └── _fame_zorai.creature │ │ │ │ │ ├── fauna │ │ │ │ │ │ ├── Ecosystem │ │ │ │ │ │ │ └── forest │ │ │ │ │ │ │ │ └── _dag_for.creature │ │ │ │ │ │ ├── Parent_creature_prototype │ │ │ │ │ │ │ └── _dag.creature │ │ │ │ │ │ ├── ai_parent │ │ │ │ │ │ │ └── _ai_herbivore_craintif.creature │ │ │ │ │ │ ├── bestiary │ │ │ │ │ │ │ └── forest │ │ │ │ │ │ │ │ └── chdfa1.creature │ │ │ │ │ │ └── set_armure │ │ │ │ │ │ │ └── _medium_slashing_armor_set.creature │ │ │ │ │ ├── objects │ │ │ │ │ │ ├── _parent_botobject.creature │ │ │ │ │ │ └── object_watch_tower.creature │ │ │ │ │ └── raw_material_assignment │ │ │ │ │ │ └── _chdfa1_mp.creature │ │ │ │ ├── Deposit │ │ │ │ │ └── parent │ │ │ │ │ │ ├── _displeasure_04_01.deposit │ │ │ │ │ │ ├── _level.deposit │ │ │ │ │ │ ├── _lvl_01_05.deposit │ │ │ │ │ │ ├── _quantity_11_15.deposit │ │ │ │ │ │ ├── _quantity_forest.deposit │ │ │ │ │ │ └── _regen_forest_040.deposit │ │ │ │ ├── Loot │ │ │ │ │ └── Loot_Creature │ │ │ │ │ │ ├── _meat_loot_lvl.loot │ │ │ │ │ │ ├── meat_loot_lvl_01_05.loot │ │ │ │ │ │ ├── meat_loot_lvl_06_10.loot │ │ │ │ │ │ ├── meat_loot_lvl_11_15.loot │ │ │ │ │ │ ├── meat_loot_lvl_16_20.loot │ │ │ │ │ │ └── meat_loot_lvl_21_25.loot │ │ │ │ ├── LootTables │ │ │ │ │ ├── axe_dagger_matis.loot │ │ │ │ │ └── test_loot_table.loot │ │ │ │ ├── Pacts │ │ │ │ │ └── pacts.death_impact │ │ │ │ ├── Plant │ │ │ │ │ ├── Flora_template │ │ │ │ │ │ ├── forest │ │ │ │ │ │ │ ├── FO_type_01_b.flora │ │ │ │ │ │ │ └── FO_type_04_b.flora │ │ │ │ │ │ ├── jungle │ │ │ │ │ │ │ ├── JU_type_01_a.flora │ │ │ │ │ │ │ ├── JU_type_01_b.flora │ │ │ │ │ │ │ ├── JU_type_01_c.flora │ │ │ │ │ │ │ ├── JU_type_01_d.flora │ │ │ │ │ │ │ ├── JU_type_01_e.flora │ │ │ │ │ │ │ ├── JU_type_01_f.flora │ │ │ │ │ │ │ ├── JU_type_01_g.flora │ │ │ │ │ │ │ ├── JU_type_01_h.flora │ │ │ │ │ │ │ ├── JU_type_01_i.flora │ │ │ │ │ │ │ ├── JU_type_01_j.flora │ │ │ │ │ │ │ ├── fx_ju_fo_all_fx.flora │ │ │ │ │ │ │ ├── fx_ju_fo_aqua_fx.flora │ │ │ │ │ │ │ ├── fx_ju_fo_desert_fx.flora │ │ │ │ │ │ │ ├── fx_ju_fo_pollen_fx.flora │ │ │ │ │ │ │ ├── fx_ju_fo_serpent_scorpion.flora │ │ │ │ │ │ │ ├── fx_matis_ju_fo_all_fx.flora │ │ │ │ │ │ │ ├── ju_type_S2_young_tree.flora │ │ │ │ │ │ │ ├── ju_type_S3_Banana_tree.flora │ │ │ │ │ │ │ ├── ju_type_S3_Carni_tree.flora │ │ │ │ │ │ │ ├── ju_type_S3_bush_tree.flora │ │ │ │ │ │ │ ├── ju_type_S3_fantree.flora │ │ │ │ │ │ │ ├── ju_type_S3_plantegrasse.flora │ │ │ │ │ │ │ ├── ju_type_s3_plante.flora │ │ │ │ │ │ │ ├── jungle_bamboo.flora │ │ │ │ │ │ │ ├── jungle_banana_tree.flora │ │ │ │ │ │ │ ├── jungle_big_tree.flora │ │ │ │ │ │ │ ├── jungle_bush_tree.flora │ │ │ │ │ │ │ ├── jungle_canopy_tree.flora │ │ │ │ │ │ │ ├── jungle_dead_tree.flora │ │ │ │ │ │ │ ├── jungle_fantree.flora │ │ │ │ │ │ │ ├── jungle_fx.flora │ │ │ │ │ │ │ ├── jungle_plante.flora │ │ │ │ │ │ │ ├── jungle_tree.flora │ │ │ │ │ │ │ └── jungle_young_tree.flora │ │ │ │ │ │ └── lacustre │ │ │ │ │ │ │ └── tr_palmtree.flora │ │ │ │ │ └── ecosystem │ │ │ │ │ │ ├── forest │ │ │ │ │ │ ├── FX │ │ │ │ │ │ │ ├── FX_Fo-Ju-ColibrisB.plant │ │ │ │ │ │ │ ├── FX_Fo-SolBirthA.plant │ │ │ │ │ │ │ ├── FX_Fo-bugsA.plant │ │ │ │ │ │ │ ├── FX_Fo-bugsB.plant │ │ │ │ │ │ │ ├── FX_Fo-bugsC.plant │ │ │ │ │ │ │ └── FX_Fo_Fishes.plant │ │ │ │ │ │ └── common │ │ │ │ │ │ │ ├── FO_S2_bigroot_A.plant │ │ │ │ │ │ │ ├── FO_S2_bigroot_B.plant │ │ │ │ │ │ │ ├── FO_S2_bigroot_C.plant │ │ │ │ │ │ │ ├── FO_S2_birch.plant │ │ │ │ │ │ │ ├── FO_S2_spiketree.plant │ │ │ │ │ │ │ ├── Fo_s1_giant_tree.plant │ │ │ │ │ │ │ ├── fo_S3_champignou_A.plant │ │ │ │ │ │ │ ├── fo_S3_champignou_B.plant │ │ │ │ │ │ │ ├── fo_s1_arbreagrelot.plant │ │ │ │ │ │ │ └── fo_s2_arbragrelot.plant │ │ │ │ │ │ ├── jungle │ │ │ │ │ │ ├── FX │ │ │ │ │ │ │ ├── FX_Ju-DragonFlyA.plant │ │ │ │ │ │ │ ├── FX_Ju-GhostA.plant │ │ │ │ │ │ │ ├── FX_Ju-GhostB.plant │ │ │ │ │ │ │ ├── FX_Ju-SolBirthD.plant │ │ │ │ │ │ │ ├── FX_Ju-SolbirthA.plant │ │ │ │ │ │ │ ├── FX_Ju-SolbirthB.plant │ │ │ │ │ │ │ ├── FX_Ju-SolbirthC.plant │ │ │ │ │ │ │ ├── FX_Ju-batA.plant │ │ │ │ │ │ │ ├── FX_Ju-bugsA.plant │ │ │ │ │ │ │ ├── FX_Ju-bugsB.plant │ │ │ │ │ │ │ ├── FX_Ju-treefallA.plant │ │ │ │ │ │ │ ├── FX_Ju-treefallB.plant │ │ │ │ │ │ │ ├── FX_Ju-treefallC.plant │ │ │ │ │ │ │ ├── FX_Ju-treefallD.plant │ │ │ │ │ │ │ ├── FX_goo_insect.plant │ │ │ │ │ │ │ ├── FX_goo_mamal.plant │ │ │ │ │ │ │ └── FX_goo_smoke.plant │ │ │ │ │ │ └── common │ │ │ │ │ │ │ ├── Ju_S1_bamboo.plant │ │ │ │ │ │ │ ├── Ju_S1_canopy_tree.plant │ │ │ │ │ │ │ ├── Ju_S2_big_tree.plant │ │ │ │ │ │ │ ├── Ju_S2_young_tree.plant │ │ │ │ │ │ │ ├── Ju_S3_Banana_tree.plant │ │ │ │ │ │ │ ├── Ju_S3_bamboo.plant │ │ │ │ │ │ │ ├── Ju_S3_bush_tree.plant │ │ │ │ │ │ │ ├── Ju_S3_dead_tree.plant │ │ │ │ │ │ │ ├── Ju_S3_fantree.plant │ │ │ │ │ │ │ ├── Ju_S3_fougere.plant │ │ │ │ │ │ │ ├── Ju_S3_plante.plant │ │ │ │ │ │ │ ├── Ju_S3_plantegrasse.plant │ │ │ │ │ │ │ └── Ju_S3_tree.plant │ │ │ │ │ │ └── lacustre │ │ │ │ │ │ └── common │ │ │ │ │ │ ├── tr_s2_bamboo_a.plant │ │ │ │ │ │ ├── tr_s2_palmtree_a.plant │ │ │ │ │ │ ├── tr_s2_palmtree_b.plant │ │ │ │ │ │ ├── tr_s2_palmtree_c.plant │ │ │ │ │ │ ├── tr_s2_palmtree_d.plant │ │ │ │ │ │ ├── tr_s2_palmtree_e.plant │ │ │ │ │ │ └── tr_s2_palmtree_f.plant │ │ │ │ ├── items │ │ │ │ │ └── armor │ │ │ │ │ │ ├── Parent │ │ │ │ │ │ ├── tryker │ │ │ │ │ │ │ └── civil01 │ │ │ │ │ │ │ │ ├── tr_civil01_armpad.item │ │ │ │ │ │ │ │ ├── tr_civil01_bottes.item │ │ │ │ │ │ │ │ ├── tr_civil01_gilet.item │ │ │ │ │ │ │ │ ├── tr_civil01_hand.item │ │ │ │ │ │ │ │ └── tr_civil01_pantabotte.item │ │ │ │ │ │ └── zorai │ │ │ │ │ │ │ ├── zo_cheveux_long01.item │ │ │ │ │ │ │ ├── zo_cheveux_medium01.item │ │ │ │ │ │ │ ├── zo_cheveux_shave01.item │ │ │ │ │ │ │ ├── zo_cheveux_short01.item │ │ │ │ │ │ │ └── zo_visage.item │ │ │ │ │ │ └── creature_armor │ │ │ │ │ │ ├── _creature_armor.item │ │ │ │ │ │ ├── creature_body_armor_specific │ │ │ │ │ │ └── dag_light_slashing_chest.item │ │ │ │ │ │ ├── light_slashing_chest.item │ │ │ │ │ │ ├── light_slashing_feet.item │ │ │ │ │ │ ├── light_slashing_hands.item │ │ │ │ │ │ ├── light_slashing_head.item │ │ │ │ │ │ ├── light_slashing_legs.item │ │ │ │ │ │ ├── medium_slashing_chest.item │ │ │ │ │ │ ├── medium_slashing_feet.item │ │ │ │ │ │ ├── medium_slashing_hands.item │ │ │ │ │ │ ├── medium_slashing_head.item │ │ │ │ │ │ └── medium_slashing_legs.item │ │ │ │ ├── localisation.localisation_table │ │ │ │ ├── mission │ │ │ │ │ └── generic_generic.mission_icon │ │ │ │ ├── sheet_id.bin │ │ │ │ └── weather │ │ │ │ │ ├── clouds1.weather_setup │ │ │ │ │ ├── clouds2.weather_setup │ │ │ │ │ ├── fair1.weather_setup │ │ │ │ │ ├── fair2.weather_setup │ │ │ │ │ ├── fair3.weather_setup │ │ │ │ │ ├── forest │ │ │ │ │ ├── fo_clouds1.weather_setup │ │ │ │ │ ├── fo_clouds2.weather_setup │ │ │ │ │ ├── fo_clouds_norain.weather_setup │ │ │ │ │ ├── fo_fair1.weather_setup │ │ │ │ │ ├── fo_fair2.weather_setup │ │ │ │ │ ├── fo_fair3.weather_setup │ │ │ │ │ ├── fo_thunder_sand.weather_setup │ │ │ │ │ ├── fo_thunder_snow.weather_setup │ │ │ │ │ └── fo_thunder_storm.weather_setup │ │ │ │ │ ├── thunder_sand.weather_setup │ │ │ │ │ ├── thunder_snow.weather_setup │ │ │ │ │ └── thunder_storm.weather_setup │ │ │ ├── World │ │ │ │ ├── Centrale │ │ │ │ │ └── continent.cfg │ │ │ │ ├── Lesfalaises(matis) │ │ │ │ │ ├── continent.cfg │ │ │ │ │ ├── harvest.deposit │ │ │ │ │ └── lesfalaises.continent │ │ │ │ ├── factions │ │ │ │ │ ├── fyros.faction │ │ │ │ │ ├── kami.faction │ │ │ │ │ ├── karavan.faction │ │ │ │ │ ├── matis.faction │ │ │ │ │ ├── tryker.faction │ │ │ │ │ ├── tryton.faction │ │ │ │ │ └── zorai.faction │ │ │ │ ├── fame_tribes_threshold.txt │ │ │ │ ├── indoors │ │ │ │ │ └── indoors.continent │ │ │ │ ├── newbieland │ │ │ │ │ ├── continent.cfg │ │ │ │ │ └── newbieland.continent │ │ │ │ ├── ryzom.light_cycle │ │ │ │ ├── ryzom.weather_function_params │ │ │ │ ├── ryzom.world │ │ │ │ └── static_fame.txt │ │ │ ├── game_element │ │ │ │ ├── anim │ │ │ │ │ ├── anim_set │ │ │ │ │ │ ├── _alert.animation_set │ │ │ │ │ │ ├── _combat.animation_set │ │ │ │ │ │ ├── _creatures.animset_mode │ │ │ │ │ │ ├── _death.animation_set │ │ │ │ │ │ ├── _default.animation_set │ │ │ │ │ │ ├── _eat.animation_set │ │ │ │ │ │ ├── _homins.animset_mode │ │ │ │ │ │ ├── _hungry.animation_set │ │ │ │ │ │ ├── _objects.animset_mode │ │ │ │ │ │ ├── _parent.animset_mode │ │ │ │ │ │ ├── _rest.animation_set │ │ │ │ │ │ ├── entities.animset_list │ │ │ │ │ │ ├── homin │ │ │ │ │ │ │ ├── _fx.animation_set │ │ │ │ │ │ │ ├── _homin.animset_mode │ │ │ │ │ │ │ ├── _homin_death__.animation_set │ │ │ │ │ │ │ ├── _homin_default.animation_set │ │ │ │ │ │ │ ├── fy_hof │ │ │ │ │ │ │ │ ├── fy_hof.animset_mode │ │ │ │ │ │ │ │ ├── fy_hof_combat_1h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_1h_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_1h_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_1hsw_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_1hsw_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_1hsw_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_2h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_2hsw_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat__.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat__d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat__s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_br_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_d_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_d_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_d_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_g_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_gr_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_gr_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_l2m_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_sg_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_combat_sgga_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_danseuse__.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_1h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_1h_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_1h_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_1hsw_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_1hsw_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_1hsw_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_2h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_2hsw_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death__.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death__d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death__s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_br_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_bu_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_co_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_cu1_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_cu2_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_d_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_d_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_d_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_dig_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_dis_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_fi_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_g_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_ga_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_gr_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_gr_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_ho_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_l2m_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_mclo_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_mix_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_mtoo_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_pa_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_sg_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_sgga_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_sh_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_tr_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_death_trstr_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_1h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_1h_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_1h_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_1hsw_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_1hsw_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_1hsw_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_2h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_2hsw_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default__.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default__d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default__s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_br_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_bu_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_co_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_cu1_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_cu2_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_d_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_d_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_d_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_dig_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_dis_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_fi_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_g_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_ga_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_gr_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_gr_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_ho_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_l2m_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_mclo_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_mix_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_mtoo_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_pa_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_sg_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_sgga_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_sh_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_tr_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_default_trstr_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_mount_death__.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_mount_default__.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_mount_swim__.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_mount_swim_death__.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_rest__.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_sit_1h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_sit_1h_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_sit_1h_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_sit_1hsw_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_sit_1hsw_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_sit_1hsw_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_sit_2h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_sit__.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_sit__d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_sit__s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_sit_d_.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_sit_d_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_sit_d_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hof_swim__.animation_set │ │ │ │ │ │ │ │ └── fy_hof_swim_death__.animation_set │ │ │ │ │ │ │ ├── fy_hof_emots_a__.animation_set │ │ │ │ │ │ │ ├── fy_hof_lod__.animation_set │ │ │ │ │ │ │ ├── fy_hom │ │ │ │ │ │ │ │ ├── fy_hom.animset_mode │ │ │ │ │ │ │ │ ├── fy_hom_combat_1h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_1h_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_1h_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_1hsw_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_1hsw_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_1hsw_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_2h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_2hsw_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat__.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat__d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat__s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_br_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_d_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_d_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_d_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_g_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_gr_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_gr_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_l2m_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_sg_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_combat_sgga_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_1h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_1h_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_1h_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_1hsw_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_1hsw_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_1hsw_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_2h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_2hsw_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death__.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death__d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death__s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_br_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_bu_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_co_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_cu1_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_cu2_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_d_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_d_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_d_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_dig_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_dis_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_fi_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_g_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_ga_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_gr_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_gr_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_ho_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_l2m_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_mclo_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_mix_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_mtoo_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_pa_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_sg_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_sgga_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_sh_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_tr_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_death_trstr_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_1h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_1h_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_1h_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_1hsw_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_1hsw_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_1hsw_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_2h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_2hsw_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default__.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default__d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default__s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_br_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_bu_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_co_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_cu1_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_cu2_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_d_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_d_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_d_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_dig_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_dis_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_fi_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_g_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_ga_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_gr_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_gr_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_ho_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_l2m_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_mclo_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_mix_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_mtoo_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_pa_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_sg_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_sgga_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_sh_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_tr_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_default_trstr_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_mount_death__.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_mount_default__.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_mount_swim__.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_mount_swim_death__.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_rest__.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_sit_1h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_sit_1h_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_sit_1h_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_sit_1hsw_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_sit_1hsw_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_sit_1hsw_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_sit_2h_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_sit__.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_sit__d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_sit__s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_sit_d_.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_sit_d_d.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_sit_d_s.animation_set │ │ │ │ │ │ │ │ ├── fy_hom_swim__.animation_set │ │ │ │ │ │ │ │ └── fy_hom_swim_death__.animation_set │ │ │ │ │ │ │ ├── fy_hom_emots_a__.animation_set │ │ │ │ │ │ │ └── fy_hom_lod__.animation_set │ │ │ │ │ │ ├── objects │ │ │ │ │ │ │ └── objects.animset_mode │ │ │ │ │ │ └── pet │ │ │ │ │ │ │ ├── _pet.animset_mode │ │ │ │ │ │ │ └── dag │ │ │ │ │ │ │ ├── dag.animset_mode │ │ │ │ │ │ │ ├── dag_alert__.animation_set │ │ │ │ │ │ │ ├── dag_combat__.animation_set │ │ │ │ │ │ │ ├── dag_death__.animation_set │ │ │ │ │ │ │ ├── dag_default__.animation_set │ │ │ │ │ │ │ ├── dag_eat__.animation_set │ │ │ │ │ │ │ ├── dag_hungry__.animation_set │ │ │ │ │ │ │ └── dag_rest__.animation_set │ │ │ │ │ ├── automaton │ │ │ │ │ │ ├── _alert.automaton │ │ │ │ │ │ ├── _combat.automaton │ │ │ │ │ │ ├── _combat_float.automaton │ │ │ │ │ │ ├── _creature.automaton │ │ │ │ │ │ ├── _death.automaton │ │ │ │ │ │ ├── _eat.automaton │ │ │ │ │ │ ├── _homin.automaton │ │ │ │ │ │ ├── _hungry.automaton │ │ │ │ │ │ ├── _mount_normal.automaton │ │ │ │ │ │ ├── _mount_swim.automaton │ │ │ │ │ │ ├── _normal.automaton │ │ │ │ │ │ ├── _parent.automaton │ │ │ │ │ │ ├── _rest.automaton │ │ │ │ │ │ ├── _sit.automaton │ │ │ │ │ │ ├── _swim.automaton │ │ │ │ │ │ ├── automaton.automaton_list │ │ │ │ │ │ ├── creature_alert.automaton │ │ │ │ │ │ ├── creature_combat.automaton │ │ │ │ │ │ ├── creature_combat_float.automaton │ │ │ │ │ │ ├── creature_death.automaton │ │ │ │ │ │ ├── creature_eat.automaton │ │ │ │ │ │ ├── creature_hungry.automaton │ │ │ │ │ │ ├── creature_mount_normal.automaton │ │ │ │ │ │ ├── creature_mount_swim.automaton │ │ │ │ │ │ ├── creature_normal.automaton │ │ │ │ │ │ ├── creature_rest.automaton │ │ │ │ │ │ ├── creature_sit.automaton │ │ │ │ │ │ ├── creature_swim.automaton │ │ │ │ │ │ ├── homin_alert.automaton │ │ │ │ │ │ ├── homin_combat.automaton │ │ │ │ │ │ ├── homin_combat_float.automaton │ │ │ │ │ │ ├── homin_death.automaton │ │ │ │ │ │ ├── homin_eat.automaton │ │ │ │ │ │ ├── homin_hungry.automaton │ │ │ │ │ │ ├── homin_mount_normal.automaton │ │ │ │ │ │ ├── homin_mount_swim.automaton │ │ │ │ │ │ ├── homin_normal.automaton │ │ │ │ │ │ ├── homin_rest.automaton │ │ │ │ │ │ ├── homin_sit.automaton │ │ │ │ │ │ ├── homin_swim.automaton │ │ │ │ │ │ └── homin_swim_death.automaton │ │ │ │ │ ├── fx │ │ │ │ │ │ ├── auras.id_to_string_array │ │ │ │ │ │ ├── auras │ │ │ │ │ │ │ └── _aura.animation_fx │ │ │ │ │ │ ├── combat │ │ │ │ │ │ │ ├── attack_damage_shield │ │ │ │ │ │ │ │ └── damage_shield.attack_list │ │ │ │ │ │ │ ├── attack_magic │ │ │ │ │ │ │ │ └── homin │ │ │ │ │ │ │ │ │ ├── magic_cur_homin.attack_list │ │ │ │ │ │ │ │ │ └── magic_off_homin.attack_list │ │ │ │ │ │ │ ├── attack_melee │ │ │ │ │ │ │ │ └── melee.attack_list │ │ │ │ │ │ │ ├── attack_range │ │ │ │ │ │ │ │ └── range.attack_list │ │ │ │ │ │ │ ├── fx_cast │ │ │ │ │ │ │ │ ├── _cast_base.animation_fx_set │ │ │ │ │ │ │ │ └── homin │ │ │ │ │ │ │ │ │ └── new_casts │ │ │ │ │ │ │ │ │ ├── cast_cur_healhp_begin.animation_fx_set │ │ │ │ │ │ │ │ │ ├── cast_cur_healhp_end.animation_fx_set │ │ │ │ │ │ │ │ │ ├── cast_cur_healhp_fail.animation_fx_set │ │ │ │ │ │ │ │ │ ├── cast_cur_healhp_loop.animation_fx_set │ │ │ │ │ │ │ │ │ ├── cast_off_acid_begin.animation_fx_set │ │ │ │ │ │ │ │ │ ├── cast_off_acid_end.animation_fx_set │ │ │ │ │ │ │ │ │ ├── cast_off_acid_fail.animation_fx_set │ │ │ │ │ │ │ │ │ └── cast_off_acid_loop.animation_fx_set │ │ │ │ │ │ │ ├── fx_magic_impact │ │ │ │ │ │ │ │ ├── acid_impact.animation_fx_set │ │ │ │ │ │ │ │ └── healhp_impact.animation_fx_set │ │ │ │ │ │ │ ├── fx_magic_projectile │ │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ │ │ ├── _magic_projectile_cur_chain.animation_fx_set │ │ │ │ │ │ │ │ │ └── _magic_projectile_off_chain.animation_fx_set │ │ │ │ │ │ │ │ ├── base_per_spell │ │ │ │ │ │ │ │ │ ├── _magic_projectile_acid.animation_fx_set │ │ │ │ │ │ │ │ │ └── _magic_projectile_healhp.animation_fx_set │ │ │ │ │ │ │ │ ├── magic_projectile_acid_chain.animation_fx_set │ │ │ │ │ │ │ │ └── magic_projectile_healhp_chain.animation_fx_set │ │ │ │ │ │ │ ├── fx_range_impact │ │ │ │ │ │ │ │ └── range_impact_generic.animation_fx_set │ │ │ │ │ │ │ └── fx_range_projectile │ │ │ │ │ │ │ │ └── range_projectile_missile.animation_fx_set │ │ │ │ │ │ ├── links.id_to_string_array │ │ │ │ │ │ ├── links │ │ │ │ │ │ │ └── _link.animation_fx │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ ├── _range_impact_generic_base.animation_fx │ │ │ │ │ │ │ └── anim_fx_misc.id_to_string_array │ │ │ │ │ │ └── static │ │ │ │ │ │ │ └── object_street_lamp.animation_fx │ │ │ │ │ └── mode2animset.string_array │ │ │ │ ├── emotes │ │ │ │ │ ├── list.emot │ │ │ │ │ └── list.text_emotes │ │ │ │ ├── encyclopedia │ │ │ │ │ ├── album_00.encyclo_album │ │ │ │ │ └── thema_00_01.encyclo_thema │ │ │ │ ├── forage_source │ │ │ │ │ ├── 0_0.forage_source │ │ │ │ │ └── _fx0.forage_source │ │ │ │ ├── fx │ │ │ │ │ ├── toxic_cloud_0.fx │ │ │ │ │ ├── toxic_cloud_1.fx │ │ │ │ │ └── toxic_cloud_2.fx │ │ │ │ ├── outpost │ │ │ │ │ ├── building │ │ │ │ │ │ └── empty.outpost_building │ │ │ │ │ ├── outpost │ │ │ │ │ │ ├── _outpost.outpost │ │ │ │ │ │ └── example_outpost_01.outpost │ │ │ │ │ └── squad │ │ │ │ │ │ ├── _free_squad_parent.outpost_squad │ │ │ │ │ │ ├── free_squad_light_melee_fighter_b.outpost_squad │ │ │ │ │ │ ├── free_squad_light_melee_fighter_c.outpost_squad │ │ │ │ │ │ ├── free_squad_light_melee_fighter_d.outpost_squad │ │ │ │ │ │ ├── free_squad_light_melee_fighter_e.outpost_squad │ │ │ │ │ │ └── free_squad_light_melee_fighter_f.outpost_squad │ │ │ │ ├── sbrick │ │ │ │ │ ├── craft │ │ │ │ │ │ ├── credit │ │ │ │ │ │ │ └── recommended │ │ │ │ │ │ │ │ └── bczaca01.sbrick │ │ │ │ │ │ ├── effect │ │ │ │ │ │ │ ├── ammo │ │ │ │ │ │ │ │ ├── fyros │ │ │ │ │ │ │ │ │ └── bcfpea17.sbrick │ │ │ │ │ │ │ │ ├── matis │ │ │ │ │ │ │ │ │ └── bcmpea17.sbrick │ │ │ │ │ │ │ │ ├── tryker │ │ │ │ │ │ │ │ │ └── bctpea17.sbrick │ │ │ │ │ │ │ │ └── zorai │ │ │ │ │ │ │ │ │ └── bczpea17.sbrick │ │ │ │ │ │ │ ├── armor │ │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ │ └── heavy_armor │ │ │ │ │ │ │ │ │ │ └── bccaea07.sbrick │ │ │ │ │ │ │ │ ├── fyros │ │ │ │ │ │ │ │ │ └── light_armor │ │ │ │ │ │ │ │ │ │ └── bcfaea07.sbrick │ │ │ │ │ │ │ │ ├── matis │ │ │ │ │ │ │ │ │ └── light_armor │ │ │ │ │ │ │ │ │ │ └── bcmaea07.sbrick │ │ │ │ │ │ │ │ ├── refugee │ │ │ │ │ │ │ │ │ ├── bcraea01.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea02.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea03.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea04.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea05.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea06.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea07.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea08.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea09.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea10.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea11.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea12.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea13.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea14.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea15.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea16.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea17.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea18.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea19.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea20.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea21.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea22.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea23.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea24.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea25.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea26.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea27.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea28.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea29.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea30.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea31.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea32.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea33.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea34.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea35.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea36.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea37.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea38.sbrick │ │ │ │ │ │ │ │ │ ├── bcraea39.sbrick │ │ │ │ │ │ │ │ │ └── bcraea40.sbrick │ │ │ │ │ │ │ │ ├── tryker │ │ │ │ │ │ │ │ │ └── light_armor │ │ │ │ │ │ │ │ │ │ └── bctaea07.sbrick │ │ │ │ │ │ │ │ └── zorai │ │ │ │ │ │ │ │ │ └── light_armor │ │ │ │ │ │ │ │ │ └── bczaea07.sbrick │ │ │ │ │ │ │ ├── jewel │ │ │ │ │ │ │ │ ├── fyros │ │ │ │ │ │ │ │ │ └── bcfjea04.sbrick │ │ │ │ │ │ │ │ ├── matis │ │ │ │ │ │ │ │ │ └── bcmjea04.sbrick │ │ │ │ │ │ │ │ ├── tryker │ │ │ │ │ │ │ │ │ └── bctjea04.sbrick │ │ │ │ │ │ │ │ └── zorai │ │ │ │ │ │ │ │ │ └── bczjea04.sbrick │ │ │ │ │ │ │ ├── melee_weapon │ │ │ │ │ │ │ │ ├── fyros │ │ │ │ │ │ │ │ │ └── bcfmea06.sbrick │ │ │ │ │ │ │ │ ├── matis │ │ │ │ │ │ │ │ │ └── bcmmea06.sbrick │ │ │ │ │ │ │ │ ├── refugee │ │ │ │ │ │ │ │ │ ├── bcrmea06.sbrick │ │ │ │ │ │ │ │ │ └── bcrmea15.sbrick │ │ │ │ │ │ │ │ ├── tryker │ │ │ │ │ │ │ │ │ └── bctmea06.sbrick │ │ │ │ │ │ │ │ └── zorai │ │ │ │ │ │ │ │ │ ├── bczmea01_3.sbrick │ │ │ │ │ │ │ │ │ └── bczmea06.sbrick │ │ │ │ │ │ │ ├── range_weapon │ │ │ │ │ │ │ │ ├── bcfrea04.sbrick │ │ │ │ │ │ │ │ ├── bcmrea04.sbrick │ │ │ │ │ │ │ │ ├── bctrea04.sbrick │ │ │ │ │ │ │ │ └── bczrea04.sbrick │ │ │ │ │ │ │ └── shield │ │ │ │ │ │ │ │ ├── fyros │ │ │ │ │ │ │ │ └── bcfsea01.sbrick │ │ │ │ │ │ │ │ ├── matis │ │ │ │ │ │ │ │ └── bcmsea01.sbrick │ │ │ │ │ │ │ │ ├── tryker │ │ │ │ │ │ │ │ └── bctsea01.sbrick │ │ │ │ │ │ │ │ └── zorai │ │ │ │ │ │ │ │ └── bczsea01.sbrick │ │ │ │ │ │ ├── recommended │ │ │ │ │ │ │ └── bcmaca01.sbrick │ │ │ │ │ │ └── root │ │ │ │ │ │ │ ├── bcpa01.sbrick │ │ │ │ │ │ │ ├── bcpa10.sbrick │ │ │ │ │ │ │ ├── bcpa22.sbrick │ │ │ │ │ │ │ └── bcpa25.sbrick │ │ │ │ │ ├── enchantment │ │ │ │ │ │ └── bepa01.sbrick │ │ │ │ │ ├── fight │ │ │ │ │ │ ├── credit │ │ │ │ │ │ │ ├── bfca01.sbrick │ │ │ │ │ │ │ └── bfca02.sbrick │ │ │ │ │ │ ├── modifier │ │ │ │ │ │ │ ├── bfma01.sbrick │ │ │ │ │ │ │ └── bfmc01.sbrick │ │ │ │ │ │ ├── optional │ │ │ │ │ │ │ ├── bfoa01.sbrick │ │ │ │ │ │ │ └── bfoa03.sbrick │ │ │ │ │ │ └── root │ │ │ │ │ │ │ └── bfpa01.sbrick │ │ │ │ │ ├── forage │ │ │ │ │ │ └── extraction │ │ │ │ │ │ │ ├── bhfeca01.sbrick │ │ │ │ │ │ │ ├── bhfeea01.sbrick │ │ │ │ │ │ │ ├── bhfeeb01.sbrick │ │ │ │ │ │ │ ├── bhfeec01.sbrick │ │ │ │ │ │ │ └── bhfepa01.sbrick │ │ │ │ │ ├── harvest │ │ │ │ │ │ └── bhq01.sbrick │ │ │ │ │ ├── magic │ │ │ │ │ │ ├── credit │ │ │ │ │ │ │ ├── range │ │ │ │ │ │ │ │ └── bmcr00001.sbrick │ │ │ │ │ │ │ └── sap │ │ │ │ │ │ │ │ └── bmca00002.sbrick │ │ │ │ │ │ ├── effect │ │ │ │ │ │ │ └── offensive │ │ │ │ │ │ │ │ └── bmoetea01.sbrick │ │ │ │ │ │ ├── modifier │ │ │ │ │ │ │ └── offensive │ │ │ │ │ │ │ │ └── direct_damage │ │ │ │ │ │ │ │ └── special │ │ │ │ │ │ │ │ └── bmoetma00003.sbrick │ │ │ │ │ │ └── root │ │ │ │ │ │ │ └── bmpa01.sbrick │ │ │ │ │ └── timed_action │ │ │ │ │ │ ├── bapa01.sbrick │ │ │ │ │ │ ├── bapa02.sbrick │ │ │ │ │ │ ├── bapa03.sbrick │ │ │ │ │ │ ├── bapa04.sbrick │ │ │ │ │ │ └── bapa05.sbrick │ │ │ │ ├── sitem │ │ │ │ │ ├── armor │ │ │ │ │ │ ├── _parent │ │ │ │ │ │ │ ├── _c_al.sitem │ │ │ │ │ │ │ ├── _c_ar.sitem │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ └── _gca_l.sitem │ │ │ │ │ │ │ ├── fyros │ │ │ │ │ │ │ │ └── _gfa_l.sitem │ │ │ │ │ │ │ ├── matis │ │ │ │ │ │ │ │ └── _gma_l.sitem │ │ │ │ │ │ │ ├── tryker │ │ │ │ │ │ │ │ └── _gta_l.sitem │ │ │ │ │ │ │ └── zorai │ │ │ │ │ │ │ │ └── _gza_l.sitem │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── light_armor │ │ │ │ │ │ │ │ └── iccalb.sitem │ │ │ │ │ │ ├── fyros │ │ │ │ │ │ │ └── light_armor │ │ │ │ │ │ │ │ └── icfalb.sitem │ │ │ │ │ │ ├── matis │ │ │ │ │ │ │ └── light_armor │ │ │ │ │ │ │ │ └── icmalb.sitem │ │ │ │ │ │ ├── refugee │ │ │ │ │ │ │ ├── icraba.sitem │ │ │ │ │ │ │ ├── icrabe.sitem │ │ │ │ │ │ │ ├── icrabg.sitem │ │ │ │ │ │ │ ├── icrabr.sitem │ │ │ │ │ │ │ ├── icrabt.sitem │ │ │ │ │ │ │ ├── icrabu.sitem │ │ │ │ │ │ │ ├── icrabv.sitem │ │ │ │ │ │ │ ├── icrabw.sitem │ │ │ │ │ │ │ ├── icraga.sitem │ │ │ │ │ │ │ ├── icrage.sitem │ │ │ │ │ │ │ ├── icragg.sitem │ │ │ │ │ │ │ ├── icragr.sitem │ │ │ │ │ │ │ ├── icragt.sitem │ │ │ │ │ │ │ ├── icragu.sitem │ │ │ │ │ │ │ ├── icragv.sitem │ │ │ │ │ │ │ ├── icragw.sitem │ │ │ │ │ │ │ ├── icralb.sitem │ │ │ │ │ │ │ ├── icralg.sitem │ │ │ │ │ │ │ ├── icrals.sitem │ │ │ │ │ │ │ ├── icrapa.sitem │ │ │ │ │ │ │ ├── icrape.sitem │ │ │ │ │ │ │ ├── icrapg.sitem │ │ │ │ │ │ │ ├── icrapr.sitem │ │ │ │ │ │ │ ├── icrapt.sitem │ │ │ │ │ │ │ ├── icrapu.sitem │ │ │ │ │ │ │ ├── icrapv.sitem │ │ │ │ │ │ │ ├── icrapw.sitem │ │ │ │ │ │ │ ├── icrasa.sitem │ │ │ │ │ │ │ ├── icrase.sitem │ │ │ │ │ │ │ ├── icrasg.sitem │ │ │ │ │ │ │ ├── icrasr.sitem │ │ │ │ │ │ │ ├── icrast.sitem │ │ │ │ │ │ │ ├── icrasu.sitem │ │ │ │ │ │ │ ├── icrasv.sitem │ │ │ │ │ │ │ ├── icrasw.sitem │ │ │ │ │ │ │ ├── icrava.sitem │ │ │ │ │ │ │ ├── icrave.sitem │ │ │ │ │ │ │ ├── icravg.sitem │ │ │ │ │ │ │ ├── icravr.sitem │ │ │ │ │ │ │ ├── icravt.sitem │ │ │ │ │ │ │ ├── icravu.sitem │ │ │ │ │ │ │ ├── icravv.sitem │ │ │ │ │ │ │ └── icravw.sitem │ │ │ │ │ │ ├── tryker │ │ │ │ │ │ │ └── light_armor │ │ │ │ │ │ │ │ └── ictalb.sitem │ │ │ │ │ │ ├── underwear │ │ │ │ │ │ │ ├── igfau.sitem │ │ │ │ │ │ │ ├── igfbu.sitem │ │ │ │ │ │ │ ├── igfgu.sitem │ │ │ │ │ │ │ ├── igfpu.sitem │ │ │ │ │ │ │ ├── igfvu.sitem │ │ │ │ │ │ │ ├── igmau.sitem │ │ │ │ │ │ │ ├── igmbu.sitem │ │ │ │ │ │ │ ├── igmgu.sitem │ │ │ │ │ │ │ ├── igmpu.sitem │ │ │ │ │ │ │ ├── igmvu.sitem │ │ │ │ │ │ │ ├── igtau.sitem │ │ │ │ │ │ │ ├── igtbu.sitem │ │ │ │ │ │ │ ├── igtgu.sitem │ │ │ │ │ │ │ ├── igtpu.sitem │ │ │ │ │ │ │ ├── igtvu.sitem │ │ │ │ │ │ │ ├── igzau.sitem │ │ │ │ │ │ │ ├── igzbu.sitem │ │ │ │ │ │ │ ├── igzgu.sitem │ │ │ │ │ │ │ ├── igzpu.sitem │ │ │ │ │ │ │ └── igzvu.sitem │ │ │ │ │ │ └── zorai │ │ │ │ │ │ │ └── light_armor │ │ │ │ │ │ │ └── iczalb.sitem │ │ │ │ │ ├── crafting_tool │ │ │ │ │ │ └── itrtar.sitem │ │ │ │ │ ├── guild_option │ │ │ │ │ │ ├── guild_main_building.sitem │ │ │ │ │ │ └── player_building.sitem │ │ │ │ │ ├── hair_and_face │ │ │ │ │ │ ├── fy_cheveux_long01.sitem │ │ │ │ │ │ ├── fy_cheveux_medium01.sitem │ │ │ │ │ │ ├── fy_cheveux_medium02.sitem │ │ │ │ │ │ ├── fy_cheveux_medium03.sitem │ │ │ │ │ │ ├── fy_cheveux_shave01.sitem │ │ │ │ │ │ ├── fy_cheveux_short01.sitem │ │ │ │ │ │ ├── fy_cheveux_short02.sitem │ │ │ │ │ │ ├── fy_visage.sitem │ │ │ │ │ │ ├── ma_cheveux_long01.sitem │ │ │ │ │ │ ├── ma_cheveux_long02.sitem │ │ │ │ │ │ ├── ma_cheveux_medium01.sitem │ │ │ │ │ │ ├── ma_cheveux_medium02.sitem │ │ │ │ │ │ ├── ma_cheveux_shave01.sitem │ │ │ │ │ │ ├── ma_cheveux_short01.sitem │ │ │ │ │ │ ├── ma_cheveux_short02.sitem │ │ │ │ │ │ ├── ma_visage.sitem │ │ │ │ │ │ ├── tr_cheveux_long01.sitem │ │ │ │ │ │ ├── tr_cheveux_medium01.sitem │ │ │ │ │ │ ├── tr_cheveux_medium02.sitem │ │ │ │ │ │ ├── tr_cheveux_shave01.sitem │ │ │ │ │ │ ├── tr_cheveux_short01.sitem │ │ │ │ │ │ ├── tr_cheveux_short02.sitem │ │ │ │ │ │ ├── tr_cheveux_short03.sitem │ │ │ │ │ │ ├── tr_visage.sitem │ │ │ │ │ │ ├── zo_cheveux_long01.sitem │ │ │ │ │ │ ├── zo_cheveux_long02.sitem │ │ │ │ │ │ ├── zo_cheveux_medium01.sitem │ │ │ │ │ │ ├── zo_cheveux_medium02.sitem │ │ │ │ │ │ ├── zo_cheveux_medium03.sitem │ │ │ │ │ │ ├── zo_cheveux_shave01.sitem │ │ │ │ │ │ ├── zo_cheveux_short01.sitem │ │ │ │ │ │ └── zo_visage.sitem │ │ │ │ │ ├── harvesting_tool │ │ │ │ │ │ └── itrtfo.sitem │ │ │ │ │ ├── inventory │ │ │ │ │ │ └── bag.sitem │ │ │ │ │ ├── melee_weapon │ │ │ │ │ │ ├── _parent │ │ │ │ │ │ │ ├── _c_m1pd.sitem │ │ │ │ │ │ │ └── _c_m2ms.sitem │ │ │ │ │ │ └── refugee │ │ │ │ │ │ │ ├── icrm1pd.sitem │ │ │ │ │ │ │ └── icrm2ms.sitem │ │ │ │ │ └── raw_material │ │ │ │ │ │ ├── _parent │ │ │ │ │ │ ├── _m0001.sitem │ │ │ │ │ │ ├── _m0692.sitem │ │ │ │ │ │ ├── _mc.sitem │ │ │ │ │ │ ├── _mchd.sitem │ │ │ │ │ │ └── _mf.sitem │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── m0001dxacb01.sitem │ │ │ │ │ │ └── m0692chdca01.sitem │ │ │ │ │ │ ├── system_mp.sitem │ │ │ │ │ │ ├── system_mp_basic.sitem │ │ │ │ │ │ ├── system_mp_choice.sitem │ │ │ │ │ │ ├── system_mp_choice_black.sitem │ │ │ │ │ │ ├── system_mp_choice_blue.sitem │ │ │ │ │ │ ├── system_mp_choice_green.sitem │ │ │ │ │ │ ├── system_mp_choice_purple.sitem │ │ │ │ │ │ ├── system_mp_choice_red.sitem │ │ │ │ │ │ ├── system_mp_choice_turquoise.sitem │ │ │ │ │ │ ├── system_mp_choice_white.sitem │ │ │ │ │ │ ├── system_mp_excellent.sitem │ │ │ │ │ │ ├── system_mp_extra.sitem │ │ │ │ │ │ ├── system_mp_extra_black.sitem │ │ │ │ │ │ ├── system_mp_extra_blue.sitem │ │ │ │ │ │ ├── system_mp_extra_green.sitem │ │ │ │ │ │ ├── system_mp_extra_purple.sitem │ │ │ │ │ │ ├── system_mp_extra_red.sitem │ │ │ │ │ │ ├── system_mp_extra_turquoise.sitem │ │ │ │ │ │ ├── system_mp_extra_white.sitem │ │ │ │ │ │ ├── system_mp_fine.sitem │ │ │ │ │ │ └── system_mp_supreme.sitem │ │ │ │ ├── sphrase │ │ │ │ │ ├── craft │ │ │ │ │ │ ├── ammo │ │ │ │ │ │ │ ├── abcfpea17.sphrase │ │ │ │ │ │ │ ├── abcmpea17.sphrase │ │ │ │ │ │ │ ├── abctpea17.sphrase │ │ │ │ │ │ │ └── abczpea17.sphrase │ │ │ │ │ │ ├── armor │ │ │ │ │ │ │ ├── abcfaea07.sphrase │ │ │ │ │ │ │ ├── abcmaea07.sphrase │ │ │ │ │ │ │ ├── abctaea07.sphrase │ │ │ │ │ │ │ └── abczaea07.sphrase │ │ │ │ │ │ ├── jewel │ │ │ │ │ │ │ ├── abcfjea04.sphrase │ │ │ │ │ │ │ ├── abcmjea04.sphrase │ │ │ │ │ │ │ ├── abctjea04.sphrase │ │ │ │ │ │ │ └── abczjea04.sphrase │ │ │ │ │ │ ├── melee_weapon │ │ │ │ │ │ │ ├── abcfmea06.sphrase │ │ │ │ │ │ │ ├── abcmmea06.sphrase │ │ │ │ │ │ │ ├── abctmea06.sphrase │ │ │ │ │ │ │ └── abczmea06.sphrase │ │ │ │ │ │ ├── range_weapon │ │ │ │ │ │ │ ├── abcfrea04.sphrase │ │ │ │ │ │ │ ├── abcmrea04.sphrase │ │ │ │ │ │ │ ├── abctrea04.sphrase │ │ │ │ │ │ │ └── abczrea04.sphrase │ │ │ │ │ │ ├── recommended │ │ │ │ │ │ │ ├── abcfaca01.sphrase │ │ │ │ │ │ │ ├── abcmaca01.sphrase │ │ │ │ │ │ │ └── abczaca01.sphrase │ │ │ │ │ │ └── shield │ │ │ │ │ │ │ ├── abcfsea01.sphrase │ │ │ │ │ │ │ ├── abcmsea01.sphrase │ │ │ │ │ │ │ ├── abctsea01.sphrase │ │ │ │ │ │ │ └── abczsea01.sphrase │ │ │ │ │ ├── enchantment │ │ │ │ │ │ └── abe_use_item_power.sphrase │ │ │ │ │ ├── fight │ │ │ │ │ │ ├── abf01.sphrase │ │ │ │ │ │ ├── abfma01.sphrase │ │ │ │ │ │ └── abfmc01.sphrase │ │ │ │ │ ├── forage │ │ │ │ │ │ └── extraction │ │ │ │ │ │ │ └── abhfepa01.sphrase │ │ │ │ │ └── magic │ │ │ │ │ │ └── offensive │ │ │ │ │ │ └── direct_damage │ │ │ │ │ │ └── special │ │ │ │ │ │ └── abm_mt_acid_00003.sphrase │ │ │ │ ├── test_sky │ │ │ │ │ ├── fo_mainland_au.sky │ │ │ │ │ ├── fo_mainland_sp.sky │ │ │ │ │ ├── fo_mainland_su.sky │ │ │ │ │ └── fo_mainland_wi.sky │ │ │ │ └── xp_table │ │ │ │ │ ├── action_success_for_difficulty_table.succes_chances_table │ │ │ │ │ ├── break_cast_resist.succes_chances_table │ │ │ │ │ ├── craft.succes_chances_table │ │ │ │ │ ├── curative_magic.succes_chances_table │ │ │ │ │ ├── default.action_xp_factor │ │ │ │ │ ├── dodge_parry.succes_chances_table │ │ │ │ │ ├── dodge_parry_ai.succes_chances_table │ │ │ │ │ ├── extracting.succes_chances_table │ │ │ │ │ ├── fight_phrase.succes_chances_table │ │ │ │ │ ├── magic_resist.succes_chances_table │ │ │ │ │ ├── magic_resist_link.succes_chances_table │ │ │ │ │ ├── offensive_magic.succes_chances_table │ │ │ │ │ ├── prospecting.succes_chances_table │ │ │ │ │ ├── shield_use.succes_chances_table │ │ │ │ │ ├── skills.skill_tree │ │ │ │ │ ├── unblock.titles │ │ │ │ │ └── xptable.xp_table │ │ │ └── world_editor_files │ │ │ │ ├── class_doc │ │ │ │ ├── add_compass.html │ │ │ │ ├── ai_event.html │ │ │ │ ├── bot_chat.html │ │ │ │ ├── buy.html │ │ │ │ ├── cast.html │ │ │ │ ├── craft.html │ │ │ │ ├── custom_loot_set.html │ │ │ │ ├── custom_loot_table.html │ │ │ │ ├── depositzone.html │ │ │ │ ├── destroy_item.html │ │ │ │ ├── do_mission.html │ │ │ │ ├── dyn_answer.html │ │ │ │ ├── escort.html │ │ │ │ ├── fail.html │ │ │ │ ├── forage.html │ │ │ │ ├── give_item.html │ │ │ │ ├── give_money.html │ │ │ │ ├── group_fauna.html │ │ │ │ ├── item_guidelines.html │ │ │ │ ├── jump_to.html │ │ │ │ ├── keywords.html │ │ │ │ ├── kill.html │ │ │ │ ├── learn_action.html │ │ │ │ ├── linear_dyn_chat_continue.html │ │ │ │ ├── linear_dyn_chat_fail.html │ │ │ │ ├── linear_dyn_chat_retry.html │ │ │ │ ├── loot.html │ │ │ │ ├── mission_tree.html │ │ │ │ ├── no_answer.html │ │ │ │ ├── npc_bot.html │ │ │ │ ├── npc_event_handler_action.html │ │ │ │ ├── npc_group.html │ │ │ │ ├── npc_group_parameters.html │ │ │ │ ├── people.html │ │ │ │ ├── population.html │ │ │ │ ├── popup_msg.html │ │ │ │ ├── pre_requisite.html │ │ │ │ ├── recv_faction_point.html │ │ │ │ ├── recv_fame.html │ │ │ │ ├── recv_item.html │ │ │ │ ├── recv_money.html │ │ │ │ ├── recv_xp.html │ │ │ │ ├── rite_nomenclature_guidelines.html │ │ │ │ ├── script_guidelines.html │ │ │ │ ├── sell.html │ │ │ │ ├── set_constrains.html │ │ │ │ ├── skill.html │ │ │ │ ├── spawn_mission.html │ │ │ │ ├── step.html │ │ │ │ ├── step_any.html │ │ │ │ ├── step_dyn_chat.html │ │ │ │ ├── step_failure.html │ │ │ │ ├── step_if.html │ │ │ │ ├── step_ooo.html │ │ │ │ ├── system_msg.html │ │ │ │ ├── talk_to.html │ │ │ │ ├── target.html │ │ │ │ ├── teleport.html │ │ │ │ ├── teleport_destination.html │ │ │ │ ├── teleport_spawn_zone.html │ │ │ │ ├── teleport_trigger.html │ │ │ │ ├── text_guidelines.html │ │ │ │ ├── user_model.html │ │ │ │ ├── var_creature.html │ │ │ │ ├── var_faction.html │ │ │ │ ├── var_group.html │ │ │ │ ├── var_item.html │ │ │ │ ├── var_npc.html │ │ │ │ ├── var_place.html │ │ │ │ ├── var_quality.html │ │ │ │ ├── var_quantity.html │ │ │ │ ├── var_text.html │ │ │ │ └── visit.html │ │ │ │ ├── continents │ │ │ │ ├── fyros.html │ │ │ │ ├── matis.html │ │ │ │ ├── nexus.html │ │ │ │ ├── prime_root.html │ │ │ │ ├── tryker.html │ │ │ │ └── zorai.html │ │ │ │ ├── families │ │ │ │ ├── bandit.html │ │ │ │ ├── civil.html │ │ │ │ ├── degen.html │ │ │ │ ├── fauna.html │ │ │ │ ├── fauna_carnivore.html │ │ │ │ ├── fauna_herbivore.html │ │ │ │ ├── flora.html │ │ │ │ ├── goo.html │ │ │ │ ├── kami.html │ │ │ │ ├── karavan.html │ │ │ │ ├── kitin.html │ │ │ │ ├── kitin_invasion.html │ │ │ │ ├── mp.html │ │ │ │ ├── tribe_ancient_dryads.html │ │ │ │ ├── tribe_antikamis.html │ │ │ │ ├── tribe_barkers.html │ │ │ │ ├── tribe_beachcombers.html │ │ │ │ ├── tribe_black_circle.html │ │ │ │ ├── tribe_cholorogoos.html │ │ │ │ ├── tribe_cockroaches.html │ │ │ │ ├── tribe_company_of_the_eternal_tree.html │ │ │ │ ├── tribe_corsair.html │ │ │ │ ├── tribe_cute.html │ │ │ │ ├── tribe_darkening_sap.html │ │ │ │ ├── tribe_dune_riders.html │ │ │ │ ├── tribe_ecowarriors.html │ │ │ │ ├── tribe_firebrands.html │ │ │ │ ├── tribe_first_deserter.html │ │ │ │ ├── tribe_frahar.html │ │ │ │ ├── tribe_frahar_hunters.html │ │ │ │ ├── tribe_gibbay.html │ │ │ │ ├── tribe_goo_heads.html │ │ │ │ ├── tribe_green_seed.html │ │ │ │ ├── tribe_hamazans_of_the_dead_seed.html │ │ │ │ ├── tribe_icon_workshipers.html │ │ │ │ ├── tribe_keepers.html │ │ │ │ ├── tribe_kitin_gatheres.html │ │ │ │ ├── tribe_lagoon_brothers.html │ │ │ │ ├── tribe_lawless.html │ │ │ │ ├── tribe_leviers.html │ │ │ │ ├── tribe_master_of_the_goo.html │ │ │ │ ├── tribe_matisian_border_guards.html │ │ │ │ ├── tribe_night_turners.html │ │ │ │ ├── tribe_oasis_diggers.html │ │ │ │ ├── tribe_pyromancers.html │ │ │ │ ├── tribe_recoverers.html │ │ │ │ ├── tribe_renegades.html │ │ │ │ ├── tribe_restorers.html │ │ │ │ ├── tribe_root_tappers.html │ │ │ │ ├── tribe_sacred_sap.html │ │ │ │ ├── tribe_sap_gleaners.html │ │ │ │ ├── tribe_sap_slaves.html │ │ │ │ ├── tribe_scorchers.html │ │ │ │ ├── tribe_shadow_runners.html │ │ │ │ ├── tribe_siblings_of_the_weeds.html │ │ │ │ ├── tribe_silt_sculptors.html │ │ │ │ ├── tribe_slavers.html │ │ │ │ ├── tribe_smuglers.html │ │ │ │ ├── tribe_the_arid_matis.html │ │ │ │ ├── tribe_the_kuilde.html │ │ │ │ ├── tribe_the_slash_and_burn.html │ │ │ │ ├── tribe_tutors.html │ │ │ │ ├── tribe_water_breakers.html │ │ │ │ └── tribe_woven_bridles.html │ │ │ │ ├── fauna_zone_properties │ │ │ │ ├── activity_food_carn.zone │ │ │ │ ├── activity_food_cute_invasion.zone │ │ │ │ ├── activity_food_degen.zone │ │ │ │ ├── activity_food_frahar_invasion.zone │ │ │ │ ├── activity_food_gibbai_invasion.zone │ │ │ │ ├── activity_food_goo_invasion.zone │ │ │ │ ├── activity_food_herb.zone │ │ │ │ ├── activity_food_kitin.zone │ │ │ │ ├── activity_food_kitin_invasion.zone │ │ │ │ ├── activity_plant.zone │ │ │ │ ├── activity_rest_carn.zone │ │ │ │ ├── activity_rest_cute_invasion.zone │ │ │ │ ├── activity_rest_degen.zone │ │ │ │ ├── activity_rest_frahar_invasion.zone │ │ │ │ ├── activity_rest_gibbai_invasion.zone │ │ │ │ ├── activity_rest_goo_invasion.zone │ │ │ │ ├── activity_rest_herb.zone │ │ │ │ ├── activity_rest_kitin.zone │ │ │ │ ├── activity_rest_kitin_invasion.zone │ │ │ │ └── activity_spawn.zone │ │ │ │ ├── npc │ │ │ │ ├── action_type │ │ │ │ │ ├── begin_state.html │ │ │ │ │ ├── code.html │ │ │ │ │ ├── condition_if.html │ │ │ │ │ ├── condition_if_else.html │ │ │ │ │ ├── despawn.html │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── emot.html │ │ │ │ │ ├── modify_variable.html │ │ │ │ │ ├── multi_actions.html │ │ │ │ │ ├── null_action.html │ │ │ │ │ ├── outpost_giver_ready.html │ │ │ │ │ ├── punctual_state.html │ │ │ │ │ ├── punctual_state_end.html │ │ │ │ │ ├── random_select.html │ │ │ │ │ ├── random_select_state.html │ │ │ │ │ ├── say.html │ │ │ │ │ ├── send_message.html │ │ │ │ │ ├── set_fauna_activity.html │ │ │ │ │ ├── set_flags_on_dyn_zones.html │ │ │ │ │ ├── set_state_timeout.html │ │ │ │ │ ├── set_timer_t0.html │ │ │ │ │ ├── set_timer_t1.html │ │ │ │ │ ├── set_timer_t2.html │ │ │ │ │ ├── set_timer_t3.html │ │ │ │ │ ├── sit_down.html │ │ │ │ │ ├── spawn.html │ │ │ │ │ ├── stand_up.html │ │ │ │ │ ├── trigger_event_0.html │ │ │ │ │ ├── trigger_event_1.html │ │ │ │ │ ├── trigger_event_2.html │ │ │ │ │ ├── trigger_event_3.html │ │ │ │ │ ├── trigger_event_4.html │ │ │ │ │ ├── trigger_event_5.html │ │ │ │ │ ├── trigger_event_6.html │ │ │ │ │ ├── trigger_event_7.html │ │ │ │ │ ├── trigger_event_8.html │ │ │ │ │ └── trigger_event_9.html │ │ │ │ ├── ai_activity │ │ │ │ │ ├── bandit.html │ │ │ │ │ ├── escorted.html │ │ │ │ │ ├── guard.html │ │ │ │ │ ├── guard_escorted.html │ │ │ │ │ ├── no_change.html │ │ │ │ │ └── normal.html │ │ │ │ ├── ai_movement │ │ │ │ │ ├── follow_route.html │ │ │ │ │ ├── idle.html │ │ │ │ │ ├── stand_on_start_point.html │ │ │ │ │ ├── stand_on_vertices.html │ │ │ │ │ ├── wait.html │ │ │ │ │ └── wander.html │ │ │ │ ├── ai_profile │ │ │ │ │ ├── follow_leader.html │ │ │ │ │ ├── follow_route_escorted.html │ │ │ │ │ ├── follow_route_with_team.html │ │ │ │ │ ├── guard_place.html │ │ │ │ │ ├── guard_team.html │ │ │ │ │ └── unspawned.html │ │ │ │ └── event_type │ │ │ │ │ ├── all_pets_arrived_from_stable.html │ │ │ │ │ ├── all_pets_gone_to_stable.html │ │ │ │ │ ├── all_team_npcs_present.html │ │ │ │ │ ├── all_team_players_present.html │ │ │ │ │ ├── bot_begin_fight.html │ │ │ │ │ ├── bot_killed.html │ │ │ │ │ ├── bot_target_killed.html │ │ │ │ │ ├── destination_reached.html │ │ │ │ │ ├── destination_reached_all.html │ │ │ │ │ ├── destination_reached_first.html │ │ │ │ │ ├── egs_up.html │ │ │ │ │ ├── end_of_state.html │ │ │ │ │ ├── escort_away.html │ │ │ │ │ ├── escort_back.html │ │ │ │ │ ├── group_attack_end.html │ │ │ │ │ ├── group_despawned.html │ │ │ │ │ ├── group_eliminated.html │ │ │ │ │ ├── group_under_attack.html │ │ │ │ │ ├── other_team_enters_view.html │ │ │ │ │ ├── other_team_meets_team.html │ │ │ │ │ ├── outpost_attacker_changed.html │ │ │ │ │ ├── outpost_guild_ownership_begin.html │ │ │ │ │ ├── outpost_guild_ownership_end.html │ │ │ │ │ ├── outpost_owner_changed.html │ │ │ │ │ ├── outpost_peace_state_begin.html │ │ │ │ │ ├── outpost_peace_state_end.html │ │ │ │ │ ├── outpost_state_changed.html │ │ │ │ │ ├── outpost_tribe_ownership_begin.html │ │ │ │ │ ├── outpost_tribe_ownership_end.html │ │ │ │ │ ├── player_follow_npc.html │ │ │ │ │ ├── player_request_pause.html │ │ │ │ │ ├── player_request_pause_end.html │ │ │ │ │ ├── player_target_npc.html │ │ │ │ │ ├── punctual_state_timeout.html │ │ │ │ │ ├── route_blocked.html │ │ │ │ │ ├── route_blocked_end.html │ │ │ │ │ ├── set_flags_on_dyn_zones.html │ │ │ │ │ ├── start_of_state.html │ │ │ │ │ ├── state_timeout.html │ │ │ │ │ ├── team_attacked.html │ │ │ │ │ ├── team_attacked_end.html │ │ │ │ │ ├── team_member_LD.html │ │ │ │ │ ├── team_member_badly_hurt.html │ │ │ │ │ ├── team_member_killed.html │ │ │ │ │ ├── team_member_logout.html │ │ │ │ │ ├── team_pack_animal_hurt.html │ │ │ │ │ ├── team_pack_animal_killed.html │ │ │ │ │ ├── timer_t0_triggered.html │ │ │ │ │ ├── timer_t1_triggered.html │ │ │ │ │ ├── timer_t2_triggered.html │ │ │ │ │ ├── timer_t3_triggered.html │ │ │ │ │ ├── user_event_0.html │ │ │ │ │ ├── user_event_1.html │ │ │ │ │ ├── user_event_2.html │ │ │ │ │ ├── user_event_3.html │ │ │ │ │ ├── user_event_4.html │ │ │ │ │ ├── user_event_5.html │ │ │ │ │ ├── user_event_6.html │ │ │ │ │ ├── user_event_7.html │ │ │ │ │ ├── user_event_8.html │ │ │ │ │ ├── user_event_9.html │ │ │ │ │ └── variable_changed.html │ │ │ │ ├── npc_zone_properties │ │ │ │ ├── activity_ambush.zone │ │ │ │ ├── activity_harvest.zone │ │ │ │ ├── activity_kami_wander.zone │ │ │ │ ├── activity_outpost.zone │ │ │ │ ├── activity_outpost_attack.zone │ │ │ │ ├── activity_outpost_def.zone │ │ │ │ ├── activity_rest.zone │ │ │ │ └── activity_spawn.zone │ │ │ │ ├── world_editor_classes.xml │ │ │ │ └── world_editor_primitive_configuration.xml │ │ └── primitives │ │ │ ├── file_index.cfg │ │ │ ├── global_world_map.primitive │ │ │ ├── mission_validation.cfg │ │ │ ├── newbieland │ │ │ ├── botobjects_newbieland.primitive │ │ │ ├── deposit_ecotype_newbie.primitive │ │ │ ├── deposit_newbieland.primitive │ │ │ ├── fauna_newbieland.primitive │ │ │ ├── guild_missions.primitive │ │ │ ├── region_newbieland.primitive │ │ │ └── urban_newbieland.primitive │ │ │ └── primitives.cfg │ └── src │ │ ├── CMakeLists.txt │ │ └── game_share │ │ ├── CMakeLists.txt │ │ ├── _backup_service_interface_implementation.h │ │ ├── _backup_service_interface_non_module.cpp │ │ ├── _backup_service_interface_singleton.cpp │ │ ├── _backup_service_interface_singleton.h │ │ ├── action.cpp │ │ ├── action.h │ │ ├── action_association.h │ │ ├── action_block.cpp │ │ ├── action_block.h │ │ ├── action_disconnection.h │ │ ├── action_dummy.h │ │ ├── action_factory.cpp │ │ ├── action_factory.h │ │ ├── action_generic.cpp │ │ ├── action_generic.h │ │ ├── action_generic_multi_part.h │ │ ├── action_login.h │ │ ├── action_nature.cpp │ │ ├── action_nature.h │ │ ├── action_position.cpp │ │ ├── action_position.h │ │ ├── action_sint64.cpp │ │ ├── action_sint64.h │ │ ├── action_sync.cpp │ │ ├── action_sync.h │ │ ├── action_target_slot.h │ │ ├── ai_wrapper.h │ │ ├── animal_status.cpp │ │ ├── animal_status.h │ │ ├── animal_type.h │ │ ├── animals_orders.cpp │ │ ├── animals_orders.h │ │ ├── armor_types.cpp │ │ ├── armor_types.h │ │ ├── backup_service_interface.cpp │ │ ├── backup_service_interface.h │ │ ├── backup_service_messages.h │ │ ├── base_types.h │ │ ├── bg_downloader_msg.cpp │ │ ├── bg_downloader_msg.h │ │ ├── bnp_patch.cpp │ │ ├── bnp_patch.h │ │ ├── body.cpp │ │ ├── body.h │ │ ├── bot_chat_types.cpp │ │ ├── bot_chat_types.h │ │ ├── brick_families.cpp │ │ ├── brick_families.h │ │ ├── brick_flags.cpp │ │ ├── brick_flags.h │ │ ├── brick_types.cpp │ │ ├── brick_types.h │ │ ├── callback_adaptor.h │ │ ├── change_tracker_base.cpp │ │ ├── change_tracker_base.h │ │ ├── change_tracker_client.cpp │ │ ├── change_tracker_client.h │ │ ├── characs_build.cpp │ │ ├── characs_build.h │ │ ├── character_summary.cpp │ │ ├── character_summary.h │ │ ├── character_sync_itf.cpp │ │ ├── character_sync_itf.h │ │ ├── character_sync_itf.xml │ │ ├── character_title.cpp │ │ ├── character_title.h │ │ ├── characteristics.cpp │ │ ├── characteristics.h │ │ ├── chat_group.cpp │ │ ├── chat_group.h │ │ ├── client_action_type.cpp │ │ ├── client_action_type.h │ │ ├── combat_flying_text.h │ │ ├── constants.h │ │ ├── continent.cpp │ │ ├── continent.h │ │ ├── continuous_action.cpp │ │ ├── continuous_action.h │ │ ├── crafting_tool_type.cpp │ │ ├── crafting_tool_type.h │ │ ├── crypt.cpp │ │ ├── crypt.h │ │ ├── cst_loader.cpp │ │ ├── cst_loader.h │ │ ├── damage_types.cpp │ │ ├── damage_types.h │ │ ├── data_set_base.cpp │ │ ├── data_set_base.h │ │ ├── deployment_configuration.cpp │ │ ├── deployment_configuration.h │ │ ├── dir_light_setup.cpp │ │ ├── dir_light_setup.h │ │ ├── dms.cpp │ │ ├── dms.h │ │ ├── dyn_chat.cpp │ │ ├── dyn_chat.h │ │ ├── ecosystem.cpp │ │ ├── ecosystem.h │ │ ├── effect_families.cpp │ │ ├── effect_families.h │ │ ├── emote_list_parser.cpp │ │ ├── emote_list_parser.h │ │ ├── entity_types.h │ │ ├── enum_generator.lua │ │ ├── enum_generator_template_cpp.lua │ │ ├── enum_generator_template_h.lua │ │ ├── enum_template.cpp │ │ ├── enum_template.h │ │ ├── enum_template.txt │ │ ├── fame.cpp │ │ ├── fame.h │ │ ├── far_position.cpp │ │ ├── far_position.h │ │ ├── file_description_container.cpp │ │ ├── file_description_container.h │ │ ├── fog_map_build.cpp │ │ ├── fog_map_build.h │ │ ├── fog_of_war.cpp │ │ ├── fog_of_war.h │ │ ├── fog_type.h │ │ ├── gender.h │ │ ├── generate_client_db.xslt │ │ ├── generate_logs.tmpl │ │ ├── generate_module_interface.xslt │ │ ├── generate_module_interface_doc.txt │ │ ├── generic_xml_msg_mngr.cpp │ │ ├── generic_xml_msg_mngr.h │ │ ├── georges_helper.cpp │ │ ├── georges_helper.h │ │ ├── guild_grade.cpp │ │ ├── guild_grade.h │ │ ├── guild_grade_inline.h │ │ ├── hit_type.h │ │ ├── http_client.cpp │ │ ├── http_client.h │ │ ├── intensity_types.cpp │ │ ├── intensity_types.h │ │ ├── interface_flags.cpp │ │ ├── interface_flags.h │ │ ├── inventories.cpp │ │ ├── inventories.h │ │ ├── ios_interface.h │ │ ├── item_family.cpp │ │ ├── item_family.h │ │ ├── item_infos.cpp │ │ ├── item_infos.h │ │ ├── item_origin.cpp │ │ ├── item_origin.h │ │ ├── item_special_effect.cpp │ │ ├── item_special_effect.h │ │ ├── item_special_effect.lua │ │ ├── item_type.cpp │ │ ├── item_type.h │ │ ├── lift_icons.cpp │ │ ├── lift_icons.h │ │ ├── light_cycle.cpp │ │ ├── light_cycle.h │ │ ├── login_registry.cpp │ │ ├── login_registry.h │ │ ├── loot_harvest_state.cpp │ │ ├── loot_harvest_state.h │ │ ├── magic_fx.cpp │ │ ├── magic_fx.h │ │ ├── mainland_summary.h │ │ ├── memorization_set_types.cpp │ │ ├── memorization_set_types.h │ │ ├── mirror.cpp │ │ ├── mirror.h │ │ ├── mirror_misc_types.h │ │ ├── mirror_prop_value.cpp │ │ ├── mirror_prop_value.h │ │ ├── mirror_prop_value_inline.h │ │ ├── mirrored_data_set.cpp │ │ ├── mirrored_data_set.h │ │ ├── mirrored_data_set_inline.h │ │ ├── mirrored_data_set_types.h │ │ ├── misc_const.h │ │ ├── mission_desc.cpp │ │ ├── mission_desc.h │ │ ├── mode_and_behaviour.cpp │ │ ├── mode_and_behaviour.h │ │ ├── module_security.h │ │ ├── mount_people.cpp │ │ ├── mount_people.h │ │ ├── mp_category.cpp │ │ ├── mp_category.h │ │ ├── msg_ais_egs_gen.cpp │ │ ├── msg_ais_egs_gen.h │ │ ├── msg_ais_egs_gen.xml │ │ ├── msg_client_server.h │ │ ├── msg_encyclopedia.h │ │ ├── multi_target.cpp │ │ ├── multi_target.h │ │ ├── news_types.h │ │ ├── object.cpp │ │ ├── object.h │ │ ├── outpost.cpp │ │ ├── outpost.h │ │ ├── pact.cpp │ │ ├── pact.h │ │ ├── people.cpp │ │ ├── people.h │ │ ├── people_pd.cpp │ │ ├── people_pd.h │ │ ├── people_pd_inline.h │ │ ├── permanent_ban_magic_number.h │ │ ├── persistent_data.cpp │ │ ├── persistent_data.h │ │ ├── persistent_data_inline.h │ │ ├── persistent_data_template.h │ │ ├── persistent_data_tree.cpp │ │ ├── persistent_data_tree.h │ │ ├── player_vision_delta.h │ │ ├── player_visual_properties.cpp │ │ ├── player_visual_properties.h │ │ ├── power_types.cpp │ │ ├── power_types.h │ │ ├── prerequisit_infos.h │ │ ├── properties.h │ │ ├── property_allocator.cpp │ │ ├── property_allocator.h │ │ ├── property_allocator_client.cpp │ │ ├── property_allocator_client.h │ │ ├── protection_type.cpp │ │ ├── protection_type.h │ │ ├── pvp_clan.cpp │ │ ├── pvp_clan.h │ │ ├── pvp_mode.cpp │ │ ├── pvp_mode.h │ │ ├── r2_basic_types.h │ │ ├── r2_ligo_config.cpp │ │ ├── r2_ligo_config.h │ │ ├── r2_messages.h │ │ ├── r2_modules_itf.cpp │ │ ├── r2_modules_itf.h │ │ ├── r2_modules_itf.xml │ │ ├── r2_share_itf.cpp │ │ ├── r2_share_itf.h │ │ ├── r2_share_itf.xml │ │ ├── r2_types.h │ │ ├── range_weapon_type.cpp │ │ ├── range_weapon_type.h │ │ ├── resistance_type.cpp │ │ ├── resistance_type.h │ │ ├── ring_access.cpp │ │ ├── ring_access.h │ │ ├── ring_session_manager_itf.cpp │ │ ├── ring_session_manager_itf.h │ │ ├── ring_session_manager_itf.php │ │ ├── ring_session_manager_itf.xml │ │ ├── rm_family.cpp │ │ ├── rm_family.h │ │ ├── rolemaster_flags.cpp │ │ ├── rolemaster_flags.h │ │ ├── roles.cpp │ │ ├── roles.h │ │ ├── ryzom_database_banks.cpp │ │ ├── ryzom_database_banks.h │ │ ├── ryzom_entity_id.cpp │ │ ├── ryzom_entity_id.h │ │ ├── ryzom_mirror_properties.cpp │ │ ├── ryzom_mirror_properties.h │ │ ├── ryzom_version.h │ │ ├── sabrina_com.cpp │ │ ├── sabrina_com.h │ │ ├── sadge_tests.h │ │ ├── scenario.cpp │ │ ├── scenario.h │ │ ├── scenario_entry_points.cpp │ │ ├── scenario_entry_points.h │ │ ├── scores.cpp │ │ ├── scores.h │ │ ├── season.cpp │ │ ├── season.h │ │ ├── season_file_ext.cpp │ │ ├── season_file_ext.h │ │ ├── season_inline.h │ │ ├── security_check.cpp │ │ ├── security_check.h │ │ ├── seeds.cpp │ │ ├── seeds.h │ │ ├── send_chat.h │ │ ├── sentence_appraisal.cpp │ │ ├── sentence_appraisal.h │ │ ├── server_admin_module.cpp │ │ ├── server_admin_module.h │ │ ├── server_animation_module.cpp │ │ ├── server_animation_module.h │ │ ├── server_edition_module.cpp │ │ ├── server_edition_module.h │ │ ├── shard_names.cpp │ │ ├── shard_names.h │ │ ├── shield_types.cpp │ │ ├── shield_types.h │ │ ├── simlag.cpp │ │ ├── simlag.h │ │ ├── singleton_registry.h │ │ ├── skills.cpp │ │ ├── skills.h │ │ ├── skills_build.cpp │ │ ├── skills_build.h │ │ ├── slot_equipment.cpp │ │ ├── slot_equipment.h │ │ ├── slot_types.cpp │ │ ├── slot_types.h │ │ ├── small_string_manager.cpp │ │ ├── small_string_manager.h │ │ ├── sp_type.cpp │ │ ├── sp_type.h │ │ ├── sp_type_inline.h │ │ ├── sphrase_com.cpp │ │ ├── sphrase_com.h │ │ ├── starting_point.cpp │ │ ├── starting_point.h │ │ ├── stdpch.cpp │ │ ├── stdpch.h │ │ ├── string_manager_sender.cpp │ │ ├── string_manager_sender.h │ │ ├── string_mgr_module.cpp │ │ ├── string_mgr_module.h │ │ ├── synchronised_message.h │ │ ├── system_message.h │ │ ├── task_list.h │ │ ├── teleport_types.cpp │ │ ├── teleport_types.h │ │ ├── temp_inventory_mode.cpp │ │ ├── temp_inventory_mode.h │ │ ├── tick_event_handler.cpp │ │ ├── tick_event_handler.h │ │ ├── tick_proxy_time_measure.h │ │ ├── time_weather_season │ │ ├── static_light_cycle.cpp │ │ ├── static_light_cycle.h │ │ ├── time_and_season.cpp │ │ ├── time_and_season.h │ │ ├── time_date_season_manager.cpp │ │ ├── time_date_season_manager.h │ │ ├── weather_function.cpp │ │ ├── weather_function.h │ │ ├── weather_function_params_sheet_base.cpp │ │ ├── weather_function_params_sheet_base.h │ │ ├── weather_function_sheet.cpp │ │ ├── weather_function_sheet.h │ │ ├── weather_manager.cpp │ │ ├── weather_manager.h │ │ ├── weather_predict.cpp │ │ ├── weather_predict.h │ │ ├── weather_setup.cpp │ │ ├── weather_setup.h │ │ ├── weather_setup_sheet_base.cpp │ │ └── weather_setup_sheet_base.h │ │ ├── timer.cpp │ │ ├── timer.h │ │ ├── trade_slot_type.h │ │ ├── txt_command.h │ │ ├── type_skill_mod.cpp │ │ ├── type_skill_mod.h │ │ ├── user_connection_mgr.cpp │ │ ├── user_connection_mgr.h │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── visual_fx.h │ │ ├── visual_slot_manager.cpp │ │ ├── visual_slot_manager.h │ │ ├── weapon_types.cpp │ │ ├── weapon_types.h │ │ ├── welcome_service_itf.cpp │ │ ├── welcome_service_itf.h │ │ ├── xml_auto_ptr.cpp │ │ ├── xml_auto_ptr.h │ │ ├── zc_shard_common.cpp │ │ └── zc_shard_common.h ├── server │ ├── CMakeLists.txt │ ├── admin_executor_service.cfg │ ├── admin_executor_service_default.cfg │ ├── admin_service.cfg │ ├── admin_service_default.cfg │ ├── ai_service.cfg │ ├── ai_service_default.cfg │ ├── backup_service.cfg │ ├── backup_service_default.cfg │ ├── backup_service_interface.cfg │ ├── common.cfg │ ├── data_shard │ │ ├── __read_me.txt │ │ ├── brick_sheets │ │ │ └── combat_strategies.brick_level_adjustment_table │ │ ├── client_commands_privileges.txt │ │ ├── collisions │ │ │ ├── landscape_col_prim_pacs_list.txt │ │ │ ├── newbieland_0.cwmap2 │ │ │ ├── newbieland_ig │ │ │ │ ├── 65_BZ.ig │ │ │ │ ├── 65_CA.ig │ │ │ │ ├── 65_CB.ig │ │ │ │ ├── 66_BZ.ig │ │ │ │ ├── 66_CA.ig │ │ │ │ ├── 66_CB.ig │ │ │ │ ├── 66_CC.ig │ │ │ │ ├── 66_CD.ig │ │ │ │ ├── 66_CE.ig │ │ │ │ ├── 66_CF.ig │ │ │ │ ├── 66_CG.ig │ │ │ │ ├── 67_BZ.ig │ │ │ │ ├── 67_CA.ig │ │ │ │ ├── 67_CB.ig │ │ │ │ ├── 67_CC.ig │ │ │ │ ├── 67_CD.ig │ │ │ │ ├── 67_CE.ig │ │ │ │ ├── 67_CF.ig │ │ │ │ ├── 67_CG.ig │ │ │ │ ├── 67_CH.ig │ │ │ │ ├── 67_CI.ig │ │ │ │ ├── 67_CJ.ig │ │ │ │ ├── 68_BZ.ig │ │ │ │ ├── 68_CA.ig │ │ │ │ ├── 68_CB.ig │ │ │ │ ├── 68_CC.ig │ │ │ │ ├── 68_CD.ig │ │ │ │ ├── 68_CE.ig │ │ │ │ ├── 68_CF.ig │ │ │ │ ├── 68_CG.ig │ │ │ │ ├── 68_CH.ig │ │ │ │ ├── 68_CI.ig │ │ │ │ ├── 68_CJ.ig │ │ │ │ ├── 68_CK.ig │ │ │ │ ├── 68_CL.ig │ │ │ │ ├── 68_CN.ig │ │ │ │ ├── 68_CO.ig │ │ │ │ ├── 68_CP.ig │ │ │ │ ├── 69_BZ.ig │ │ │ │ ├── 69_CA.ig │ │ │ │ ├── 69_CB.ig │ │ │ │ ├── 69_CC.ig │ │ │ │ ├── 69_CD.ig │ │ │ │ ├── 69_CE.ig │ │ │ │ ├── 69_CF.ig │ │ │ │ ├── 69_CG.ig │ │ │ │ ├── 69_CH.ig │ │ │ │ ├── 69_CI.ig │ │ │ │ ├── 69_CJ.ig │ │ │ │ ├── 69_CK.ig │ │ │ │ ├── 69_CL.ig │ │ │ │ ├── 69_CM.ig │ │ │ │ ├── 69_CN.ig │ │ │ │ ├── 69_CO.ig │ │ │ │ ├── 69_CP.ig │ │ │ │ ├── 69_CQ.ig │ │ │ │ ├── 70_CC.ig │ │ │ │ ├── 70_CD.ig │ │ │ │ ├── 70_CE.ig │ │ │ │ ├── 70_CF.ig │ │ │ │ ├── 70_CG.ig │ │ │ │ ├── 70_CH.ig │ │ │ │ ├── 70_CI.ig │ │ │ │ ├── 70_CJ.ig │ │ │ │ ├── 70_CK.ig │ │ │ │ ├── 70_CL.ig │ │ │ │ ├── 70_CM.ig │ │ │ │ ├── 70_CN.ig │ │ │ │ ├── 70_CO.ig │ │ │ │ ├── 70_CP.ig │ │ │ │ ├── 70_CQ.ig │ │ │ │ ├── 71_CC.ig │ │ │ │ ├── 71_CD.ig │ │ │ │ ├── 71_CF.ig │ │ │ │ ├── 71_CG.ig │ │ │ │ ├── 71_CH.ig │ │ │ │ ├── 71_CI.ig │ │ │ │ ├── 71_CJ.ig │ │ │ │ ├── 71_CK.ig │ │ │ │ ├── 71_CL.ig │ │ │ │ ├── 71_CM.ig │ │ │ │ ├── 71_CN.ig │ │ │ │ ├── 71_CO.ig │ │ │ │ ├── 71_CP.ig │ │ │ │ ├── 71_CQ.ig │ │ │ │ ├── 72_CF.ig │ │ │ │ ├── 72_CG.ig │ │ │ │ ├── 72_CH.ig │ │ │ │ ├── 72_CI.ig │ │ │ │ ├── 72_CJ.ig │ │ │ │ ├── 72_CK.ig │ │ │ │ ├── 72_CL.ig │ │ │ │ ├── 72_CM.ig │ │ │ │ ├── 72_CN.ig │ │ │ │ ├── 72_CO.ig │ │ │ │ ├── 72_CP.ig │ │ │ │ ├── 73_CF.ig │ │ │ │ ├── 73_CG.ig │ │ │ │ ├── 73_CH.ig │ │ │ │ ├── 73_CI.ig │ │ │ │ ├── 73_CJ.ig │ │ │ │ ├── 73_CK.ig │ │ │ │ ├── 73_CL.ig │ │ │ │ ├── 73_CM.ig │ │ │ │ ├── 73_CN.ig │ │ │ │ ├── 73_CO.ig │ │ │ │ ├── 74_CF.ig │ │ │ │ ├── 74_CG.ig │ │ │ │ ├── 74_CH.ig │ │ │ │ ├── 74_CI.ig │ │ │ │ ├── 74_CK.ig │ │ │ │ ├── 74_CL.ig │ │ │ │ ├── 74_CM.ig │ │ │ │ ├── 74_CN.ig │ │ │ │ ├── 74_CO.ig │ │ │ │ ├── 75_CL.ig │ │ │ │ ├── 75_CM.ig │ │ │ │ ├── 75_CN.ig │ │ │ │ ├── MA_ruines_1_newbieland.ig │ │ │ │ ├── MA_ruines_2_newbieland.ig │ │ │ │ ├── MA_ruines_newbieland.ig │ │ │ │ ├── canope_newbieland.ig │ │ │ │ ├── ge_newbieland_starting_village.ig │ │ │ │ ├── ma_agora_ruine_boss.ig │ │ │ │ ├── ma_agora_ruine_boss_debris.ig │ │ │ │ └── newbieland_ig.txt │ │ │ └── newbieland_pacs │ │ │ │ ├── newbieland.gr │ │ │ │ ├── newbieland.rbank │ │ │ │ ├── newbieland_0.lr │ │ │ │ ├── newbieland_1.lr │ │ │ │ ├── newbieland_10.lr │ │ │ │ ├── newbieland_100.lr │ │ │ │ ├── newbieland_101.lr │ │ │ │ ├── newbieland_102.lr │ │ │ │ ├── newbieland_103.lr │ │ │ │ ├── newbieland_104.lr │ │ │ │ ├── newbieland_105.lr │ │ │ │ ├── newbieland_106.lr │ │ │ │ ├── newbieland_107.lr │ │ │ │ ├── newbieland_108.lr │ │ │ │ ├── newbieland_109.lr │ │ │ │ ├── newbieland_11.lr │ │ │ │ ├── newbieland_110.lr │ │ │ │ ├── newbieland_111.lr │ │ │ │ ├── newbieland_112.lr │ │ │ │ ├── newbieland_113.lr │ │ │ │ ├── newbieland_114.lr │ │ │ │ ├── newbieland_115.lr │ │ │ │ ├── newbieland_116.lr │ │ │ │ ├── newbieland_117.lr │ │ │ │ ├── newbieland_118.lr │ │ │ │ ├── newbieland_119.lr │ │ │ │ ├── newbieland_12.lr │ │ │ │ ├── newbieland_120.lr │ │ │ │ ├── newbieland_121.lr │ │ │ │ ├── newbieland_122.lr │ │ │ │ ├── newbieland_123.lr │ │ │ │ ├── newbieland_124.lr │ │ │ │ ├── newbieland_125.lr │ │ │ │ ├── newbieland_126.lr │ │ │ │ ├── newbieland_127.lr │ │ │ │ ├── newbieland_128.lr │ │ │ │ ├── newbieland_129.lr │ │ │ │ ├── newbieland_13.lr │ │ │ │ ├── newbieland_130.lr │ │ │ │ ├── newbieland_131.lr │ │ │ │ ├── newbieland_132.lr │ │ │ │ ├── newbieland_133.lr │ │ │ │ ├── newbieland_134.lr │ │ │ │ ├── newbieland_135.lr │ │ │ │ ├── newbieland_136.lr │ │ │ │ ├── newbieland_137.lr │ │ │ │ ├── newbieland_138.lr │ │ │ │ ├── newbieland_139.lr │ │ │ │ ├── newbieland_14.lr │ │ │ │ ├── newbieland_140.lr │ │ │ │ ├── newbieland_141.lr │ │ │ │ ├── newbieland_142.lr │ │ │ │ ├── newbieland_143.lr │ │ │ │ ├── newbieland_144.lr │ │ │ │ ├── newbieland_145.lr │ │ │ │ ├── newbieland_146.lr │ │ │ │ ├── newbieland_147.lr │ │ │ │ ├── newbieland_148.lr │ │ │ │ ├── newbieland_149.lr │ │ │ │ ├── newbieland_15.lr │ │ │ │ ├── newbieland_150.lr │ │ │ │ ├── newbieland_151.lr │ │ │ │ ├── newbieland_152.lr │ │ │ │ ├── newbieland_153.lr │ │ │ │ ├── newbieland_154.lr │ │ │ │ ├── newbieland_155.lr │ │ │ │ ├── newbieland_156.lr │ │ │ │ ├── newbieland_157.lr │ │ │ │ ├── newbieland_158.lr │ │ │ │ ├── newbieland_159.lr │ │ │ │ ├── newbieland_16.lr │ │ │ │ ├── newbieland_160.lr │ │ │ │ ├── newbieland_161.lr │ │ │ │ ├── newbieland_162.lr │ │ │ │ ├── newbieland_163.lr │ │ │ │ ├── newbieland_164.lr │ │ │ │ ├── newbieland_165.lr │ │ │ │ ├── newbieland_166.lr │ │ │ │ ├── newbieland_167.lr │ │ │ │ ├── newbieland_168.lr │ │ │ │ ├── newbieland_169.lr │ │ │ │ ├── newbieland_17.lr │ │ │ │ ├── newbieland_170.lr │ │ │ │ ├── newbieland_171.lr │ │ │ │ ├── newbieland_172.lr │ │ │ │ ├── newbieland_173.lr │ │ │ │ ├── newbieland_174.lr │ │ │ │ ├── newbieland_175.lr │ │ │ │ ├── newbieland_176.lr │ │ │ │ ├── newbieland_177.lr │ │ │ │ ├── newbieland_178.lr │ │ │ │ ├── newbieland_179.lr │ │ │ │ ├── newbieland_18.lr │ │ │ │ ├── newbieland_180.lr │ │ │ │ ├── newbieland_181.lr │ │ │ │ ├── newbieland_182.lr │ │ │ │ ├── newbieland_183.lr │ │ │ │ ├── newbieland_184.lr │ │ │ │ ├── newbieland_185.lr │ │ │ │ ├── newbieland_186.lr │ │ │ │ ├── newbieland_187.lr │ │ │ │ ├── newbieland_188.lr │ │ │ │ ├── newbieland_189.lr │ │ │ │ ├── newbieland_19.lr │ │ │ │ ├── newbieland_190.lr │ │ │ │ ├── newbieland_191.lr │ │ │ │ ├── newbieland_192.lr │ │ │ │ ├── newbieland_193.lr │ │ │ │ ├── newbieland_194.lr │ │ │ │ ├── newbieland_195.lr │ │ │ │ ├── newbieland_196.lr │ │ │ │ ├── newbieland_197.lr │ │ │ │ ├── newbieland_198.lr │ │ │ │ ├── newbieland_199.lr │ │ │ │ ├── newbieland_2.lr │ │ │ │ ├── newbieland_20.lr │ │ │ │ ├── newbieland_200.lr │ │ │ │ ├── newbieland_201.lr │ │ │ │ ├── newbieland_202.lr │ │ │ │ ├── newbieland_203.lr │ │ │ │ ├── newbieland_204.lr │ │ │ │ ├── newbieland_205.lr │ │ │ │ ├── newbieland_206.lr │ │ │ │ ├── newbieland_207.lr │ │ │ │ ├── newbieland_208.lr │ │ │ │ ├── newbieland_209.lr │ │ │ │ ├── newbieland_21.lr │ │ │ │ ├── newbieland_210.lr │ │ │ │ ├── newbieland_211.lr │ │ │ │ ├── newbieland_212.lr │ │ │ │ ├── newbieland_213.lr │ │ │ │ ├── newbieland_214.lr │ │ │ │ ├── newbieland_215.lr │ │ │ │ ├── newbieland_216.lr │ │ │ │ ├── newbieland_217.lr │ │ │ │ ├── newbieland_218.lr │ │ │ │ ├── newbieland_219.lr │ │ │ │ ├── newbieland_22.lr │ │ │ │ ├── newbieland_220.lr │ │ │ │ ├── newbieland_221.lr │ │ │ │ ├── newbieland_222.lr │ │ │ │ ├── newbieland_223.lr │ │ │ │ ├── newbieland_224.lr │ │ │ │ ├── newbieland_225.lr │ │ │ │ ├── newbieland_226.lr │ │ │ │ ├── newbieland_227.lr │ │ │ │ ├── newbieland_228.lr │ │ │ │ ├── newbieland_229.lr │ │ │ │ ├── newbieland_23.lr │ │ │ │ ├── newbieland_230.lr │ │ │ │ ├── newbieland_231.lr │ │ │ │ ├── newbieland_232.lr │ │ │ │ ├── newbieland_233.lr │ │ │ │ ├── newbieland_234.lr │ │ │ │ ├── newbieland_235.lr │ │ │ │ ├── newbieland_236.lr │ │ │ │ ├── newbieland_237.lr │ │ │ │ ├── newbieland_238.lr │ │ │ │ ├── newbieland_239.lr │ │ │ │ ├── newbieland_24.lr │ │ │ │ ├── newbieland_240.lr │ │ │ │ ├── newbieland_241.lr │ │ │ │ ├── newbieland_25.lr │ │ │ │ ├── newbieland_26.lr │ │ │ │ ├── newbieland_27.lr │ │ │ │ ├── newbieland_28.lr │ │ │ │ ├── newbieland_29.lr │ │ │ │ ├── newbieland_3.lr │ │ │ │ ├── newbieland_30.lr │ │ │ │ ├── newbieland_31.lr │ │ │ │ ├── newbieland_32.lr │ │ │ │ ├── newbieland_33.lr │ │ │ │ ├── newbieland_34.lr │ │ │ │ ├── newbieland_35.lr │ │ │ │ ├── newbieland_36.lr │ │ │ │ ├── newbieland_37.lr │ │ │ │ ├── newbieland_38.lr │ │ │ │ ├── newbieland_39.lr │ │ │ │ ├── newbieland_4.lr │ │ │ │ ├── newbieland_40.lr │ │ │ │ ├── newbieland_41.lr │ │ │ │ ├── newbieland_42.lr │ │ │ │ ├── newbieland_43.lr │ │ │ │ ├── newbieland_44.lr │ │ │ │ ├── newbieland_45.lr │ │ │ │ ├── newbieland_46.lr │ │ │ │ ├── newbieland_47.lr │ │ │ │ ├── newbieland_48.lr │ │ │ │ ├── newbieland_49.lr │ │ │ │ ├── newbieland_5.lr │ │ │ │ ├── newbieland_50.lr │ │ │ │ ├── newbieland_51.lr │ │ │ │ ├── newbieland_52.lr │ │ │ │ ├── newbieland_53.lr │ │ │ │ ├── newbieland_54.lr │ │ │ │ ├── newbieland_55.lr │ │ │ │ ├── newbieland_56.lr │ │ │ │ ├── newbieland_57.lr │ │ │ │ ├── newbieland_58.lr │ │ │ │ ├── newbieland_59.lr │ │ │ │ ├── newbieland_6.lr │ │ │ │ ├── newbieland_60.lr │ │ │ │ ├── newbieland_61.lr │ │ │ │ ├── newbieland_62.lr │ │ │ │ ├── newbieland_63.lr │ │ │ │ ├── newbieland_64.lr │ │ │ │ ├── newbieland_65.lr │ │ │ │ ├── newbieland_66.lr │ │ │ │ ├── newbieland_67.lr │ │ │ │ ├── newbieland_68.lr │ │ │ │ ├── newbieland_69.lr │ │ │ │ ├── newbieland_7.lr │ │ │ │ ├── newbieland_70.lr │ │ │ │ ├── newbieland_71.lr │ │ │ │ ├── newbieland_72.lr │ │ │ │ ├── newbieland_73.lr │ │ │ │ ├── newbieland_74.lr │ │ │ │ ├── newbieland_75.lr │ │ │ │ ├── newbieland_76.lr │ │ │ │ ├── newbieland_77.lr │ │ │ │ ├── newbieland_78.lr │ │ │ │ ├── newbieland_79.lr │ │ │ │ ├── newbieland_8.lr │ │ │ │ ├── newbieland_80.lr │ │ │ │ ├── newbieland_81.lr │ │ │ │ ├── newbieland_82.lr │ │ │ │ ├── newbieland_83.lr │ │ │ │ ├── newbieland_84.lr │ │ │ │ ├── newbieland_85.lr │ │ │ │ ├── newbieland_86.lr │ │ │ │ ├── newbieland_87.lr │ │ │ │ ├── newbieland_88.lr │ │ │ │ ├── newbieland_89.lr │ │ │ │ ├── newbieland_9.lr │ │ │ │ ├── newbieland_90.lr │ │ │ │ ├── newbieland_91.lr │ │ │ │ ├── newbieland_92.lr │ │ │ │ ├── newbieland_93.lr │ │ │ │ ├── newbieland_94.lr │ │ │ │ ├── newbieland_95.lr │ │ │ │ ├── newbieland_96.lr │ │ │ │ ├── newbieland_97.lr │ │ │ │ ├── newbieland_98.lr │ │ │ │ └── newbieland_99.lr │ │ ├── dev_gm_names.xml │ │ ├── game_event.txt │ │ ├── invalid_entity_names.txt │ │ ├── language │ │ │ ├── bodypart_words_en.txt │ │ │ ├── bot_names.txt │ │ │ ├── career_words_en.txt │ │ │ ├── characteristic_words_en.txt │ │ │ ├── classificationtype_words_en.txt │ │ │ ├── creature_words_en.txt │ │ │ ├── damage_words_en.txt │ │ │ ├── damagetype_words_en.txt │ │ │ ├── ecosystem_words_en.txt │ │ │ ├── event_faction_en.txt │ │ │ ├── faction_words_en.txt │ │ │ ├── item_words_en.txt │ │ │ ├── job_words_en.txt │ │ │ ├── outpost_words_en.txt │ │ │ ├── phrase_en.txt │ │ │ ├── place_words_en.txt │ │ │ ├── powertype_words_en.txt │ │ │ ├── race_words_en.txt │ │ │ ├── sbrick_words_en.txt │ │ │ ├── score_words_en.txt │ │ │ ├── skill_words_en.txt │ │ │ ├── sphrase_words_en.txt │ │ │ └── title_words_en.txt │ │ ├── mirror_sheets │ │ │ ├── fame.dataset │ │ │ ├── fe_temp.dataset │ │ │ └── pet.dataset │ │ ├── mission_queues.txt │ │ ├── named_items.txt │ │ ├── newbie_guilds.xml │ │ ├── reserved_names.xml │ │ ├── shop_category.cfg │ │ └── single.property_array │ ├── dynamic_scenario_service.cfg │ ├── dynamic_scenario_service_default.cfg │ ├── entities_game_service.cfg │ ├── entities_game_service_default.cfg │ ├── frontend_service.cfg │ ├── frontend_service_default.cfg │ ├── gpm_service.cfg │ ├── gpm_service_default.cfg │ ├── input_output_service.cfg │ ├── input_output_service_default.cfg │ ├── logger_service.cfg │ ├── logger_service_default.cfg │ ├── mail_forum_service.cfg │ ├── mail_forum_service_default.cfg │ ├── mirror_service.cfg │ ├── mirror_service_default.cfg │ ├── monitor_service.cfg │ ├── monitor_service_default.cfg │ ├── naming_service.cfg │ ├── naming_service_default.cfg │ ├── save_shard │ │ └── __read_me.txt │ ├── session_browser_server.cfg │ ├── session_browser_server_default.cfg │ ├── shard.screen.rc │ ├── shard_start.bat │ ├── shard_start_cmake.bat │ ├── shard_stop.bat │ ├── shard_stop_cmake.bat │ ├── shard_unifier_service.cfg │ ├── shard_unifier_service_default.cfg │ ├── sheet_pack_cfg │ │ ├── ai_service.cfg │ │ ├── entities_game_service.cfg │ │ ├── gpm_service.cfg │ │ ├── input_output_service.cfg │ │ └── mirror_service.cfg │ ├── sql.cfg │ ├── src │ │ ├── CMakeLists.txt │ │ ├── admin_modules │ │ │ ├── CMakeLists.txt │ │ │ ├── admin_modules.cpp │ │ │ ├── admin_modules_itf.cpp │ │ │ ├── admin_modules_itf.h │ │ │ ├── admin_modules_itf.xml │ │ │ ├── aes_client_module.cpp │ │ │ ├── aes_module.cpp │ │ │ └── as_module.cpp │ │ ├── ags_test │ │ │ ├── actor.cpp │ │ │ ├── actor.h │ │ │ ├── actor_group.cpp │ │ │ ├── actor_group.h │ │ │ ├── actor_manager.cpp │ │ │ ├── actor_manager.h │ │ │ ├── ags_test.cpp │ │ │ ├── ags_test.h │ │ │ ├── ags_timer.cpp │ │ │ ├── ags_timer.h │ │ │ ├── ai_mgr.cpp │ │ │ ├── ai_mgr.h │ │ │ ├── command_event_manager.cpp │ │ │ ├── command_event_manager.h │ │ │ ├── commands.cpp │ │ │ ├── creatures.cpp │ │ │ ├── creatures.h │ │ │ ├── ig_list.h │ │ │ ├── ig_loader.cpp │ │ │ ├── macro_manager.cpp │ │ │ ├── macro_manager.h │ │ │ ├── messages.cpp │ │ │ ├── messages.h │ │ │ ├── mirrors.cpp │ │ │ ├── mirrors.h │ │ │ ├── move_grid.h │ │ │ ├── move_manager.cpp │ │ │ ├── move_manager.h │ │ │ ├── notes.txt │ │ │ ├── position_generator.cpp │ │ │ ├── position_generator.h │ │ │ ├── service_main.cpp │ │ │ ├── sheets.cpp │ │ │ ├── sheets.h │ │ │ ├── xml.cpp │ │ │ └── xml.h │ │ ├── ai_data_service │ │ │ ├── CMakeLists.txt │ │ │ ├── ai_files.cpp │ │ │ ├── ai_files.h │ │ │ ├── ai_manager.cpp │ │ │ ├── ai_manager.h │ │ │ ├── ai_service.cpp │ │ │ ├── ai_service.h │ │ │ ├── aids_actions.cpp │ │ │ ├── aids_actions.h │ │ │ ├── aids_spawn_ctrl.cpp │ │ │ ├── commands.cpp │ │ │ ├── dummy_crunch.cpp │ │ │ ├── messages.cpp │ │ │ ├── messages.h │ │ │ ├── notes.txt │ │ │ ├── pacs_scan.cpp │ │ │ ├── primitive_crunch.cpp │ │ │ └── service_main.cpp │ │ ├── ai_service │ │ │ ├── CMakeLists.txt │ │ │ ├── admin.h │ │ │ ├── ai.cpp │ │ │ ├── ai.h │ │ │ ├── ai_aggro.cpp │ │ │ ├── ai_aggro.h │ │ │ ├── ai_bot.cpp │ │ │ ├── ai_bot.h │ │ │ ├── ai_bot_easter_egg.cpp │ │ │ ├── ai_bot_easter_egg.h │ │ │ ├── ai_bot_fauna.cpp │ │ │ ├── ai_bot_fauna.h │ │ │ ├── ai_bot_inline.h │ │ │ ├── ai_bot_npc.cpp │ │ │ ├── ai_bot_npc.h │ │ │ ├── ai_bot_pet.cpp │ │ │ ├── ai_bot_pet.h │ │ │ ├── ai_continent.h │ │ │ ├── ai_control_npc.cpp │ │ │ ├── ai_control_npc.h │ │ │ ├── ai_entity.h │ │ │ ├── ai_entity_id.cpp │ │ │ ├── ai_entity_id.h │ │ │ ├── ai_entity_id_inline.h │ │ │ ├── ai_entity_matrix.h │ │ │ ├── ai_entity_physical.cpp │ │ │ ├── ai_entity_physical.h │ │ │ ├── ai_entity_physical_inline.h │ │ │ ├── ai_factory.h │ │ │ ├── ai_generic_fight.cpp │ │ │ ├── ai_generic_fight.h │ │ │ ├── ai_generic_fight_helpers.cpp │ │ │ ├── ai_grp.cpp │ │ │ ├── ai_grp.h │ │ │ ├── ai_grp_fauna.cpp │ │ │ ├── ai_grp_fauna.h │ │ │ ├── ai_grp_npc.cpp │ │ │ ├── ai_grp_npc.h │ │ │ ├── ai_grp_pet.cpp │ │ │ ├── ai_grp_pet.h │ │ │ ├── ai_inline.h │ │ │ ├── ai_instance.cpp │ │ │ ├── ai_instance.h │ │ │ ├── ai_instance_inline.h │ │ │ ├── ai_keywords.cpp │ │ │ ├── ai_keywords.h │ │ │ ├── ai_logic_action.h │ │ │ ├── ai_map.h │ │ │ ├── ai_messages.h │ │ │ ├── ai_mgr.cpp │ │ │ ├── ai_mgr.h │ │ │ ├── ai_mgr_fauna.cpp │ │ │ ├── ai_mgr_fauna.h │ │ │ ├── ai_mgr_npc.cpp │ │ │ ├── ai_mgr_npc.h │ │ │ ├── ai_mgr_pet.cpp │ │ │ ├── ai_mgr_pet.h │ │ │ ├── ai_outpost.cpp │ │ │ ├── ai_outpost.h │ │ │ ├── ai_outpost_actions.cpp │ │ │ ├── ai_place.cpp │ │ │ ├── ai_place.h │ │ │ ├── ai_place_patat.h │ │ │ ├── ai_place_xyr.h │ │ │ ├── ai_player.cpp │ │ │ ├── ai_player.h │ │ │ ├── ai_pos.h │ │ │ ├── ai_pos_mirror.h │ │ │ ├── ai_pos_mirror_inline.h │ │ │ ├── ai_profile_fauna.cpp │ │ │ ├── ai_profile_fauna.h │ │ │ ├── ai_profile_fauna_inline.h │ │ │ ├── ai_profile_npc.cpp │ │ │ ├── ai_profile_npc.h │ │ │ ├── ai_profile_pet.cpp │ │ │ ├── ai_profile_pet.h │ │ │ ├── ai_route.h │ │ │ ├── ai_route_beeline.h │ │ │ ├── ai_script_comp.cpp │ │ │ ├── ai_script_comp.h │ │ │ ├── ai_script_data_manager.cpp │ │ │ ├── ai_script_data_manager.h │ │ │ ├── ai_spire.cpp │ │ │ ├── ai_spire.h │ │ │ ├── ai_state_npc.cpp │ │ │ ├── ai_variables.cpp │ │ │ ├── ai_variables.h │ │ │ ├── ai_vector_mirror.h │ │ │ ├── ai_vision.cpp │ │ │ ├── ai_vision.h │ │ │ ├── ai_world_map.cpp │ │ │ ├── ai_world_map.h │ │ │ ├── aids_interface.cpp │ │ │ ├── aids_interface.h │ │ │ ├── ais_actions.cpp │ │ │ ├── ais_actions.h │ │ │ ├── ais_actions_fauna.cpp │ │ │ ├── ais_actions_global.cpp │ │ │ ├── ais_actions_npc.cpp │ │ │ ├── ais_control.cpp │ │ │ ├── ais_control.h │ │ │ ├── ais_spawn_ctrl.cpp │ │ │ ├── ais_user_models.cpp │ │ │ ├── ais_user_models.h │ │ │ ├── alias_tree_owner.cpp │ │ │ ├── alias_tree_owner.h │ │ │ ├── alias_tree_root.h │ │ │ ├── bot_chat_interface.cpp │ │ │ ├── bot_chat_interface.h │ │ │ ├── child_container.h │ │ │ ├── client_message.cpp │ │ │ ├── client_message.h │ │ │ ├── combat_interface.cpp │ │ │ ├── combat_interface.h │ │ │ ├── combat_move.cpp │ │ │ ├── combat_move.h │ │ │ ├── commands.cpp │ │ │ ├── commands.h │ │ │ ├── continent.cpp │ │ │ ├── continent.h │ │ │ ├── continent_actions.cpp │ │ │ ├── continent_inline.h │ │ │ ├── data file format notes.txt │ │ │ ├── debug_history.h │ │ │ ├── doc │ │ │ │ ├── doxycfg │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── commondoc.cfg │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── footer.html │ │ │ │ │ ├── header.html │ │ │ │ │ └── ryzom-ais.cfg.tmpl │ │ │ │ ├── doxydoc │ │ │ │ │ └── .cvsignore │ │ │ │ └── source │ │ │ │ │ ├── aggro.dox │ │ │ │ │ ├── dynamic_bots.dox │ │ │ │ │ ├── fight.dox │ │ │ │ │ ├── index.dox │ │ │ │ │ ├── path_finding.dox │ │ │ │ │ ├── positions.dox │ │ │ │ │ └── primitive_parsing.dox │ │ │ ├── dyn_grp.h │ │ │ ├── dyn_grp_inline.h │ │ │ ├── dyn_mission.cpp │ │ │ ├── dyn_mission.h │ │ │ ├── egs_interface.cpp │ │ │ ├── egs_interface.h │ │ │ ├── event_manager.h │ │ │ ├── event_reaction.cpp │ │ │ ├── event_reaction.h │ │ │ ├── event_reaction_container.h │ │ │ ├── event_reaction_include.h │ │ │ ├── family_behavior.cpp │ │ │ ├── family_behavior.h │ │ │ ├── family_profile.cpp │ │ │ ├── family_profile.h │ │ │ ├── family_profile_tribe.cpp │ │ │ ├── family_profile_tribe.h │ │ │ ├── faq.txt │ │ │ ├── fx_entity.cpp │ │ │ ├── fx_entity.h │ │ │ ├── fx_entity_manager.cpp │ │ │ ├── fx_entity_manager.h │ │ │ ├── generic_logic_action.cpp │ │ │ ├── gpms_interface.cpp │ │ │ ├── gpms_interface.h │ │ │ ├── group_profile.cpp │ │ │ ├── group_profile.h │ │ │ ├── ios_interface.cpp │ │ │ ├── ios_interface.h │ │ │ ├── keyword.cpp │ │ │ ├── keyword.h │ │ │ ├── keyword_owner.h │ │ │ ├── knapsack_solver.cpp │ │ │ ├── knapsack_solver.h │ │ │ ├── list_link.h │ │ │ ├── listener_emitter.h │ │ │ ├── manager_parent.h │ │ │ ├── messages.cpp │ │ │ ├── messages.h │ │ │ ├── mirrors.cpp │ │ │ ├── mirrors.h │ │ │ ├── named_entity.cpp │ │ │ ├── named_entity.h │ │ │ ├── named_entity_manager.cpp │ │ │ ├── named_entity_manager.h │ │ │ ├── nf_grp.cpp │ │ │ ├── nf_grp_npc.cpp │ │ │ ├── nf_helpers.cpp │ │ │ ├── nf_helpers.h │ │ │ ├── nf_state_instance.cpp │ │ │ ├── nf_static.cpp │ │ │ ├── notes.txt │ │ │ ├── npc_description_msg.cpp │ │ │ ├── npc_description_msg.h │ │ │ ├── owners.h │ │ │ ├── path_behaviors.cpp │ │ │ ├── path_behaviors.h │ │ │ ├── persistent_spawnable.h │ │ │ ├── profile.h │ │ │ ├── profile_in_state.h │ │ │ ├── script_compiler.cpp │ │ │ ├── script_compiler.h │ │ │ ├── script_compiler_native_func.cpp │ │ │ ├── script_parser.bat │ │ │ ├── script_parser.lex │ │ │ ├── script_parser.yacc │ │ │ ├── script_parser_lex.cpp │ │ │ ├── script_parser_yacc.cpp │ │ │ ├── script_parser_yacc.h │ │ │ ├── script_parser_yacc_notes.txt │ │ │ ├── script_vm.cpp │ │ │ ├── script_vm.h │ │ │ ├── service_dependencies.h │ │ │ ├── service_main.cpp │ │ │ ├── sheets.cpp │ │ │ ├── sheets.h │ │ │ ├── state_chat.cpp │ │ │ ├── state_chat.h │ │ │ ├── state_instance.cpp │ │ │ ├── state_instance.h │ │ │ ├── state_profil.cpp │ │ │ ├── state_profil.h │ │ │ ├── states.cpp │ │ │ ├── states.h │ │ │ ├── stdpch.cpp │ │ │ ├── stdpch.h │ │ │ ├── test_ai_script.txt │ │ │ ├── time_interface.cpp │ │ │ ├── time_interface.h │ │ │ ├── timer.h │ │ │ ├── vector_2i.h │ │ │ ├── visual_properties_interface.cpp │ │ │ ├── visual_properties_interface.h │ │ │ ├── world_container.cpp │ │ │ ├── world_container.h │ │ │ └── world_map_link.h │ │ ├── ai_share │ │ │ ├── 16x16_layer.cpp │ │ │ ├── 16x16_layer.h │ │ │ ├── CMakeLists.txt │ │ │ ├── ai_action_commands.cpp │ │ │ ├── ai_actions.cpp │ │ │ ├── ai_actions.h │ │ │ ├── ai_actions_dr.cpp │ │ │ ├── ai_actions_dr.h │ │ │ ├── ai_aiming_type.cpp │ │ │ ├── ai_aiming_type.h │ │ │ ├── ai_alias_description_node.cpp │ │ │ ├── ai_alias_description_node.h │ │ │ ├── ai_coord.h │ │ │ ├── ai_entity_physical_list_link.h │ │ │ ├── ai_event.cpp │ │ │ ├── ai_event.h │ │ │ ├── ai_event_description.h │ │ │ ├── ai_event_report.cpp │ │ │ ├── ai_event_report.h │ │ │ ├── ai_primitive_parser.cpp │ │ │ ├── ai_primitive_parser.h │ │ │ ├── ai_share.h │ │ │ ├── ai_spawn_commands.cpp │ │ │ ├── ai_spawn_commands.h │ │ │ ├── ai_types.cpp │ │ │ ├── ai_types.h │ │ │ ├── ai_vector.h │ │ │ ├── ai_wrapper_server.cpp │ │ │ ├── aids_messages.h │ │ │ ├── ais_messages.h │ │ │ ├── angle.h │ │ │ ├── primitive_parser.cpp │ │ │ ├── static_vector.h │ │ │ ├── stdpch.cpp │ │ │ ├── stdpch.h │ │ │ ├── world_map.cpp │ │ │ └── world_map.h │ │ ├── backup_service │ │ │ ├── CMakeLists.txt │ │ │ ├── backup_file_access.cpp │ │ │ ├── backup_file_access.h │ │ │ ├── backup_service.cpp │ │ │ ├── backup_service.h │ │ │ ├── backup_service_mod.cpp │ │ │ ├── commands.cpp │ │ │ ├── web_connection.cpp │ │ │ └── web_connection.h │ │ ├── dynamic_scenario_service │ │ │ ├── CMakeLists.txt │ │ │ ├── dynamic_scenario_service.cpp │ │ │ ├── dynamic_scenario_service.h │ │ │ ├── service.cpp │ │ │ └── service.h │ │ ├── entities_game_service │ │ │ ├── CMakeLists.txt │ │ │ ├── admin.cpp │ │ │ ├── admin.h │ │ │ ├── ai_pet_interface.cpp │ │ │ ├── ai_pet_interface.h │ │ │ ├── area_geometry.cpp │ │ │ ├── area_geometry.h │ │ │ ├── backward_compatibility │ │ │ │ ├── places_back_compat.cpp │ │ │ │ ├── places_back_compat.h │ │ │ │ ├── protection_type_back_compat.cpp │ │ │ │ ├── protection_type_back_compat.h │ │ │ │ ├── spawn_zones_back_compat.cpp │ │ │ │ └── spawn_zones_back_compat.h │ │ │ ├── building_manager │ │ │ │ ├── building_commands.cpp │ │ │ │ ├── building_enums.cpp │ │ │ │ ├── building_enums.h │ │ │ │ ├── building_manager.cpp │ │ │ │ ├── building_manager.h │ │ │ │ ├── building_physical.cpp │ │ │ │ ├── building_physical.h │ │ │ │ ├── building_physical_inline.h │ │ │ │ ├── building_template.cpp │ │ │ │ ├── building_template.h │ │ │ │ ├── building_unit_test.cpp │ │ │ │ ├── building_unit_test.h │ │ │ │ ├── destination.cpp │ │ │ │ ├── destination.h │ │ │ │ ├── room.cpp │ │ │ │ ├── room.h │ │ │ │ ├── room_instance.cpp │ │ │ │ └── room_instance.h │ │ │ ├── cdb_data_instance_container.cpp │ │ │ ├── cdb_data_instance_container.h │ │ │ ├── cdb_group.cpp │ │ │ ├── cdb_group.h │ │ │ ├── cdb_struct_banks.cpp │ │ │ ├── cdb_struct_banks.h │ │ │ ├── character_structure │ │ │ │ ├── character_persistant_data.h │ │ │ │ ├── character_sentence.h │ │ │ │ ├── known_brick_info.h │ │ │ │ └── pact_class.h │ │ │ ├── chat_groups_ids.h │ │ │ ├── client_messages.cpp │ │ │ ├── client_messages.h │ │ │ ├── common_pd.cpp │ │ │ ├── common_pd.h │ │ │ ├── common_pd_inline.h │ │ │ ├── common_shard_callbacks.cpp │ │ │ ├── common_shard_callbacks.h │ │ │ ├── creature_manager │ │ │ │ ├── creature.cpp │ │ │ │ ├── creature.h │ │ │ │ ├── creature_manager.cpp │ │ │ │ ├── creature_manager.h │ │ │ │ ├── creature_tick_update_timer_event.cpp │ │ │ │ ├── creature_tick_update_timer_event.h │ │ │ │ ├── harvestable.cpp │ │ │ │ ├── harvestable.h │ │ │ │ ├── mp.h │ │ │ │ ├── special_trade_list.cpp │ │ │ │ └── special_trade_list.h │ │ │ ├── database_guild.cpp │ │ │ ├── database_guild.h │ │ │ ├── database_outpost.cpp │ │ │ ├── database_outpost.h │ │ │ ├── database_plr.cpp │ │ │ ├── database_plr.h │ │ │ ├── death_penalties.cpp │ │ │ ├── death_penalties.h │ │ │ ├── deposit.cpp │ │ │ ├── deposit.h │ │ │ ├── deposit_raw_material.h │ │ │ ├── dyn_chat_egs.cpp │ │ │ ├── dyn_chat_egs.h │ │ │ ├── egs_dynamic_sheet_manager.cpp │ │ │ ├── egs_dynamic_sheet_manager.h │ │ │ ├── egs_globals.cpp │ │ │ ├── egs_globals.h │ │ │ ├── egs_log_filter.h │ │ │ ├── egs_mirror.cpp │ │ │ ├── egs_mirror.h │ │ │ ├── egs_pd.cpp │ │ │ ├── egs_pd.h │ │ │ ├── egs_pd_inline.h │ │ │ ├── egs_progress_callback.h │ │ │ ├── egs_sheets │ │ │ │ ├── egs_sheets.cpp │ │ │ │ ├── egs_sheets.h │ │ │ │ ├── egs_static_ai_action.cpp │ │ │ │ ├── egs_static_ai_action.h │ │ │ │ ├── egs_static_brick.cpp │ │ │ │ ├── egs_static_brick.cpp.h │ │ │ │ ├── egs_static_brick.h │ │ │ │ ├── egs_static_deposit.cpp │ │ │ │ ├── egs_static_deposit.h │ │ │ │ ├── egs_static_emot.cpp │ │ │ │ ├── egs_static_emot.h │ │ │ │ ├── egs_static_encyclo.cpp │ │ │ │ ├── egs_static_encyclo.h │ │ │ │ ├── egs_static_game_item.cpp │ │ │ │ ├── egs_static_game_item.h │ │ │ │ ├── egs_static_game_sheet.cpp │ │ │ │ ├── egs_static_game_sheet.h │ │ │ │ ├── egs_static_guild_option.cpp │ │ │ │ ├── egs_static_guild_option.h │ │ │ │ ├── egs_static_harvestable.cpp │ │ │ │ ├── egs_static_harvestable.h │ │ │ │ ├── egs_static_outpost.cpp │ │ │ │ ├── egs_static_outpost.h │ │ │ │ ├── egs_static_raw_material.h │ │ │ │ ├── egs_static_rolemaster_phrase.cpp │ │ │ │ ├── egs_static_rolemaster_phrase.h │ │ │ │ ├── egs_static_success_table.cpp │ │ │ │ ├── egs_static_success_table.h │ │ │ │ ├── egs_static_text_emotes.cpp │ │ │ │ ├── egs_static_text_emotes.h │ │ │ │ ├── egs_static_world.cpp │ │ │ │ ├── egs_static_world.h │ │ │ │ ├── egs_static_xp_factor_table.cpp │ │ │ │ └── egs_static_xp_factor_table.h │ │ │ ├── egs_static_continent.cpp │ │ │ ├── egs_static_continent.h │ │ │ ├── egs_utils.h │ │ │ ├── egs_variables.cpp │ │ │ ├── egs_variables.h │ │ │ ├── entities_game_service.cpp │ │ │ ├── entities_game_service.h │ │ │ ├── entity_list_link.h │ │ │ ├── entity_manager │ │ │ │ ├── bypass_check_flags.cpp │ │ │ │ ├── bypass_check_flags.h │ │ │ │ ├── entity_base.cpp │ │ │ │ ├── entity_base.h │ │ │ │ ├── entity_callbacks.cpp │ │ │ │ ├── entity_callbacks.h │ │ │ │ ├── entity_manager.cpp │ │ │ │ └── entity_manager.h │ │ │ ├── entity_matrix.cpp │ │ │ ├── entity_matrix.h │ │ │ ├── entity_structure │ │ │ │ ├── entity_persistant_data.cpp │ │ │ │ ├── entity_persistant_data.h │ │ │ │ ├── resists.cpp │ │ │ │ ├── resists.h │ │ │ │ ├── role_persistant_data.cpp │ │ │ │ ├── role_persistant_data.h │ │ │ │ ├── special_modifier.cpp │ │ │ │ ├── special_modifier.h │ │ │ │ ├── statistic.cpp │ │ │ │ └── statistic.h │ │ │ ├── fame_pd.cpp │ │ │ ├── fame_pd.h │ │ │ ├── fame_pd_inline.h │ │ │ ├── far_position_stack.cpp │ │ │ ├── far_position_stack.h │ │ │ ├── forage_progress.cpp │ │ │ ├── forage_progress.h │ │ │ ├── game_event_manager.cpp │ │ │ ├── game_event_manager.h │ │ │ ├── game_item_manager │ │ │ │ ├── game_item.cpp │ │ │ │ ├── game_item.h │ │ │ │ ├── game_item_manager.cpp │ │ │ │ ├── game_item_manager.h │ │ │ │ ├── game_item_ptr.h │ │ │ │ ├── guild_inv.cpp │ │ │ │ ├── guild_inv.h │ │ │ │ ├── item_worn_state.cpp │ │ │ │ ├── item_worn_state.h │ │ │ │ ├── player_inv_auto_resize.cpp │ │ │ │ ├── player_inv_auto_resize.h │ │ │ │ ├── player_inv_bag.cpp │ │ │ │ ├── player_inv_bag.h │ │ │ │ ├── player_inv_equip.cpp │ │ │ │ ├── player_inv_equip.h │ │ │ │ ├── player_inv_hand.cpp │ │ │ │ ├── player_inv_hand.h │ │ │ │ ├── player_inv_pet.cpp │ │ │ │ ├── player_inv_pet.h │ │ │ │ ├── player_inv_room.cpp │ │ │ │ ├── player_inv_room.h │ │ │ │ ├── player_inv_temp.cpp │ │ │ │ ├── player_inv_temp.h │ │ │ │ ├── player_inv_xchg.cpp │ │ │ │ ├── player_inv_xchg.h │ │ │ │ ├── player_inventory.cpp │ │ │ │ ├── player_inventory.h │ │ │ │ ├── weapon_craft_parameters.cpp │ │ │ │ └── weapon_craft_parameters.h │ │ │ ├── guild_container_pd.cpp │ │ │ ├── guild_container_pd.h │ │ │ ├── guild_container_pd_inline.h │ │ │ ├── guild_manager │ │ │ │ ├── fame_manager.cpp │ │ │ │ ├── fame_manager.h │ │ │ │ ├── guild.cpp │ │ │ │ ├── guild.h │ │ │ │ ├── guild_char_proxy.cpp │ │ │ │ ├── guild_char_proxy.h │ │ │ │ ├── guild_charge.cpp │ │ │ │ ├── guild_charge.h │ │ │ │ ├── guild_client_callbacks.cpp │ │ │ │ ├── guild_commands.cpp │ │ │ │ ├── guild_high_officer_module.cpp │ │ │ │ ├── guild_high_officer_module.h │ │ │ │ ├── guild_interface.h │ │ │ │ ├── guild_invitation.h │ │ │ │ ├── guild_invitation_module.cpp │ │ │ │ ├── guild_invitation_module.h │ │ │ │ ├── guild_leader_module.cpp │ │ │ │ ├── guild_leader_module.h │ │ │ │ ├── guild_manager.cpp │ │ │ │ ├── guild_manager.h │ │ │ │ ├── guild_manager_interface.h │ │ │ │ ├── guild_member.h │ │ │ │ ├── guild_member_module.cpp │ │ │ │ ├── guild_member_module.h │ │ │ │ ├── guild_officer_module.cpp │ │ │ │ ├── guild_officer_module.h │ │ │ │ ├── guild_unifier_itf.cpp │ │ │ │ ├── guild_unifier_itf.h │ │ │ │ ├── guild_unifier_itf.xml │ │ │ │ ├── guild_version_adapter.cpp │ │ │ │ └── guild_version_adapter.h │ │ │ ├── guild_member_pd.cpp │ │ │ ├── guild_member_pd.h │ │ │ ├── guild_member_pd_inline.h │ │ │ ├── guild_pd.cpp │ │ │ ├── guild_pd.h │ │ │ ├── guild_pd_inline.h │ │ │ ├── harvest_info.h │ │ │ ├── harvest_source.cpp │ │ │ ├── harvest_source.h │ │ │ ├── inter_shard_exchange_validator.cpp │ │ │ ├── inter_shard_exchange_validator.h │ │ │ ├── inventory_updater.cpp │ │ │ ├── inventory_updater.h │ │ │ ├── mission_client_callbacks.cpp │ │ │ ├── mission_manager │ │ │ │ ├── ai_alias_translator.cpp │ │ │ │ ├── ai_alias_translator.h │ │ │ │ ├── mission_action.cpp │ │ │ │ ├── mission_action.h │ │ │ │ ├── mission_base_behaviour.cpp │ │ │ │ ├── mission_base_behaviour.h │ │ │ │ ├── mission_event.cpp │ │ │ │ ├── mission_event.h │ │ │ │ ├── mission_guild.cpp │ │ │ │ ├── mission_guild.h │ │ │ │ ├── mission_item.cpp │ │ │ │ ├── mission_item.h │ │ │ │ ├── mission_log.cpp │ │ │ │ ├── mission_log.h │ │ │ │ ├── mission_manager.cpp │ │ │ │ ├── mission_manager.h │ │ │ │ ├── mission_parser.cpp │ │ │ │ ├── mission_parser.h │ │ │ │ ├── mission_queue.cpp │ │ │ │ ├── mission_queue.h │ │ │ │ ├── mission_queue_manager.cpp │ │ │ │ ├── mission_queue_manager.h │ │ │ │ ├── mission_solo.cpp │ │ │ │ ├── mission_solo.h │ │ │ │ ├── mission_step_ai.cpp │ │ │ │ ├── mission_step_ai.h │ │ │ │ ├── mission_step_guild.cpp │ │ │ │ ├── mission_step_item.cpp │ │ │ │ ├── mission_step_kill.cpp │ │ │ │ ├── mission_step_misc.cpp │ │ │ │ ├── mission_step_misc.h │ │ │ │ ├── mission_step_queue.cpp │ │ │ │ ├── mission_step_queue.h │ │ │ │ ├── mission_step_talk.cpp │ │ │ │ ├── mission_step_template.cpp │ │ │ │ ├── mission_step_template.h │ │ │ │ ├── mission_team.cpp │ │ │ │ ├── mission_team.h │ │ │ │ ├── mission_template.cpp │ │ │ │ ├── mission_template.h │ │ │ │ ├── mission_types.h │ │ │ │ └── missions_commands.cpp │ │ │ ├── mission_pd.cpp │ │ │ ├── mission_pd.h │ │ │ ├── mission_pd_inline.h │ │ │ ├── modules │ │ │ │ ├── animation_session_manager.cpp │ │ │ │ ├── animation_session_manager.h │ │ │ │ ├── char_name_mapper_client.cpp │ │ │ │ ├── char_name_mapper_client.h │ │ │ │ ├── character_control.cpp │ │ │ │ ├── character_control.h │ │ │ │ ├── client_command_forwarder.cpp │ │ │ │ ├── client_command_forwarder.h │ │ │ │ ├── easter_egg.cpp │ │ │ │ ├── easter_egg.h │ │ │ │ ├── guild_unifier.cpp │ │ │ │ ├── guild_unifier.h │ │ │ │ ├── r2_give_item.cpp │ │ │ │ ├── r2_give_item.h │ │ │ │ ├── r2_mission_item.cpp │ │ │ │ ├── r2_mission_item.h │ │ │ │ ├── shard_unifier_client.cpp │ │ │ │ └── shard_unifier_client.h │ │ │ ├── outpost_manager │ │ │ │ ├── outpost.cpp │ │ │ │ ├── outpost.h │ │ │ │ ├── outpost_building.cpp │ │ │ │ ├── outpost_building.h │ │ │ │ ├── outpost_client_callbacks.cpp │ │ │ │ ├── outpost_commands.cpp │ │ │ │ ├── outpost_guild_db_updater.cpp │ │ │ │ ├── outpost_guild_db_updater.h │ │ │ │ ├── outpost_manager.cpp │ │ │ │ ├── outpost_manager.h │ │ │ │ ├── outpost_squad.cpp │ │ │ │ ├── outpost_squad.h │ │ │ │ ├── outpost_state_machine.cpp │ │ │ │ ├── outpost_version_adapter.cpp │ │ │ │ └── outpost_version_adapter.h │ │ │ ├── pd_scripts │ │ │ │ ├── egs_pd.pds │ │ │ │ ├── fame.pds │ │ │ │ ├── guild.pds │ │ │ │ ├── mission.pds │ │ │ │ └── pd_logs.pds │ │ │ ├── phrase_manager │ │ │ │ ├── area_effect.cpp │ │ │ │ ├── area_effect.h │ │ │ │ ├── aura_effect.cpp │ │ │ │ ├── aura_effect.h │ │ │ │ ├── aura_regen_effect.cpp │ │ │ │ ├── aura_regen_effect.h │ │ │ │ ├── available_phrases.cpp │ │ │ │ ├── available_phrases.h │ │ │ │ ├── bleed_effect.cpp │ │ │ │ ├── bleed_effect.h │ │ │ │ ├── bounce_effect.cpp │ │ │ │ ├── bounce_effect.h │ │ │ │ ├── change_move_speed_effect.cpp │ │ │ │ ├── change_move_speed_effect.h │ │ │ │ ├── chg_charac_effect.cpp │ │ │ │ ├── chg_charac_effect.h │ │ │ │ ├── combat_action.cpp │ │ │ │ ├── combat_action.h │ │ │ │ ├── combat_action_ai_effect.cpp │ │ │ │ ├── combat_action_ai_effect.h │ │ │ │ ├── combat_action_bleed.cpp │ │ │ │ ├── combat_action_bleed.h │ │ │ │ ├── combat_action_disarm.cpp │ │ │ │ ├── combat_action_disarm.h │ │ │ │ ├── combat_action_dot.cpp │ │ │ │ ├── combat_action_dot.h │ │ │ │ ├── combat_action_regen_modifier.cpp │ │ │ │ ├── combat_action_regen_modifier.h │ │ │ │ ├── combat_action_simple_dynamic_effect.cpp │ │ │ │ ├── combat_action_simple_dynamic_effect.h │ │ │ │ ├── combat_action_simple_effect.cpp │ │ │ │ ├── combat_action_simple_effect.h │ │ │ │ ├── combat_action_slow_move.cpp │ │ │ │ ├── combat_action_slow_move.h │ │ │ │ ├── combat_action_special_damage.cpp │ │ │ │ ├── combat_action_special_damage.h │ │ │ │ ├── combat_action_stun.cpp │ │ │ │ ├── combat_action_stun.h │ │ │ │ ├── combat_attacker.cpp │ │ │ │ ├── combat_attacker.h │ │ │ │ ├── combat_bleed_effect.cpp │ │ │ │ ├── combat_bleed_effect.h │ │ │ │ ├── combat_defender.cpp │ │ │ │ ├── combat_defender.h │ │ │ │ ├── combat_phrase.cpp │ │ │ │ ├── combat_phrase.h │ │ │ │ ├── combat_stun_effect.cpp │ │ │ │ ├── combat_stun_effect.h │ │ │ │ ├── combat_tables.h │ │ │ │ ├── damage_aura_effect.cpp │ │ │ │ ├── damage_aura_effect.h │ │ │ │ ├── damage_shield_effect.cpp │ │ │ │ ├── damage_shield_effect.h │ │ │ │ ├── effect_factory.cpp │ │ │ │ ├── effect_factory.h │ │ │ │ ├── enchant_weapon_effect.cpp │ │ │ │ ├── enchant_weapon_effect.h │ │ │ │ ├── environmental_effect.cpp │ │ │ │ ├── environmental_effect.h │ │ │ │ ├── faber_action.cpp │ │ │ │ ├── faber_action.h │ │ │ │ ├── faber_phrase.cpp │ │ │ │ ├── faber_phrase.h │ │ │ │ ├── fg_extraction_phrase.cpp │ │ │ │ ├── fg_extraction_phrase.h │ │ │ │ ├── fg_prospection_phrase.cpp │ │ │ │ ├── fg_prospection_phrase.h │ │ │ │ ├── forage_phrase.cpp │ │ │ │ ├── forage_phrase.h │ │ │ │ ├── harvest_phrase.cpp │ │ │ │ ├── harvest_phrase.h │ │ │ │ ├── magic_action.h │ │ │ │ ├── magic_action_affect_stat.cpp │ │ │ │ ├── magic_action_ai_damage_aura.cpp │ │ │ │ ├── magic_action_ai_damage_aura.h │ │ │ │ ├── magic_action_ai_dot.cpp │ │ │ │ ├── magic_action_ai_dot.h │ │ │ │ ├── magic_action_ai_effect.cpp │ │ │ │ ├── magic_action_ai_effect.h │ │ │ │ ├── magic_action_ai_hot.cpp │ │ │ │ ├── magic_action_ai_hot.h │ │ │ │ ├── magic_action_ai_mass_dispel.cpp │ │ │ │ ├── magic_action_ai_mass_dispel.h │ │ │ │ ├── magic_action_ai_toxic_cloud.cpp │ │ │ │ ├── magic_action_ai_toxic_cloud.h │ │ │ │ ├── magic_action_attack.cpp │ │ │ │ ├── magic_action_attack.h │ │ │ │ ├── magic_action_cure.cpp │ │ │ │ ├── magic_action_debuff.cpp │ │ │ │ ├── magic_action_disarm.cpp │ │ │ │ ├── magic_action_disarm.h │ │ │ │ ├── magic_action_dot.cpp │ │ │ │ ├── magic_action_heal.cpp │ │ │ │ ├── magic_action_hot.cpp │ │ │ │ ├── magic_action_item_charge.cpp │ │ │ │ ├── magic_action_negative_effect.cpp │ │ │ │ ├── magic_focus_item.cpp │ │ │ │ ├── magic_focus_item.h │ │ │ │ ├── magic_phrase.cpp │ │ │ │ ├── magic_phrase.h │ │ │ │ ├── mod_craft_success_effect.cpp │ │ │ │ ├── mod_craft_success_effect.h │ │ │ │ ├── mod_defense_effect.cpp │ │ │ │ ├── mod_defense_effect.h │ │ │ │ ├── mod_forage_success_effect.cpp │ │ │ │ ├── mod_forage_success_effect.h │ │ │ │ ├── mod_magic_protection_effet.cpp │ │ │ │ ├── mod_magic_protection_effet.h │ │ │ │ ├── mod_magic_success_effect.cpp │ │ │ │ ├── mod_magic_success_effect.h │ │ │ │ ├── mod_melee_success_effect.cpp │ │ │ │ ├── mod_melee_success_effect.h │ │ │ │ ├── mod_range_success_effect.cpp │ │ │ │ ├── mod_range_success_effect.h │ │ │ │ ├── nolink_dot_effect.cpp │ │ │ │ ├── nolink_dot_effect.h │ │ │ │ ├── nolink_hot_effect.cpp │ │ │ │ ├── nolink_hot_effect.h │ │ │ │ ├── phrase_manager.cpp │ │ │ │ ├── phrase_manager.h │ │ │ │ ├── phrase_manager_callbacks.cpp │ │ │ │ ├── phrase_manager_callbacks.h │ │ │ │ ├── phrase_utilities_functions.cpp │ │ │ │ ├── phrase_utilities_functions.h │ │ │ │ ├── power_shielding_effect.cpp │ │ │ │ ├── power_shielding_effect.h │ │ │ │ ├── proc_item_phrase.cpp │ │ │ │ ├── proc_item_phrase.h │ │ │ │ ├── redirect_attacks_effect.cpp │ │ │ │ ├── redirect_attacks_effect.h │ │ │ │ ├── regen_modifier_effect.cpp │ │ │ │ ├── regen_modifier_effect.h │ │ │ │ ├── s_effect.cpp │ │ │ │ ├── s_effect.h │ │ │ │ ├── s_link_effect.cpp │ │ │ │ ├── s_link_effect.h │ │ │ │ ├── s_link_effect_debuff_stat.cpp │ │ │ │ ├── s_link_effect_debuff_stat.h │ │ │ │ ├── s_link_effect_dot.cpp │ │ │ │ ├── s_link_effect_dot.h │ │ │ │ ├── s_link_effect_hot.cpp │ │ │ │ ├── s_link_effect_hot.h │ │ │ │ ├── s_phrase.cpp │ │ │ │ ├── s_phrase.h │ │ │ │ ├── s_phrase_factory.cpp │ │ │ │ ├── s_phrase_factory.h │ │ │ │ ├── sabrina_area_debug.cpp │ │ │ │ ├── sabrina_area_debug.h │ │ │ │ ├── shoot_again_effect.cpp │ │ │ │ ├── shoot_again_effect.h │ │ │ │ ├── simple_effect.cpp │ │ │ │ ├── simple_effect.h │ │ │ │ ├── simple_entity_manager.h │ │ │ │ ├── slow_move_effect.cpp │ │ │ │ ├── slow_move_effect.h │ │ │ │ ├── special_power.cpp │ │ │ │ ├── special_power.h │ │ │ │ ├── special_power_balance.cpp │ │ │ │ ├── special_power_balance.h │ │ │ │ ├── special_power_basic.cpp │ │ │ │ ├── special_power_basic.h │ │ │ │ ├── special_power_basic_aura.cpp │ │ │ │ ├── special_power_basic_aura.h │ │ │ │ ├── special_power_chg_charac.cpp │ │ │ │ ├── special_power_chg_charac.h │ │ │ │ ├── special_power_dot.cpp │ │ │ │ ├── special_power_dot.h │ │ │ │ ├── special_power_enchant_weapon.cpp │ │ │ │ ├── special_power_enchant_weapon.h │ │ │ │ ├── special_power_heal.cpp │ │ │ │ ├── special_power_heal.h │ │ │ │ ├── special_power_mod_craft_success.cpp │ │ │ │ ├── special_power_mod_craft_success.h │ │ │ │ ├── special_power_mod_defense.cpp │ │ │ │ ├── special_power_mod_defense.h │ │ │ │ ├── special_power_mod_forage_success.cpp │ │ │ │ ├── special_power_mod_forage_success.h │ │ │ │ ├── special_power_mod_magic_protection.cpp │ │ │ │ ├── special_power_mod_magic_protection.h │ │ │ │ ├── special_power_mod_magic_success.cpp │ │ │ │ ├── special_power_mod_magic_success.h │ │ │ │ ├── special_power_mod_melee_success.cpp │ │ │ │ ├── special_power_mod_melee_success.h │ │ │ │ ├── special_power_mod_range_success.cpp │ │ │ │ ├── special_power_mod_range_success.h │ │ │ │ ├── special_power_phrase.cpp │ │ │ │ ├── special_power_phrase.h │ │ │ │ ├── special_power_shielding.cpp │ │ │ │ ├── special_power_shielding.h │ │ │ │ ├── special_power_speeding_up.cpp │ │ │ │ ├── special_power_speeding_up.h │ │ │ │ ├── special_power_taunt.cpp │ │ │ │ ├── special_power_taunt.h │ │ │ │ ├── spell_target.cpp │ │ │ │ ├── spell_target.h │ │ │ │ ├── stun_effect.cpp │ │ │ │ ├── stun_effect.h │ │ │ │ ├── teleport_effect.cpp │ │ │ │ ├── teleport_effect.h │ │ │ │ ├── timed_action_phrase.cpp │ │ │ │ ├── timed_action_phrase.h │ │ │ │ ├── timed_actions.cpp │ │ │ │ ├── timed_actions.h │ │ │ │ ├── toxic_cloud.cpp │ │ │ │ └── toxic_cloud.h │ │ │ ├── player_manager │ │ │ │ ├── action_distance_checker.cpp │ │ │ │ ├── action_distance_checker.h │ │ │ │ ├── admin_properties.cpp │ │ │ │ ├── admin_properties.h │ │ │ │ ├── cdb.h │ │ │ │ ├── cdb_branch.cpp │ │ │ │ ├── cdb_branch.h │ │ │ │ ├── cdb_check_sum.cpp │ │ │ │ ├── cdb_check_sum.h │ │ │ │ ├── cdb_leaf.cpp │ │ │ │ ├── cdb_leaf.h │ │ │ │ ├── cdb_synchronised.cpp │ │ │ │ ├── cdb_synchronised.h │ │ │ │ ├── charac_modifier_effect.cpp │ │ │ │ ├── charac_modifier_effect.h │ │ │ │ ├── character.cpp │ │ │ │ ├── character.h │ │ │ │ ├── character_encyclopedia.cpp │ │ │ │ ├── character_encyclopedia.h │ │ │ │ ├── character_game_event.cpp │ │ │ │ ├── character_game_event.h │ │ │ │ ├── character_inlines.h │ │ │ │ ├── character_interface.h │ │ │ │ ├── character_inventory_manipulation.cpp │ │ │ │ ├── character_name_extraction.cpp │ │ │ │ ├── character_name_extraction.h │ │ │ │ ├── character_respawn_points.cpp │ │ │ │ ├── character_respawn_points.h │ │ │ │ ├── character_statistics_recorder.cpp │ │ │ │ ├── character_statistics_recorder.h │ │ │ │ ├── character_tick_update_timer_event.cpp │ │ │ │ ├── character_tick_update_timer_event.h │ │ │ │ ├── character_version_adapter.cpp │ │ │ │ ├── character_version_adapter.h │ │ │ │ ├── db_string_updater.cpp │ │ │ │ ├── db_string_updater.h │ │ │ │ ├── gear_latency.cpp │ │ │ │ ├── gear_latency.h │ │ │ │ ├── gm_tp_pending_command.cpp │ │ │ │ ├── gm_tp_pending_command.h │ │ │ │ ├── item_service_manager.cpp │ │ │ │ ├── item_service_manager.h │ │ │ │ ├── known_and_memorized_phrases.cpp │ │ │ │ ├── known_and_memorized_phrases.h │ │ │ │ ├── modifiers_in_db.cpp │ │ │ │ ├── modifiers_in_db.h │ │ │ │ ├── persistent_effect.cpp │ │ │ │ ├── persistent_effect.h │ │ │ │ ├── persistent_player_data.cpp │ │ │ │ ├── player.cpp │ │ │ │ ├── player.h │ │ │ │ ├── player_manager.cpp │ │ │ │ ├── player_manager.h │ │ │ │ ├── player_manager_interface.h │ │ │ │ ├── player_room.cpp │ │ │ │ ├── player_room.h │ │ │ │ ├── powers_and_auras.cpp │ │ │ │ ├── powers_and_auras.h │ │ │ │ ├── ring_reward_points.cpp │ │ │ │ └── ring_reward_points.h │ │ │ ├── position_flag_manager.cpp │ │ │ ├── position_flag_manager.h │ │ │ ├── primitives_parser.cpp │ │ │ ├── primitives_parser.h │ │ │ ├── progression │ │ │ │ ├── progression_common.h │ │ │ │ ├── progression_pve.cpp │ │ │ │ ├── progression_pve.h │ │ │ │ ├── progression_pvp.cpp │ │ │ │ └── progression_pvp.h │ │ │ ├── projectile_stats.cpp │ │ │ ├── projectile_stats.h │ │ │ ├── pvp_manager │ │ │ │ ├── pvp.cpp │ │ │ │ ├── pvp.h │ │ │ │ ├── pvp_base.cpp │ │ │ │ ├── pvp_base.h │ │ │ │ ├── pvp_challenge.cpp │ │ │ │ ├── pvp_challenge.h │ │ │ │ ├── pvp_duel.cpp │ │ │ │ ├── pvp_duel.h │ │ │ │ ├── pvp_faction.cpp │ │ │ │ ├── pvp_faction.h │ │ │ │ ├── pvp_faction_hof.cpp │ │ │ │ ├── pvp_faction_hof.h │ │ │ │ ├── pvp_faction_reward_manager │ │ │ │ │ ├── pvp_faction_reward_manager.cpp │ │ │ │ │ ├── pvp_faction_reward_manager.h │ │ │ │ │ ├── totem_base.cpp │ │ │ │ │ ├── totem_base.h │ │ │ │ │ ├── totem_effect.cpp │ │ │ │ │ └── totem_effect.h │ │ │ │ ├── pvp_interface.h │ │ │ │ ├── pvp_manager.cpp │ │ │ │ ├── pvp_manager.h │ │ │ │ ├── pvp_manager_2.cpp │ │ │ │ ├── pvp_manager_2.h │ │ │ │ ├── pvp_safe_zone.cpp │ │ │ │ ├── pvp_safe_zone.h │ │ │ │ ├── pvp_zone.cpp │ │ │ │ └── pvp_zone.h │ │ │ ├── range_selector.cpp │ │ │ ├── range_selector.h │ │ │ ├── shop_type │ │ │ │ ├── character_shopping_list.cpp │ │ │ │ ├── character_shopping_list.h │ │ │ │ ├── dynamic_items.cpp │ │ │ │ ├── dynamic_items.h │ │ │ │ ├── item_for_sale.cpp │ │ │ │ ├── item_for_sale.h │ │ │ │ ├── items_for_sale.cpp │ │ │ │ ├── items_for_sale.h │ │ │ │ ├── merchant.cpp │ │ │ │ ├── merchant.h │ │ │ │ ├── named_items.cpp │ │ │ │ ├── named_items.h │ │ │ │ ├── offline_character_command.cpp │ │ │ │ ├── offline_character_command.h │ │ │ │ ├── shop_store.h │ │ │ │ ├── shop_type.cpp │ │ │ │ ├── shop_type.h │ │ │ │ ├── shop_type_manager.cpp │ │ │ │ ├── shop_type_manager.h │ │ │ │ ├── shop_unit.cpp │ │ │ │ ├── shop_unit.h │ │ │ │ ├── solded_items.cpp │ │ │ │ ├── solded_items.h │ │ │ │ ├── static_items.cpp │ │ │ │ └── static_items.h │ │ │ ├── shutdown_handler.cpp │ │ │ ├── shutdown_handler.h │ │ │ ├── stables │ │ │ │ ├── stable.cpp │ │ │ │ └── stable.h │ │ │ ├── stat_db.cpp │ │ │ ├── stat_db.h │ │ │ ├── static_action_types.cpp │ │ │ ├── static_action_types.h │ │ │ ├── stdpch.cpp │ │ │ ├── stdpch.h │ │ │ ├── team_manager │ │ │ │ ├── reward_sharing.cpp │ │ │ │ ├── reward_sharing.h │ │ │ │ ├── team.cpp │ │ │ │ ├── team.h │ │ │ │ ├── team_manager.cpp │ │ │ │ └── team_manager.h │ │ │ ├── trade_structures.cpp │ │ │ ├── trade_structures.h │ │ │ ├── weapon_damage_table.cpp │ │ │ ├── weapon_damage_table.h │ │ │ ├── weather │ │ │ │ ├── weather.cpp │ │ │ │ └── weather.h │ │ │ ├── weather_everywhere.cpp │ │ │ ├── weather_everywhere.h │ │ │ ├── world_instances.cpp │ │ │ ├── world_instances.h │ │ │ ├── zone_manager.cpp │ │ │ └── zone_manager.h │ │ ├── entity_view_service │ │ │ ├── CMakeLists.txt │ │ │ ├── entity_view_service.cpp │ │ │ ├── entity_view_service.h │ │ │ ├── move_grid.cpp │ │ │ ├── move_grid.h │ │ │ ├── sheets.cpp │ │ │ └── sheets.h │ │ ├── frontend_service │ │ │ ├── CMakeLists.txt │ │ │ ├── client_entity_id_translator.cpp │ │ │ ├── client_entity_id_translator.h │ │ │ ├── client_host.cpp │ │ │ ├── client_host.h │ │ │ ├── client_id_lookup.cpp │ │ │ ├── client_id_lookup.h │ │ │ ├── distance_prioritizer.cpp │ │ │ ├── distance_prioritizer.h │ │ │ ├── entity_container.cpp │ │ │ ├── entity_container.h │ │ │ ├── fe_net_stat.cpp │ │ │ ├── fe_net_stat.h │ │ │ ├── fe_receive_sub.cpp │ │ │ ├── fe_receive_sub.h │ │ │ ├── fe_receive_task.cpp │ │ │ ├── fe_receive_task.h │ │ │ ├── fe_send_sub.cpp │ │ │ ├── fe_send_sub.h │ │ │ ├── fe_stat.cpp │ │ │ ├── fe_stat.h │ │ │ ├── fe_types.h │ │ │ ├── frontend_service.cpp │ │ │ ├── frontend_service.h │ │ │ ├── gateway_fes_transport.cpp │ │ │ ├── history.cpp │ │ │ ├── history.h │ │ │ ├── id_impulsions.cpp │ │ │ ├── id_impulsions.h │ │ │ ├── impulse_encoder.cpp │ │ │ ├── impulse_encoder.h │ │ │ ├── module_manager.cpp │ │ │ ├── module_manager.h │ │ │ ├── packet_history.cpp │ │ │ ├── packet_history.h │ │ │ ├── pair_selector.cpp │ │ │ ├── pair_selector.h │ │ │ ├── prio_sub.cpp │ │ │ ├── prio_sub.h │ │ │ ├── prioritizer.cpp │ │ │ ├── prioritizer.h │ │ │ ├── processing_spreader.cpp │ │ │ ├── processing_spreader.h │ │ │ ├── property_dispatcher.cpp │ │ │ ├── property_dispatcher.h │ │ │ ├── property_history.cpp │ │ │ ├── property_history.h │ │ │ ├── property_id_translator.h │ │ │ ├── selection_generator.cpp │ │ │ ├── selection_generator.h │ │ │ ├── stdpch.cpp │ │ │ ├── stdpch.h │ │ │ ├── uid_impulsions.cpp │ │ │ ├── uid_impulsions.h │ │ │ ├── vision_array.cpp │ │ │ ├── vision_array.h │ │ │ ├── vision_provider.cpp │ │ │ ├── vision_provider.h │ │ │ ├── vision_receiver.cpp │ │ │ └── vision_receiver.h │ │ ├── gameplay_module_lib │ │ │ ├── CMakeLists.txt │ │ │ ├── gameplay_module_lib.h │ │ │ ├── module.cpp │ │ │ ├── module.h │ │ │ ├── module_core.cpp │ │ │ ├── module_core.h │ │ │ ├── module_core_inline.h │ │ │ ├── module_inline.h │ │ │ ├── module_parent.cpp │ │ │ ├── module_parent.h │ │ │ ├── module_parent_inline.h │ │ │ ├── module_proxy.h │ │ │ └── module_utils.h │ │ ├── general_utilities_service │ │ │ ├── CMakeLists.txt │ │ │ ├── cc_commands.cpp │ │ │ ├── cc_contest_ctrl_script.cpp │ │ │ ├── cc_contest_ctrl_script.h │ │ │ ├── cc_module_messages.h │ │ │ ├── ce_commands.cpp │ │ │ ├── ce_contest_executor.cpp │ │ │ ├── ce_contest_executor.h │ │ │ ├── ce_module_messages.h │ │ │ ├── ce_notes.txt │ │ │ ├── cl_contest_logger.cpp │ │ │ ├── cl_module_messages.h │ │ │ ├── ec_channel.cpp │ │ │ ├── ec_channel.h │ │ │ ├── ec_ctrl_channel.cpp │ │ │ ├── ec_ctrl_channel.h │ │ │ ├── ec_event_chat.cpp │ │ │ ├── ec_event_chat_module.cpp │ │ │ ├── ec_event_chat_module.h │ │ │ ├── ec_faction_channel.cpp │ │ │ ├── ec_faction_channel.h │ │ │ ├── ec_notes.txt │ │ │ ├── ec_party_channel.cpp │ │ │ ├── ec_party_channel.h │ │ │ ├── ec_types.h │ │ │ ├── ee_event_executor.cpp │ │ │ ├── ee_event_executor.h │ │ │ ├── ee_module_messages.h │ │ │ ├── ee_notes.txt │ │ │ ├── em_commands.cpp │ │ │ ├── em_event_manager.cpp │ │ │ ├── em_event_manager.h │ │ │ ├── em_module_messages.h │ │ │ ├── em_notes.txt │ │ │ ├── gus_chat.cpp │ │ │ ├── gus_chat.h │ │ │ ├── gus_client_manager.cpp │ │ │ ├── gus_client_manager.h │ │ │ ├── gus_mfc.rc │ │ │ ├── gus_mfc_popups.cpp │ │ │ ├── gus_mfc_popups.h │ │ │ ├── gus_mfc_select_with_text.cpp │ │ │ ├── gus_mfc_select_with_text.h │ │ │ ├── gus_mirror.cpp │ │ │ ├── gus_mirror.h │ │ │ ├── gus_module.cpp │ │ │ ├── gus_module.h │ │ │ ├── gus_module_commands.cpp │ │ │ ├── gus_module_factory.cpp │ │ │ ├── gus_module_factory.h │ │ │ ├── gus_module_manager.cpp │ │ │ ├── gus_module_manager.h │ │ │ ├── gus_module_notes.txt │ │ │ ├── gus_net.cpp │ │ │ ├── gus_net.h │ │ │ ├── gus_net_commands.cpp │ │ │ ├── gus_net_connection.cpp │ │ │ ├── gus_net_connection.h │ │ │ ├── gus_net_hub.cpp │ │ │ ├── gus_net_hub.h │ │ │ ├── gus_net_implementation.cpp │ │ │ ├── gus_net_implementation.h │ │ │ ├── gus_net_messages.cpp │ │ │ ├── gus_net_messages.h │ │ │ ├── gus_net_notes.txt │ │ │ ├── gus_net_remote_module.cpp │ │ │ ├── gus_net_remote_module.h │ │ │ ├── gus_net_types.h │ │ │ ├── gus_text.cpp │ │ │ ├── gus_text.h │ │ │ ├── gus_util_commands.cpp │ │ │ ├── gus_utils.cpp │ │ │ ├── gus_utils.h │ │ │ ├── merge_commands.cpp │ │ │ ├── merge_notes.txt │ │ │ ├── merge_shard_merger.cpp │ │ │ ├── mfc │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── enter_name.cpp │ │ │ │ ├── enter_name.h │ │ │ │ ├── login_window.cpp │ │ │ │ ├── login_window.h │ │ │ │ ├── mfc.clw │ │ │ │ ├── mfc.rc │ │ │ │ ├── resource.h │ │ │ │ ├── select_event_window.cpp │ │ │ │ ├── select_event_window.h │ │ │ │ ├── shard_select_window.cpp │ │ │ │ ├── shard_select_window.h │ │ │ │ ├── upload_window.cpp │ │ │ │ └── upload_window.h │ │ │ ├── re_module_itf.cpp │ │ │ ├── re_module_itf.h │ │ │ ├── re_module_itf.xml │ │ │ ├── re_module_messages.h │ │ │ ├── re_repository_emitter.cpp │ │ │ ├── remote_saves_interface.cpp │ │ │ ├── remote_saves_interface.h │ │ │ ├── repository.cpp │ │ │ ├── repository.h │ │ │ ├── resource.h │ │ │ ├── rfr_commands.cpp │ │ │ ├── rfr_notes.txt │ │ │ ├── rfr_ryzom_file_retriever.cpp │ │ │ ├── rfr_ryzom_file_retriever.h │ │ │ ├── rr_module_itf.cpp │ │ │ ├── rr_module_itf.h │ │ │ ├── rr_module_itf.xml │ │ │ ├── rr_module_messages.h │ │ │ ├── rr_repository_reciever.cpp │ │ │ ├── rs_module_messages.h │ │ │ ├── rs_notes.txt │ │ │ ├── rs_remote_saves.cpp │ │ │ ├── rs_remote_saves.h │ │ │ ├── rsaves_notes.txt │ │ │ ├── saves_module_messages.h │ │ │ ├── saves_notes.txt │ │ │ ├── saves_shard_saves.cpp │ │ │ ├── saves_unit.cpp │ │ │ ├── saves_unit.h │ │ │ ├── server control module notes.txt │ │ │ ├── server_control_modules.cpp │ │ │ ├── server_control_modules.h │ │ │ ├── service_main.cpp │ │ │ ├── service_main.h │ │ │ ├── spa_server_patch_applier.cpp │ │ │ ├── ss_command_executor.cpp │ │ │ ├── ss_command_executor.h │ │ │ ├── ss_commands.cpp │ │ │ ├── ss_notes.txt │ │ │ ├── ss_script_manager.cpp │ │ │ ├── ss_script_manager.h │ │ │ ├── ss_service_comms_manager.cpp │ │ │ ├── ss_service_comms_manager.h │ │ │ ├── ss_state_manager.cpp │ │ │ ├── ss_state_manager.h │ │ │ ├── stat_char_commands.cpp │ │ │ ├── stat_char_filter_factory.cpp │ │ │ ├── stat_char_filter_factory.h │ │ │ ├── stat_char_info_extractor_factory.cpp │ │ │ ├── stat_char_info_extractor_factory.h │ │ │ ├── stat_char_scan_script.cpp │ │ │ ├── stat_char_scan_script.h │ │ │ ├── stat_character.cpp │ │ │ ├── stat_character.h │ │ │ ├── stat_character_scan_job.cpp │ │ │ ├── stat_character_scan_job.h │ │ │ ├── stat_file_list_builder_factory.cpp │ │ │ ├── stat_file_list_builder_factory.h │ │ │ ├── stat_globals.cpp │ │ │ ├── stat_globals.h │ │ │ ├── stat_guild_container.cpp │ │ │ ├── stat_guild_container.h │ │ │ ├── stat_job_manager.cpp │ │ │ ├── stat_job_manager.h │ │ │ ├── stat_user_char_filters.cpp │ │ │ ├── stat_user_char_info_extractors.cpp │ │ │ ├── stat_user_file_list_builders.cpp │ │ │ ├── stats_guild_commands.cpp │ │ │ ├── stats_guild_scan_job.cpp │ │ │ ├── stats_guild_scan_job.h │ │ │ ├── stats_notes.txt │ │ │ └── stdin_monitor_thread.cpp │ │ ├── gpm_service │ │ │ ├── CMakeLists.txt │ │ │ ├── cell.cpp │ │ │ ├── cell.h │ │ │ ├── client_messages.cpp │ │ │ ├── client_messages.h │ │ │ ├── commands.cpp │ │ │ ├── gpm_defs.h │ │ │ ├── gpm_service.cpp │ │ │ ├── gpm_service.h │ │ │ ├── gpm_service_messages.txt │ │ │ ├── gpm_utilities.h │ │ │ ├── messages.cpp │ │ │ ├── messages.h │ │ │ ├── move_checker.cpp │ │ │ ├── move_checker.h │ │ │ ├── move_grid.h │ │ │ ├── patat_grid.cpp │ │ │ ├── patat_grid.h │ │ │ ├── patat_subscribe_manager.cpp │ │ │ ├── patat_subscribe_manager.h │ │ │ ├── sheets.cpp │ │ │ ├── sheets.h │ │ │ ├── stdpch.cpp │ │ │ ├── stdpch.h │ │ │ ├── variables.cpp │ │ │ ├── variables.h │ │ │ ├── vision_delta_manager.cpp │ │ │ ├── vision_delta_manager.h │ │ │ ├── world_entity.cpp │ │ │ ├── world_entity.h │ │ │ ├── world_position_manager.cpp │ │ │ └── world_position_manager.h │ │ ├── input_output_service │ │ │ ├── CMakeLists.txt │ │ │ ├── bot_chat_manager.cpp │ │ │ ├── bot_chat_manager.h │ │ │ ├── char_name_mapper.cpp │ │ │ ├── chat_client.cpp │ │ │ ├── chat_client.h │ │ │ ├── chat_manager.cpp │ │ │ ├── chat_manager.h │ │ │ ├── chat_stats.cpp │ │ │ ├── chat_stats.h │ │ │ ├── chat_unifier_client.cpp │ │ │ ├── chat_unifier_client.h │ │ │ ├── commands.cpp │ │ │ ├── input_output_service.cpp │ │ │ ├── input_output_service.h │ │ │ ├── ios_chat_log.cpp │ │ │ ├── ios_chat_log.h │ │ │ ├── ios_chat_log_inline.h │ │ │ ├── ios_pd.cpp │ │ │ ├── ios_pd.h │ │ │ ├── ios_pd.pds │ │ │ ├── ios_pd_inline.h │ │ │ ├── ios_ring_module.cpp │ │ │ ├── messages.cpp │ │ │ ├── messages.h │ │ │ ├── news_manager.cpp │ │ │ ├── news_manager.h │ │ │ ├── parameter_traits.cpp │ │ │ ├── stdpch.cpp │ │ │ ├── stdpch.h │ │ │ ├── string_manager.cpp │ │ │ ├── string_manager.h │ │ │ └── string_manager_parser.cpp │ │ ├── log_analyser_service │ │ │ ├── CMakeLists.txt │ │ │ ├── commands.cpp │ │ │ ├── log_analyser_service.cpp │ │ │ └── log_analyser_service.h │ │ ├── logger_service │ │ │ ├── CMakeLists.txt │ │ │ ├── log_query.cpp │ │ │ ├── log_query.h │ │ │ ├── log_storage.h │ │ │ ├── logger_service.cpp │ │ │ └── logger_service.h │ │ ├── mail_forum_service │ │ │ ├── CMakeLists.txt │ │ │ ├── hof_generator.cpp │ │ │ ├── hof_generator.h │ │ │ ├── mail_forum_service.cpp │ │ │ ├── shard_stat_db_manager.cpp │ │ │ ├── shard_stat_db_manager.h │ │ │ ├── stdpch.cpp │ │ │ └── stdpch.h │ │ ├── mirror_service │ │ │ ├── CMakeLists.txt │ │ │ ├── data_set_ms.cpp │ │ │ ├── data_set_ms.h │ │ │ ├── mirror_service.cpp │ │ │ ├── mirror_service.h │ │ │ ├── ms_automaton.cpp │ │ │ ├── tick_proxy.cpp │ │ │ └── tick_proxy.h │ │ ├── monitor_service │ │ │ ├── CMakeLists.txt │ │ │ ├── client.cpp │ │ │ ├── client.h │ │ │ ├── commands.cpp │ │ │ ├── messages.cpp │ │ │ ├── messages.h │ │ │ ├── mirrors.cpp │ │ │ ├── mirrors.h │ │ │ ├── service_main.cpp │ │ │ ├── stdpch.cpp │ │ │ └── stdpch.h │ │ ├── patchman_service │ │ │ ├── CMakeLists.txt │ │ │ ├── administered_module.cpp │ │ │ ├── administered_module.h │ │ │ ├── cpr_client_patch_repository.cpp │ │ │ ├── deployment_configuration_synchroniser.cpp │ │ │ ├── deployment_configuration_synchroniser.h │ │ │ ├── file_manager.cpp │ │ │ ├── file_manager.h │ │ │ ├── file_receiver.cpp │ │ │ ├── file_receiver.h │ │ │ ├── file_repository.cpp │ │ │ ├── file_repository.h │ │ │ ├── log_report_module.cpp │ │ │ ├── module_admin_itf.cpp │ │ │ ├── module_admin_itf.h │ │ │ ├── module_admin_itf.xml │ │ │ ├── mysql_wrapper_stub.cpp │ │ │ ├── pam_patchman_admin_module.cpp │ │ │ ├── patchman_constants.h │ │ │ ├── patchman_tester.cpp │ │ │ ├── patchman_tester.h │ │ │ ├── re_module_itf.cpp │ │ │ ├── re_module_itf.h │ │ │ ├── re_module_itf.xml │ │ │ ├── re_repository_emitter.cpp │ │ │ ├── repository.cpp │ │ │ ├── repository.h │ │ │ ├── resource.h │ │ │ ├── rr_module_itf.cpp │ │ │ ├── rr_module_itf.h │ │ │ ├── rr_module_itf.xml │ │ │ ├── rr_repository_reciever.cpp │ │ │ ├── server control module notes.txt │ │ │ ├── server_control_modules.cpp │ │ │ ├── server_control_modules.h │ │ │ ├── server_patch_types.h │ │ │ ├── service_main.cpp │ │ │ ├── service_main.h │ │ │ ├── spa_module_itf.cpp │ │ │ ├── spa_module_itf.h │ │ │ ├── spa_module_itf.xml │ │ │ ├── spa_server_patch_applier.cpp │ │ │ ├── spb_server_patch_bridge.cpp │ │ │ ├── spd_server_patch_downloader.cpp │ │ │ ├── spd_server_patch_downloader.h │ │ │ ├── spm_module_itf.cpp │ │ │ ├── spm_module_itf.h │ │ │ ├── spm_module_itf.xml │ │ │ ├── spm_server_patch_manager.cpp │ │ │ ├── spr_server_patch_repository.cpp │ │ │ ├── spr_server_patch_repository.h │ │ │ ├── spt_module_itf.cpp │ │ │ ├── spt_module_itf.h │ │ │ ├── spt_module_itf.xml │ │ │ ├── spt_server_patch_terminal.cpp │ │ │ └── stdin_monitor_thread.cpp │ │ ├── pd_lib │ │ │ ├── CMakeLists.txt │ │ │ ├── db_delta_file.cpp │ │ │ ├── db_delta_file.h │ │ │ ├── db_description_parser.cpp │ │ │ ├── db_description_parser.h │ │ │ ├── db_reference_file.cpp │ │ │ ├── db_reference_file.h │ │ │ ├── delta_builder.cpp │ │ │ ├── delta_builder.h │ │ │ ├── pd_lib.cpp │ │ │ ├── pd_lib.h │ │ │ ├── pd_messages.cpp │ │ │ ├── pd_messages.h │ │ │ ├── pd_server_utils.cpp │ │ │ ├── pd_server_utils.h │ │ │ ├── pd_set.cpp │ │ │ ├── pd_set.h │ │ │ ├── pd_string_manager.cpp │ │ │ ├── pd_string_manager.h │ │ │ ├── pd_string_mapper.cpp │ │ │ ├── pd_string_mapper.h │ │ │ ├── pd_utils.h │ │ │ ├── pds_common.cpp │ │ │ ├── pds_common.h │ │ │ ├── pds_table_buffer.cpp │ │ │ ├── pds_table_buffer.h │ │ │ ├── pds_table_buffer_inline.h │ │ │ ├── pds_types.h │ │ │ ├── reference_builder.cpp │ │ │ ├── reference_builder.h │ │ │ ├── timestamp.cpp │ │ │ └── timestamp.h │ │ ├── pd_reference_builder │ │ │ ├── CMakeLists.txt │ │ │ ├── delta_builder_task.cpp │ │ │ ├── delta_builder_task.h │ │ │ ├── ref_builder_task.cpp │ │ │ ├── ref_builder_task.h │ │ │ ├── reference_builder_service.cpp │ │ │ └── reference_builder_service.h │ │ ├── pd_support_service │ │ │ ├── CMakeLists.txt │ │ │ ├── daily_commands.cpp │ │ │ ├── fdc_cache.cpp │ │ │ ├── fdc_cache.h │ │ │ ├── hourly_commands.cpp │ │ │ ├── service_main.cpp │ │ │ ├── service_main.h │ │ │ ├── stat_char_commands.cpp │ │ │ ├── stat_char_filter_factory.cpp │ │ │ ├── stat_char_filter_factory.h │ │ │ ├── stat_char_info_extractor_factory.cpp │ │ │ ├── stat_char_info_extractor_factory.h │ │ │ ├── stat_char_scan_script.cpp │ │ │ ├── stat_char_scan_script.h │ │ │ ├── stat_character.cpp │ │ │ ├── stat_character.h │ │ │ ├── stat_character_scan_job.cpp │ │ │ ├── stat_character_scan_job.h │ │ │ ├── stat_file_list_builder_factory.cpp │ │ │ ├── stat_file_list_builder_factory.h │ │ │ ├── stat_globals.cpp │ │ │ ├── stat_globals.h │ │ │ ├── stat_guild_container.cpp │ │ │ ├── stat_guild_container.h │ │ │ ├── stat_job_manager.cpp │ │ │ ├── stat_job_manager.h │ │ │ ├── stat_user_char_filters.cpp │ │ │ ├── stat_user_char_info_extractors.cpp │ │ │ ├── stat_user_file_list_builders.cpp │ │ │ ├── stats_guild_commands.cpp │ │ │ ├── stats_guild_scan_job.cpp │ │ │ ├── stats_guild_scan_job.h │ │ │ ├── stats_notes.txt │ │ │ ├── utils.cpp │ │ │ └── utils.h │ │ ├── persistant_data_service │ │ │ ├── CMakeLists.txt │ │ │ ├── commands.cpp │ │ │ ├── database_adapter.cpp │ │ │ ├── database_adapter.h │ │ │ ├── db_manager.cpp │ │ │ ├── db_manager.h │ │ │ ├── db_manager_messages.cpp │ │ │ ├── db_manager_messages.h │ │ │ ├── pds_attribute.cpp │ │ │ ├── pds_attribute.h │ │ │ ├── pds_column.cpp │ │ │ ├── pds_column.h │ │ │ ├── pds_database.cpp │ │ │ ├── pds_database.h │ │ │ ├── pds_database_inline.h │ │ │ ├── pds_table.cpp │ │ │ ├── pds_table.h │ │ │ ├── pds_table_inline.h │ │ │ ├── pds_type.cpp │ │ │ ├── pds_type.h │ │ │ ├── persistant_data_service.cpp │ │ │ └── persistant_data_service.h │ │ ├── ryzom_admin_service │ │ │ ├── CMakeLists.txt │ │ │ └── ryzom_admin_service.cpp │ │ ├── ryzom_naming_service │ │ │ ├── CMakeLists.txt │ │ │ └── ryzom_naming_service.cpp │ │ ├── ryzom_welcome_service │ │ │ ├── CMakeLists.txt │ │ │ ├── ryzom_welcome_service.cpp │ │ │ └── ryzom_welcome_service.h │ │ ├── sabrina │ │ │ ├── available_phrases.cpp │ │ │ ├── available_phrases.h │ │ │ ├── combat.cpp │ │ │ ├── combat.h │ │ │ ├── combat_action.cpp │ │ │ ├── combat_action.h │ │ │ ├── combat_action_stun.cpp │ │ │ ├── combat_action_stun.h │ │ │ ├── combat_attacker.cpp │ │ │ ├── combat_attacker.h │ │ │ ├── combat_defender.cpp │ │ │ ├── combat_defender.h │ │ │ ├── combat_phrase.cpp │ │ │ ├── combat_phrase.h │ │ │ ├── combat_stun_effect.cpp │ │ │ ├── combat_stun_effect.h │ │ │ ├── combat_tables.h │ │ │ ├── entity_base.h │ │ │ ├── faber_action.cpp │ │ │ ├── faber_action.h │ │ │ ├── faber_phrase.cpp │ │ │ ├── faber_phrase.h │ │ │ ├── h_file_test.cpp │ │ │ ├── harvest_phrase.cpp │ │ │ ├── harvest_phrase.h │ │ │ ├── items │ │ │ │ └── lockable.h │ │ │ ├── magic_action.h │ │ │ ├── magic_action_affect_stat.cpp │ │ │ ├── magic_action_attack.cpp │ │ │ ├── magic_action_cure.cpp │ │ │ ├── magic_action_debuff.cpp │ │ │ ├── magic_action_dot.cpp │ │ │ ├── magic_action_heal.cpp │ │ │ ├── magic_action_hot.cpp │ │ │ ├── magic_action_negative_effect.cpp │ │ │ ├── magic_phrase.cpp │ │ │ ├── magic_phrase.h │ │ │ ├── phrase_manager.cpp │ │ │ ├── phrase_manager.h │ │ │ ├── phrase_utilities_functions.cpp │ │ │ ├── phrase_utilities_functions.h │ │ │ ├── position_manager │ │ │ │ ├── position_manager.h │ │ │ │ └── sabrina_list_link.h │ │ │ ├── s_effect.cpp │ │ │ ├── s_effect.h │ │ │ ├── s_link_effect.cpp │ │ │ ├── s_link_effect.h │ │ │ ├── s_link_effect_debuff_stat.cpp │ │ │ ├── s_link_effect_debuff_stat.h │ │ │ ├── s_link_effect_dot.cpp │ │ │ ├── s_link_effect_dot.h │ │ │ ├── s_link_effect_hot.cpp │ │ │ ├── s_link_effect_hot.h │ │ │ ├── s_phrase.cpp │ │ │ ├── s_phrase.h │ │ │ ├── s_phrase_factory.cpp │ │ │ ├── s_phrase_factory.h │ │ │ ├── sabrina_actor.h │ │ │ ├── sabrina_actor_creature.cpp │ │ │ ├── sabrina_actor_creature.h │ │ │ ├── sabrina_actor_player.cpp │ │ │ ├── sabrina_actor_player.h │ │ │ ├── sabrina_ai_interface.cpp │ │ │ ├── sabrina_ai_interface.h │ │ │ ├── sabrina_enum.h │ │ │ ├── sabrina_item_stats.cpp │ │ │ ├── sabrina_item_stats.h │ │ │ ├── sabrina_message_callbacks.cpp │ │ │ ├── sabrina_message_callbacks.h │ │ │ ├── sabrina_messages.h │ │ │ ├── sabrina_phrase_description.cpp │ │ │ ├── sabrina_phrase_description.h │ │ │ ├── sabrina_phrase_instance.cpp │ │ │ ├── sabrina_phrase_instance.h │ │ │ ├── sabrina_phrase_manager.cpp │ │ │ ├── sabrina_phrase_manager.h │ │ │ ├── sabrina_phrase_model.h │ │ │ ├── sabrina_phrase_model_craft.h │ │ │ ├── sabrina_phrase_model_factory.cpp │ │ │ ├── sabrina_phrase_model_factory.h │ │ │ ├── sabrina_phrase_model_fight.h │ │ │ ├── sabrina_phrase_model_magic.h │ │ │ ├── sabrina_pointers.h │ │ │ ├── static_sabrina_bricks.h │ │ │ └── stdpch.h │ │ ├── server_share │ │ │ ├── CMakeLists.txt │ │ │ ├── action_flags.cpp │ │ │ ├── action_flags.h │ │ │ ├── animal_hunger.cpp │ │ │ ├── animal_hunger.h │ │ │ ├── backup_service_itf.cpp │ │ │ ├── backup_service_itf.h │ │ │ ├── backup_service_itf.xml │ │ │ ├── basic_effect.cpp │ │ │ ├── basic_effect.h │ │ │ ├── bmp4image.h │ │ │ ├── char_name_mapper_itf.cpp │ │ │ ├── char_name_mapper_itf.h │ │ │ ├── char_name_mapper_itf.xml │ │ │ ├── chat_unifier_itf.cpp │ │ │ ├── chat_unifier_itf.h │ │ │ ├── chat_unifier_itf.xml │ │ │ ├── combat_state.h │ │ │ ├── combat_vision_delta.h │ │ │ ├── command_executor.cpp │ │ │ ├── command_executor_itf.cpp │ │ │ ├── command_executor_itf.h │ │ │ ├── command_executor_itf.xml │ │ │ ├── continent_container.cpp │ │ │ ├── continent_container.h │ │ │ ├── creature_size.cpp │ │ │ ├── creature_size.h │ │ │ ├── effect_manager.cpp │ │ │ ├── effect_manager.h │ │ │ ├── effect_message.cpp │ │ │ ├── effect_message.h │ │ │ ├── entity_locator_itf.cpp │ │ │ ├── entity_locator_itf.h │ │ │ ├── entity_locator_itf.xml │ │ │ ├── entity_state.h │ │ │ ├── event_report.h │ │ │ ├── fixed_size_int_vector.h │ │ │ ├── handy_commands.cpp │ │ │ ├── handy_commands.h │ │ │ ├── item_service_type.cpp │ │ │ ├── item_service_type.h │ │ │ ├── light_ig_loader.cpp │ │ │ ├── light_ig_loader.h │ │ │ ├── log_character_gen.cpp │ │ │ ├── log_character_gen.h │ │ │ ├── log_chat_gen.cpp │ │ │ ├── log_chat_gen.h │ │ │ ├── log_command_gen.cpp │ │ │ ├── log_command_gen.h │ │ │ ├── log_gather_all_gen.cpp │ │ │ ├── log_item_gen.cpp │ │ │ ├── log_item_gen.h │ │ │ ├── log_outpost_gen.cpp │ │ │ ├── log_outpost_gen.h │ │ │ ├── log_player_gen.cpp │ │ │ ├── log_player_gen.h │ │ │ ├── log_ring_gen.cpp │ │ │ ├── log_ring_gen.h │ │ │ ├── logger_service_client.cpp │ │ │ ├── logger_service_client.h │ │ │ ├── logger_service_itf.cpp │ │ │ ├── logger_service_itf.h │ │ │ ├── logger_service_itf.xml │ │ │ ├── login_service_itf.cpp │ │ │ ├── login_service_itf.h │ │ │ ├── login_service_itf.php │ │ │ ├── login_service_itf.xml │ │ │ ├── mail_forum_itf.cpp │ │ │ ├── mail_forum_itf.h │ │ │ ├── mail_forum_itf.xml │ │ │ ├── mail_forum_validator.cpp │ │ │ ├── mail_forum_validator.h │ │ │ ├── mirror_equipment.cpp │ │ │ ├── mirror_equipment.h │ │ │ ├── mission_messages.h │ │ │ ├── msg_ai_service.cpp │ │ │ ├── msg_ai_service.h │ │ │ ├── msg_brick_service.h │ │ │ ├── msg_gpm_service.h │ │ │ ├── msg_object_player_manager.h │ │ │ ├── mysql_wrapper.cpp │ │ │ ├── mysql_wrapper.h │ │ │ ├── npc_description_messages.cpp │ │ │ ├── npc_description_messages.h │ │ │ ├── pet_interface_msg.h │ │ │ ├── place_type.cpp │ │ │ ├── place_type.h │ │ │ ├── primitive_cfg.cpp │ │ │ ├── primitive_cfg.h │ │ │ ├── pvp_relation.cpp │ │ │ ├── pvp_relation.h │ │ │ ├── r2_session_backup_module.cpp │ │ │ ├── r2_session_backup_module.h │ │ │ ├── r2_variables.cpp │ │ │ ├── r2_variables.h │ │ │ ├── r2_vision.cpp │ │ │ ├── r2_vision.h │ │ │ ├── respawn_point_type.cpp │ │ │ ├── respawn_point_type.h │ │ │ ├── stat_db_common.h │ │ │ ├── stat_db_msg.h │ │ │ ├── stat_db_tree.cpp │ │ │ ├── stat_db_tree.h │ │ │ ├── stat_db_tree_pd.cpp │ │ │ ├── stat_db_tree_pd.h │ │ │ ├── stat_db_tree_visitor.h │ │ │ ├── stats_status.h │ │ │ ├── stdpch.cpp │ │ │ ├── stdpch.h │ │ │ ├── stl_allocator_checker.cpp │ │ │ ├── stl_allocator_checker.h │ │ │ ├── taming_tool_type.cpp │ │ │ ├── taming_tool_type.h │ │ │ ├── target.cpp │ │ │ ├── target.h │ │ │ ├── testing_tool_structures.h │ │ │ ├── used_continent.cpp │ │ │ └── used_continent.h │ │ ├── session_browser_server │ │ │ ├── CMakeLists.txt │ │ │ ├── session_browser_server.cpp │ │ │ └── session_browser_server.h │ │ ├── shard_unifier_service │ │ │ ├── CMakeLists.txt │ │ │ ├── character_sync.cpp │ │ │ ├── character_sync.h │ │ │ ├── chat_unifier.cpp │ │ │ ├── database_mapping.cpp │ │ │ ├── database_mapping.h │ │ │ ├── database_mapping.xml │ │ │ ├── entity_locator.cpp │ │ │ ├── entity_locator.h │ │ │ ├── login_service.cpp │ │ │ ├── login_service.h │ │ │ ├── mail_forum_notfier_fwd.cpp │ │ │ ├── name_manager.cpp │ │ │ ├── name_manager.h │ │ │ ├── nel.sql │ │ │ ├── nel_database_mapping.cpp │ │ │ ├── nel_database_mapping.h │ │ │ ├── nel_database_mapping.xml │ │ │ ├── nel_tool.sql │ │ │ ├── ring.sql │ │ │ ├── ring_session_manager.cpp │ │ │ ├── ring_session_manager.h │ │ │ ├── shard_unifier_service.cpp │ │ │ ├── shard_unifier_service.h │ │ │ ├── stdpch.cpp │ │ │ └── stdpch.h │ │ ├── simulation_service │ │ │ ├── client_cfg.cpp │ │ │ ├── client_cfg.h │ │ │ ├── com_lua_module.cpp │ │ │ ├── com_lua_module.h │ │ │ ├── simulated_client_animation_module.cpp │ │ │ ├── simulated_client_animation_module.h │ │ │ ├── simulated_client_edition_module.cpp │ │ │ ├── simulated_client_edition_module.h │ │ │ ├── simulated_dmc.cpp │ │ │ ├── simulated_dmc.h │ │ │ ├── simulated_editor.cpp │ │ │ ├── simulated_editor.h │ │ │ ├── simulated_idmc.h │ │ │ ├── simulated_ring_session_manager.cpp │ │ │ ├── simulated_ring_session_manager.h │ │ │ ├── simulation_random.cpp │ │ │ ├── simulation_random.h │ │ │ ├── simulation_service.cpp │ │ │ └── simulation_service.h │ │ ├── testing_tool_service │ │ │ ├── stdpch.cpp │ │ │ ├── stdpch.h │ │ │ ├── testing_tool_service.cpp │ │ │ └── testing_tool_service.h │ │ └── tick_service │ │ │ ├── CMakeLists.txt │ │ │ ├── range_mirror_manager.cpp │ │ │ ├── range_mirror_manager.h │ │ │ ├── tick_service.cpp │ │ │ └── tick_service.h │ ├── tick_service.cfg │ ├── tick_service_default.cfg │ ├── used_continents.cfg │ ├── welcome_service.cfg │ └── welcome_service_default.cfg └── tools │ ├── CMakeLists.txt │ ├── assoc_mem │ ├── CMakeLists.txt │ ├── att_tree.h │ ├── attribute.cpp │ ├── attribute.h │ ├── brain.cpp │ ├── brain.h │ ├── cond_node.cpp │ ├── cond_node.h │ ├── field.cpp │ ├── field.h │ ├── mode7.txt │ ├── mood.cpp │ ├── mood.h │ ├── node.cpp │ ├── node.h │ ├── record.cpp │ ├── record.h │ ├── result_node.cpp │ ├── result_node.h │ ├── test.cpp │ ├── tree.cpp │ ├── tree.h │ ├── val_nodes.h │ └── value.h │ ├── build_gamedata │ └── workspace │ │ ├── common │ │ ├── cfg │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── characters │ │ │ ├── anim_builder.cfg │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── characters_maps_hr │ │ │ ├── directories.py │ │ │ ├── panoply_common.cfg │ │ │ ├── panoply_fyros.cfg │ │ │ ├── panoply_generique.cfg │ │ │ ├── panoply_matis.cfg │ │ │ ├── panoply_tryker.cfg │ │ │ ├── panoply_zorai.cfg │ │ │ └── process.py │ │ ├── construction │ │ │ ├── directories.py │ │ │ ├── process.py │ │ │ ├── properties_base.cfg │ │ │ ├── properties_draft.cfg │ │ │ └── properties_final.cfg │ │ ├── data_common │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── exedll │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── fauna │ │ │ ├── anim_builder.cfg │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── fonts │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── gamedev │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── interface │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── leveldesign │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── objects │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── outgame │ │ │ ├── directories.py │ │ │ ├── process.py │ │ │ ├── properties_base.cfg │ │ │ ├── properties_draft.cfg │ │ │ └── properties_final.cfg │ │ ├── sfx │ │ │ ├── directories.py │ │ │ └── process.py │ │ └── sky │ │ │ ├── anim_builder.cfg │ │ │ ├── directories.py │ │ │ ├── process.py │ │ │ ├── properties_base.cfg │ │ │ ├── properties_draft.cfg │ │ │ └── properties_final.cfg │ │ ├── continents │ │ ├── fyros │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── indoors │ │ │ ├── directories.py │ │ │ ├── process.py │ │ │ ├── properties_base.cfg │ │ │ ├── properties_draft.cfg │ │ │ └── properties_final.cfg │ │ ├── matis │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── newbieland │ │ │ ├── directories.py │ │ │ ├── process.py │ │ │ ├── properties_base.cfg │ │ │ ├── properties_draft.cfg │ │ │ └── properties_final.cfg │ │ ├── tryker │ │ │ ├── directories.py │ │ │ └── process.py │ │ └── zorai │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── ecosystems │ │ ├── desert │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── jungle │ │ │ ├── directories.py │ │ │ └── process.py │ │ ├── lacustre │ │ │ ├── directories.py │ │ │ └── process.py │ │ └── primes_racines │ │ │ ├── directories.py │ │ │ └── process.py │ │ └── projects.py │ ├── client │ ├── CMakeLists.txt │ ├── client_config │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── bar.cpp │ │ ├── bar.h │ │ ├── base_dialog.cpp │ │ ├── base_dialog.h │ │ ├── cfg_file.cpp │ │ ├── cfg_file.h │ │ ├── client_config.cpp │ │ ├── client_config.h │ │ ├── client_config.rc │ │ ├── client_configDlg.cpp │ │ ├── client_configDlg.h │ │ ├── database.cpp │ │ ├── database.h │ │ ├── display_advanced_dlg.cpp │ │ ├── display_advanced_dlg.h │ │ ├── display_details_dlg.cpp │ │ ├── display_details_dlg.h │ │ ├── display_dlg.cpp │ │ ├── display_dlg.h │ │ ├── display_information_d3d_dlg.cpp │ │ ├── display_information_d3d_dlg.h │ │ ├── display_information_gl_dlg.cpp │ │ ├── display_information_gl_dlg.h │ │ ├── general_dlg.cpp │ │ ├── general_dlg.h │ │ ├── preset_dlg.cpp │ │ ├── preset_dlg.h │ │ ├── res │ │ │ ├── card_icon.bmp │ │ │ ├── client_config.ico │ │ │ ├── client_config.rc2 │ │ │ ├── display_config_icon.bmp │ │ │ ├── display_icon.bmp │ │ │ ├── display_properties_icon.bmp │ │ │ ├── general_icon.bmp │ │ │ ├── left_bitmap_0.bmp │ │ │ ├── network_icon.bmp │ │ │ ├── sound_icon.bmp │ │ │ ├── splash_screen.bmp │ │ │ ├── top_right.bmp │ │ │ ├── update_icon.bmp │ │ │ └── welcome_icon.bmp │ │ ├── resource.h │ │ ├── sound_dlg.cpp │ │ ├── sound_dlg.h │ │ ├── system_information_dlg.cpp │ │ └── system_information_dlg.h │ ├── client_data_check │ │ ├── ReadMe.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── client_data_check.cpp │ │ ├── client_data_check.h │ │ ├── client_data_check.rc │ │ ├── client_data_checkDlg.cpp │ │ ├── client_data_checkDlg.h │ │ ├── data_scan.cpp │ │ ├── data_scan.h │ │ ├── res │ │ │ ├── client_data_check.ico │ │ │ └── client_data_check.rc2 │ │ └── resource.h │ └── client_patcher │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── connection_stats │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── connection_stats.cpp │ ├── connection_stats.def │ └── connection_stats.h │ ├── leveldesign │ ├── CMakeLists.txt │ ├── alias_synchronizer │ │ ├── CMakeLists.txt │ │ ├── alias_synchronizer.cfg │ │ └── alias_synchronizer.cpp │ ├── csv_transform │ │ ├── CMakeLists.txt │ │ ├── csv_transform.cpp │ │ ├── sadge_lib │ │ │ └── include │ │ │ │ ├── text_input.h │ │ │ │ └── text_output.h │ │ ├── test.scr │ │ ├── test1.scr │ │ └── test2.scr │ ├── export │ │ ├── CMakeLists.txt │ │ ├── export.cpp │ │ ├── export.h │ │ ├── formFlora.cpp │ │ ├── formFlora.h │ │ ├── formPlant.cpp │ │ ├── formPlant.h │ │ ├── tools.cpp │ │ └── tools.h │ ├── georges_convert │ │ ├── common.h │ │ ├── form.cpp │ │ ├── form.h │ │ ├── form_body_elt.cpp │ │ ├── form_body_elt.h │ │ ├── form_body_elt_atom.cpp │ │ ├── form_body_elt_atom.h │ │ ├── form_body_elt_list.cpp │ │ ├── form_body_elt_list.h │ │ ├── form_body_elt_struct.cpp │ │ ├── form_body_elt_struct.h │ │ ├── form_file.cpp │ │ ├── form_file.h │ │ ├── form_head.cpp │ │ ├── form_head.h │ │ ├── form_loader.cpp │ │ ├── form_loader.h │ │ ├── georges_convert.cpp │ │ ├── georges_loader.cpp │ │ ├── georges_loader.h │ │ ├── item.cpp │ │ ├── item.h │ │ ├── item_elt.cpp │ │ ├── item_elt.h │ │ ├── item_elt_atom.cpp │ │ ├── item_elt_atom.h │ │ ├── item_elt_list.cpp │ │ ├── item_elt_list.h │ │ ├── item_elt_struct.cpp │ │ ├── item_elt_struct.h │ │ ├── item_loader.cpp │ │ ├── item_loader.h │ │ ├── mold_elt.cpp │ │ ├── mold_elt.h │ │ ├── mold_elt_define.cpp │ │ ├── mold_elt_define.h │ │ ├── mold_elt_define_list.cpp │ │ ├── mold_elt_define_list.h │ │ ├── mold_elt_type.cpp │ │ ├── mold_elt_type.h │ │ ├── mold_elt_type_list.cpp │ │ ├── mold_elt_type_list.h │ │ ├── mold_loader.cpp │ │ ├── mold_loader.h │ │ ├── stdgeorgesconvert.cpp │ │ ├── stdgeorgesconvert.h │ │ ├── string_ex.cpp │ │ ├── string_ex.h │ │ ├── type_unit.cpp │ │ ├── type_unit.h │ │ ├── type_unit_double.cpp │ │ ├── type_unit_double.h │ │ ├── type_unit_file_name.cpp │ │ ├── type_unit_file_name.h │ │ ├── type_unit_int_signed.cpp │ │ ├── type_unit_int_signed.h │ │ ├── type_unit_int_unsigned.cpp │ │ ├── type_unit_int_unsigned.h │ │ ├── type_unit_string.cpp │ │ └── type_unit_string.h │ ├── georges_dll │ │ ├── CMakeLists.txt │ │ ├── Resource.h │ │ ├── action.cpp │ │ ├── action.h │ │ ├── base_dialog.cpp │ │ ├── base_dialog.h │ │ ├── child_frm.cpp │ │ ├── child_frm.h │ │ ├── color_wnd.cpp │ │ ├── color_wnd.h │ │ ├── cool_dialog_bar.cpp │ │ ├── cool_dialog_bar.h │ │ ├── dfn_dialog.cpp │ │ ├── dfn_dialog.h │ │ ├── displayer.cpp │ │ ├── displayer.h │ │ ├── edit_list_ctrl.cpp │ │ ├── edit_list_ctrl.h │ │ ├── file_browser_dialog.cpp │ │ ├── file_browser_dialog.h │ │ ├── file_tree_view.cpp │ │ ├── file_tree_view.h │ │ ├── form_dialog.cpp │ │ ├── form_dialog.h │ │ ├── georges_debug.def │ │ ├── georges_dll_d.exp │ │ ├── georges_dll_r.exp │ │ ├── georges_edit.cpp │ │ ├── georges_edit.h │ │ ├── georges_edit.html │ │ ├── georges_edit.rc │ │ ├── georges_edit_dll.def │ │ ├── georges_edit_doc.cpp │ │ ├── georges_edit_doc.h │ │ ├── georges_edit_view.cpp │ │ ├── georges_edit_view.h │ │ ├── georges_implementation.cpp │ │ ├── georges_interface.h │ │ ├── georges_release.def │ │ ├── header_dialog.cpp │ │ ├── header_dialog.h │ │ ├── icon_wnd.cpp │ │ ├── icon_wnd.h │ │ ├── imagelist_ex.cpp │ │ ├── imagelist_ex.h │ │ ├── left_view.cpp │ │ ├── left_view.h │ │ ├── main_frm.cpp │ │ ├── main_frm.h │ │ ├── memory_combo_box.cpp │ │ ├── memory_combo_box.h │ │ ├── output_console_dlg.cpp │ │ ├── output_console_dlg.h │ │ ├── plugin_interface.h │ │ ├── reg_shell_ext.cpp │ │ ├── reg_shell_ext.h │ │ ├── res │ │ │ ├── Toolbar.bmp │ │ │ ├── array.ico │ │ │ ├── georges_edit.rc2 │ │ │ ├── header.ico │ │ │ ├── hold.ico │ │ │ ├── root.ico │ │ │ ├── struct.ico │ │ │ ├── vstruct.ico │ │ │ ├── worldbuilder.ico │ │ │ ├── zen.ico │ │ │ └── zfee51.ico │ │ ├── settings_dialog.cpp │ │ ├── settings_dialog.h │ │ ├── splash_screen.cpp │ │ ├── splash_screen.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── type_dialog.cpp │ │ └── type_dialog.h │ ├── georges_editor_qt │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── georges_editor.cfg │ │ │ └── georges_editor_default.cfg │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── completer_line_edit.cpp │ │ │ ├── completer_line_edit.h │ │ │ ├── configuration.cpp │ │ │ ├── configuration.h │ │ │ ├── entity.cpp │ │ │ ├── entity.h │ │ │ ├── filesystem_model.cpp │ │ │ ├── filesystem_model.h │ │ │ ├── formdelegate.cpp │ │ │ ├── formdelegate.h │ │ │ ├── formitem.cpp │ │ │ ├── formitem.h │ │ │ ├── georges.cpp │ │ │ ├── georges.h │ │ │ ├── georges_dirtree_dialog.cpp │ │ │ ├── georges_dirtree_dialog.h │ │ │ ├── georges_dirtree_form.ui │ │ │ ├── georges_editor_qt.qrc │ │ │ ├── georges_splash.cpp │ │ │ ├── georges_splash.h │ │ │ ├── georges_treeview_dialog.cpp │ │ │ ├── georges_treeview_dialog.h │ │ │ ├── georges_treeview_form.ui │ │ │ ├── georgesform_model.cpp │ │ │ ├── georgesform_model.h │ │ │ ├── georgesform_proxy_model.cpp │ │ │ ├── georgesform_proxy_model.h │ │ │ ├── images │ │ │ ├── .directory │ │ │ ├── georges_logo.icns │ │ │ ├── georges_logo.png │ │ │ ├── go-down.png │ │ │ ├── go-up.png │ │ │ ├── khead.png │ │ │ ├── list-add.png │ │ │ ├── list-remove.png │ │ │ ├── mp_generic.png │ │ │ ├── nel.png │ │ │ ├── open-file.png │ │ │ ├── pqrticles.png │ │ │ └── preferences.png │ │ │ ├── log_dialog.cpp │ │ │ ├── log_dialog.h │ │ │ ├── log_form.ui │ │ │ ├── main.cpp │ │ │ ├── main_window.cpp │ │ │ ├── main_window.h │ │ │ ├── modules.cpp │ │ │ ├── modules.h │ │ │ ├── new_dialog.cpp │ │ │ ├── new_dialog.h │ │ │ ├── new_form.ui │ │ │ ├── objectviewer_dialog.cpp │ │ │ ├── objectviewer_dialog.h │ │ │ ├── objectviewer_form.ui │ │ │ ├── progress_dialog.cpp │ │ │ ├── progress_dialog.h │ │ │ ├── qt_displayer.cpp │ │ │ ├── qt_displayer.h │ │ │ ├── settings_dialog.cpp │ │ │ ├── settings_dialog.h │ │ │ ├── settings_form.ui │ │ │ ├── splash.ui │ │ │ ├── stdpch.cpp │ │ │ └── stdpch.h │ ├── georges_exe │ │ ├── CMakeLists.txt │ │ ├── dfn │ │ │ ├── _typ.dfn │ │ │ ├── _type.typ │ │ │ ├── boolean.typ │ │ │ ├── filename.typ │ │ │ ├── float.typ │ │ │ ├── sint16.typ │ │ │ ├── sint32.typ │ │ │ ├── sint64.typ │ │ │ ├── sint8.typ │ │ │ ├── string.typ │ │ │ ├── typ.dfn │ │ │ ├── uint16.typ │ │ │ ├── uint32.typ │ │ │ ├── uint64.typ │ │ │ └── uint8.typ │ │ ├── georges_exe.cpp │ │ ├── georges_exe.rc │ │ └── resource.h │ ├── georges_plugin_sound │ │ ├── CMakeLists.txt │ │ ├── PageBase.cpp │ │ ├── PageBase.h │ │ ├── PageBgFades.cpp │ │ ├── PageBgFades.h │ │ ├── PageBgFlags.cpp │ │ ├── PageBgFlags.h │ │ ├── PageComplex.cpp │ │ ├── PageComplex.h │ │ ├── PageComtext.cpp │ │ ├── PageComtext.h │ │ ├── PagePosition.cpp │ │ ├── PagePosition.h │ │ ├── PageSimple.cpp │ │ ├── PageSimple.h │ │ ├── bitmap1.bmp │ │ ├── bmp00001.bmp │ │ ├── georges_plugin_sound.clw │ │ ├── georges_plugin_sound.cpp │ │ ├── georges_plugin_sound.def │ │ ├── georges_plugin_sound.h │ │ ├── georges_plugin_sound.rc │ │ ├── listener_view.cpp │ │ ├── listener_view.h │ │ ├── loading_dialog.cpp │ │ ├── loading_dialog.h │ │ ├── res │ │ │ └── georges_plugin_sound.rc2 │ │ ├── resource.h │ │ ├── resource.hm │ │ ├── sound_dialog.cpp │ │ ├── sound_dialog.h │ │ ├── sound_document_plugin.cpp │ │ ├── sound_document_plugin.h │ │ ├── sound_plugin.cpp │ │ ├── sound_plugin.h │ │ ├── start.bmp │ │ ├── std_sound_plugin.h │ │ └── stop.bmp │ ├── georges_plugin_test │ │ ├── Resource.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── georges_plugin_test.cpp │ │ ├── georges_plugin_test.def │ │ ├── georges_plugin_test.h │ │ ├── georges_plugin_test.rc │ │ ├── res │ │ │ └── georges_plugin_test.rc2 │ │ ├── test_global_dialog.cpp │ │ ├── test_global_dialog.h │ │ ├── test_local_dialog.cpp │ │ └── test_local_dialog.h │ ├── icon_search │ │ ├── CMakeLists.txt │ │ ├── icon_search.cpp │ │ └── icon_search_default.cfg │ ├── install │ │ ├── Microsoft.VC90.MFC.manifest │ │ ├── create_levedesign_archive.bat │ │ ├── create_levedesign_data_archive.bat │ │ ├── georges.cfg │ │ ├── history.txt │ │ ├── ligoscape.cfg │ │ ├── mission_compiler.cfg │ │ ├── mount_l.bat │ │ ├── ui │ │ │ ├── actions.ico │ │ │ ├── alias.ico │ │ │ ├── audio.ico │ │ │ ├── audio_hiden.ico │ │ │ ├── bot_template_npc.ico │ │ │ ├── bot_template_npc_ml.ico │ │ │ ├── bot_template_outpost.ico │ │ │ ├── bot_template_outpost_ml.ico │ │ │ ├── building_destination.ico │ │ │ ├── building_instance.ico │ │ │ ├── building_template.ico │ │ │ ├── building_trigger.ico │ │ │ ├── cell.ico │ │ │ ├── cell_zone.ico │ │ │ ├── cell_zones.ico │ │ │ ├── continent.ico │ │ │ ├── deposit.ico │ │ │ ├── depositzone.ico │ │ │ ├── dyn_answer.ico │ │ │ ├── dyn_fauna_zone.ico │ │ │ ├── dyn_npc_zone.ico │ │ │ ├── dyn_road.ico │ │ │ ├── dynamic_region.ico │ │ │ ├── dynamic_system.ico │ │ │ ├── emissary.ico │ │ │ ├── env_fx.ico │ │ │ ├── env_fx_zone.ico │ │ │ ├── event.ico │ │ │ ├── event_action.ico │ │ │ ├── event_handler.ico │ │ │ ├── event_handler_action.ico │ │ │ ├── exclude.ico │ │ │ ├── fauna.ico │ │ │ ├── fauna_event_handler.ico │ │ │ ├── fauna_event_handler_action.ico │ │ │ ├── fauna_generic_place.ico │ │ │ ├── fauna_state.ico │ │ │ ├── fauna_state_event_handler.ico │ │ │ ├── flat_dyn_chat_continue.ico │ │ │ ├── flat_dyn_chat_fail.ico │ │ │ ├── flat_dyn_chat_retry.ico │ │ │ ├── flat_dyn_chat_skippable.ico │ │ │ ├── flora.ico │ │ │ ├── flora_exclude.ico │ │ │ ├── flora_path.ico │ │ │ ├── flora_zone.ico │ │ │ ├── food.ico │ │ │ ├── gear.ico │ │ │ ├── geom_items.ico │ │ │ ├── group.ico │ │ │ ├── group_descriptions.ico │ │ │ ├── group_fauna.ico │ │ │ ├── group_fauna_ex.ico │ │ │ ├── group_template.ico │ │ │ ├── group_template_fauna.ico │ │ │ ├── group_template_npc.ico │ │ │ ├── group_template_npc_ml.ico │ │ │ ├── group_template_outpost.ico │ │ │ ├── group_template_outpost_ml.ico │ │ │ ├── handon.ico │ │ │ ├── jump_to.ico │ │ │ ├── kami_base.ico │ │ │ ├── kami_deposit.ico │ │ │ ├── kami_group.ico │ │ │ ├── kami_guardian.ico │ │ │ ├── kami_manager.ico │ │ │ ├── kami_preacher.ico │ │ │ ├── karavan_base.ico │ │ │ ├── karavan_emissary.ico │ │ │ ├── karavan_group.ico │ │ │ ├── karavan_guard.ico │ │ │ ├── karavan_manager.ico │ │ │ ├── linear_dyn_chat_continue.ico │ │ │ ├── linear_dyn_chat_fail.ico │ │ │ ├── linear_dyn_chat_retry.ico │ │ │ ├── linear_dyn_chat_skippable.ico │ │ │ ├── manager.ico │ │ │ ├── mission.ico │ │ │ ├── mission_bot_chat_step.ico │ │ │ ├── mission_objectives.ico │ │ │ ├── mission_reward.ico │ │ │ ├── mission_reward_group.ico │ │ │ ├── mission_step.ico │ │ │ ├── mission_tree.ico │ │ │ ├── missions_editor.ico │ │ │ ├── no_answer.ico │ │ │ ├── no_go.ico │ │ │ ├── npc.ico │ │ │ ├── npc_bot.ico │ │ │ ├── npc_event_handler.ico │ │ │ ├── npc_event_handler_action.ico │ │ │ ├── npc_folder.ico │ │ │ ├── npc_group.ico │ │ │ ├── npc_group_event_handler.ico │ │ │ ├── npc_manager.ico │ │ │ ├── npc_punctual_state.ico │ │ │ ├── npc_route.ico │ │ │ ├── npc_state_chat.ico │ │ │ ├── npc_state_event_handler.ico │ │ │ ├── npc_state_profile.ico │ │ │ ├── npc_zone.ico │ │ │ ├── outpost.ico │ │ │ ├── outpost_manager.ico │ │ │ ├── outpost_spawn_zone.ico │ │ │ ├── path.ico │ │ │ ├── people.ico │ │ │ ├── place.ico │ │ │ ├── point.ico │ │ │ ├── population.ico │ │ │ ├── preacher.ico │ │ │ ├── raw_material_flora.ico │ │ │ ├── raw_material_ground.ico │ │ │ ├── raw_material_season.ico │ │ │ ├── region.ico │ │ │ ├── respawn_point.ico │ │ │ ├── respawn_points.ico │ │ │ ├── rest.ico │ │ │ ├── result_no.ico │ │ │ ├── result_yes.ico │ │ │ ├── room_destination.ico │ │ │ ├── room_template.ico │ │ │ ├── sample_bank_zone.ico │ │ │ ├── sample_banks.ico │ │ │ ├── shield.ico │ │ │ ├── sound_path.ico │ │ │ ├── sound_point.ico │ │ │ ├── sound_zone.ico │ │ │ ├── sounds.ico │ │ │ ├── spawn.ico │ │ │ ├── spawn_base.ico │ │ │ ├── stable.ico │ │ │ ├── stable_entry.ico │ │ │ ├── stables.ico │ │ │ ├── state.ico │ │ │ ├── state_event_handler.ico │ │ │ ├── state_machine.ico │ │ │ ├── state_machine_list.ico │ │ │ ├── step.ico │ │ │ ├── step_any.ico │ │ │ ├── step_dyn_chat.ico │ │ │ ├── step_failure.ico │ │ │ ├── step_if.ico │ │ │ ├── step_ooo.ico │ │ │ ├── teleport_dest.ico │ │ │ ├── teleport_destination.ico │ │ │ ├── teleport_dests.ico │ │ │ ├── teleport_spawn_zone.ico │ │ │ ├── teleport_trigger.ico │ │ │ ├── temp.ico │ │ │ ├── time.ico │ │ │ ├── var_creature.ico │ │ │ ├── var_faction.ico │ │ │ ├── var_item.ico │ │ │ ├── var_npc.ico │ │ │ ├── var_place.ico │ │ │ ├── var_quality.ico │ │ │ ├── var_quantity.ico │ │ │ ├── var_text.ico │ │ │ └── zone.ico │ │ ├── world_editor.html │ │ ├── world_editor_continents │ │ │ └── newbieland.worldedit │ │ ├── world_editor_plugin.cfg │ │ └── world_editor_script.xml │ ├── ld_0_clean.bat │ ├── ld_1_get.bat │ ├── ld_2_build.bat │ ├── ld_3_make_distrib.bat │ ├── master │ │ ├── ChooseDir.cpp │ │ ├── ChooseDir.h │ │ ├── ChooseTag.cpp │ │ ├── ChooseTag.h │ │ ├── ContinentCfg.cpp │ │ ├── ContinentCfg.h │ │ ├── ContinentPropertiesDlg.cpp │ │ ├── ContinentPropertiesDlg.h │ │ ├── ExportCBDlg.cpp │ │ ├── ExportCBDlg.h │ │ ├── ExportDlg.cpp │ │ ├── ExportDlg.h │ │ ├── MainFrm.cpp │ │ ├── MainFrm.h │ │ ├── MasterTree.cpp │ │ ├── MasterTree.h │ │ ├── NameEditDlg.cpp │ │ ├── NameEditDlg.h │ │ ├── ReadMe.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── easy_cfg.cpp │ │ ├── easy_cfg.h │ │ ├── master.cpp │ │ ├── master.h │ │ ├── master.rc │ │ ├── n019003l.pfb │ │ ├── res │ │ │ ├── backup.ico │ │ │ ├── continents.ico │ │ │ ├── file.ico │ │ │ ├── folder.ico │ │ │ ├── master.ico │ │ │ ├── master.rc2 │ │ │ ├── masterDoc.ico │ │ │ ├── regions.ico │ │ │ └── trash.ico │ │ └── resource.h │ ├── mission_compiler_fe │ │ ├── AddPathDlg.cpp │ │ ├── AddPathDlg.h │ │ ├── CMakeLists.txt │ │ ├── CompilDialog.cpp │ │ ├── CompilDialog.h │ │ ├── Resource.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── dialog_mode.cpp │ │ ├── dialog_mode.h │ │ ├── mission_compiler_fe.cpp │ │ ├── mission_compiler_fe.h │ │ ├── mission_compiler_fe.rc │ │ ├── mission_compiler_feDlg.cpp │ │ ├── mission_compiler_feDlg.h │ │ ├── res │ │ │ ├── icon1.ico │ │ │ ├── icon_fil.ico │ │ │ ├── mission_compiler_fe.ico │ │ │ └── mission_compiler_fe.rc2 │ │ ├── test_compilateur.primitive │ │ ├── test_compilateur.script │ │ └── test_compilateur_gn.primitive │ ├── mission_compiler_lib │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── mission_compiler.cpp │ │ ├── mission_compiler.h │ │ ├── step.h │ │ ├── step_content.cpp │ │ ├── steps.cpp │ │ └── variables.cpp │ ├── mp_generator │ │ ├── CMakeLists.txt │ │ ├── creature_models.csv │ │ ├── main.cpp │ │ ├── moulinette.h │ │ ├── mp_generator.doc │ │ ├── raw_material_generation.cfg │ │ ├── rm_fam_prop.csv │ │ ├── rm_item_parts.csv │ │ ├── utils.h │ │ └── v4_source_tables2.xls │ ├── named_items_2_csv │ │ ├── CMakeLists.txt │ │ ├── make_named_items_csv.bat │ │ ├── make_named_items_txt.bat │ │ ├── named_items.csv │ │ ├── named_items.script │ │ └── named_items_2_csv.cpp │ ├── prim_export │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ └── prim_export.cfg │ ├── primitive_id_assignator │ │ ├── primitive_id_assignator.cfg │ │ └── primitive_id_assignator.cpp │ ├── test_root │ │ ├── ZoneBitmaps │ │ │ └── _UNUSED_.TGA │ │ ├── common │ │ │ └── dfn │ │ │ │ ├── _typ.dfn │ │ │ │ ├── _type.typ │ │ │ │ ├── boolean.typ │ │ │ │ ├── filename.typ │ │ │ │ ├── float.typ │ │ │ │ ├── plant.dfn │ │ │ │ ├── plant_instance.dfn │ │ │ │ ├── sint16.typ │ │ │ │ ├── sint32.typ │ │ │ │ ├── sint64.typ │ │ │ │ ├── sint8.typ │ │ │ │ ├── string.typ │ │ │ │ ├── typ.dfn │ │ │ │ ├── uint16.typ │ │ │ │ ├── uint32.typ │ │ │ │ ├── uint64.typ │ │ │ │ ├── uint8.typ │ │ │ │ └── vegetable.dfn │ │ └── ligoscape.cfg │ ├── uni_conv │ │ ├── CMakeLists.txt │ │ └── uni_conv.cpp │ ├── update_tools.bat │ ├── variable_parser │ │ ├── ReadMe.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── lua_helper.cpp │ │ ├── lua_helper.h │ │ ├── lua_helper_inline.h │ │ ├── res │ │ │ ├── variable_parser.ico │ │ │ └── variable_parser.rc2 │ │ ├── resource.h │ │ ├── variable_parser.cpp │ │ ├── variable_parser.h │ │ ├── variable_parser.rc │ │ ├── variable_parserDlg.cpp │ │ └── variable_parserDlg.h │ └── world_editor │ │ ├── CMakeLists.txt │ │ ├── land_export │ │ ├── CMakeLists.txt │ │ ├── land_export.cfg │ │ └── main.cpp │ │ ├── land_export_lib │ │ ├── CMakeLists.txt │ │ ├── export.cpp │ │ └── export.h │ │ ├── ligoscape.cfg │ │ ├── ligoscape.txt │ │ ├── world_editor │ │ ├── CMakeLists.txt │ │ ├── action.cpp │ │ ├── action.h │ │ ├── builder_logic.cpp │ │ ├── builder_logic.h │ │ ├── builder_zone.cpp │ │ ├── builder_zone.h │ │ ├── builder_zone_region.cpp │ │ ├── builder_zone_region.h │ │ ├── color_button.cpp │ │ ├── color_button.h │ │ ├── custom_snapshot.cpp │ │ ├── custom_snapshot.h │ │ ├── dialog_properties.cpp │ │ ├── dialog_properties.h │ │ ├── display.cpp │ │ ├── display.h │ │ ├── editor_primitive.cpp │ │ ├── editor_primitive.h │ │ ├── export_cb_dlg.cpp │ │ ├── export_cb_dlg.h │ │ ├── export_dlg.cpp │ │ ├── export_dlg.h │ │ ├── external_editor.cpp │ │ ├── external_editor.h │ │ ├── file_dialog_ex.cpp │ │ ├── file_dialog_ex.h │ │ ├── find_primitive_dlg.cpp │ │ ├── find_primitive_dlg.h │ │ ├── generate_dlg.cpp │ │ ├── generate_dlg.h │ │ ├── generate_primitive.cpp │ │ ├── generate_primitive.h │ │ ├── goto_dialog.cpp │ │ ├── goto_dialog.h │ │ ├── imagelist_ex.cpp │ │ ├── imagelist_ex.h │ │ ├── main_frm.cpp │ │ ├── main_frm.h │ │ ├── move_dlg.cpp │ │ ├── move_dlg.h │ │ ├── my_list_box.cpp │ │ ├── my_list_box.h │ │ ├── name_dlg.cpp │ │ ├── name_dlg.h │ │ ├── pacs.cpp │ │ ├── pacs.h │ │ ├── plugin_interface.h │ │ ├── primitive_configuration_dlg.cpp │ │ ├── primitive_configuration_dlg.h │ │ ├── primitive_view.cpp │ │ ├── primitive_view.h │ │ ├── project_settings.cpp │ │ ├── project_settings.h │ │ ├── res │ │ │ ├── Toolbar.bmp │ │ │ ├── WorldEditor.ico │ │ │ ├── _Legoscape edit.ico │ │ │ ├── _Selecteur de Zone.ico │ │ │ ├── _icon1.ico │ │ │ ├── _patatoid edit.ico │ │ │ ├── add_point.cur │ │ │ ├── copy.cur │ │ │ ├── erro.ico │ │ │ ├── folder_closed.ico │ │ │ ├── folder_h.ico │ │ │ ├── folder_hidden.ico │ │ │ ├── folder_opened.ico │ │ │ ├── hand.cur │ │ │ ├── insert_point.cur │ │ │ ├── line_closed.ico │ │ │ ├── line_hidden.ico │ │ │ ├── line_opened.ico │ │ │ ├── move.cur │ │ │ ├── point_closed.ico │ │ │ ├── point_hidden.ico │ │ │ ├── point_opened.ico │ │ │ ├── property.ico │ │ │ ├── property_closed.ico │ │ │ ├── property_hidden.ico │ │ │ ├── property_opened.ico │ │ │ ├── radius.cur │ │ │ ├── root.ico │ │ │ ├── root_closed.ico │ │ │ ├── root_hidden.ico │ │ │ ├── root_opened.ico │ │ │ ├── rotate.cur │ │ │ ├── scale.cur │ │ │ ├── select.cur │ │ │ ├── select_copy.cur │ │ │ ├── turn.cur │ │ │ ├── world_editor.ico │ │ │ ├── world_editor.rc2 │ │ │ ├── world_editor_doc.ico │ │ │ ├── zone_closed.ico │ │ │ ├── zone_hidden.ico │ │ │ ├── zone_opened.ico │ │ │ └── zoom.cur │ │ ├── resource.h │ │ ├── select_by_location.cpp │ │ ├── select_by_location.h │ │ ├── splash_screen.cpp │ │ ├── splash_screen.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── tools_logic.cpp │ │ ├── tools_logic.h │ │ ├── tools_zone.cpp │ │ ├── tools_zone.h │ │ ├── type_dlg.cpp │ │ ├── type_dlg.h │ │ ├── type_manager_dlg.cpp │ │ ├── type_manager_dlg.h │ │ ├── type_sel_dlg.cpp │ │ ├── type_sel_dlg.h │ │ ├── update_continents.bat │ │ ├── world_editor.cpp │ │ ├── world_editor.h │ │ ├── world_editor.rc │ │ ├── world_editor_doc.cpp │ │ ├── world_editor_doc.h │ │ ├── world_editor_georges.cfg │ │ ├── world_editor_view.cpp │ │ └── world_editor_view.h │ │ ├── world_editor_fauna_graph_plugin │ │ ├── CMakeLists.txt │ │ ├── DialogFlags.cpp │ │ ├── DialogFlags.h │ │ ├── ReadMe.txt │ │ ├── Resource.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── fauna_flags.tga │ │ ├── plugin.cpp │ │ ├── plugin.h │ │ ├── res │ │ │ └── world_editor_fauna_graph_plugin.rc2 │ │ ├── world_editor_fauna_graph_plugin.cpp │ │ ├── world_editor_fauna_graph_plugin.h │ │ └── world_editor_fauna_graph_plugin.rc │ │ ├── world_editor_graph_plugin │ │ ├── CMakeLists.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── graph_plugin.cpp │ │ ├── graph_plugin.h │ │ ├── res │ │ │ └── world_editor_graph_plugin.rc2 │ │ ├── resource.h │ │ ├── world_editor_graph_plugin.cpp │ │ ├── world_editor_graph_plugin.h │ │ ├── world_editor_graph_plugin.rc │ │ ├── world_editor_graph_plugin_dlg.cpp │ │ └── world_editor_graph_plugin_dlg.h │ │ ├── world_editor_plugin │ │ ├── CMakeLists.txt │ │ ├── DialogFlags.cpp │ │ ├── DialogFlags.h │ │ ├── LoadDialog.cpp │ │ ├── LoadDialog.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── WorldEditorPlugin.cfg │ │ ├── plugin.cpp │ │ ├── plugin.h │ │ ├── resource.h │ │ ├── world_editor_plugin.rc │ │ └── world_editor_scriptPLAYER.xml │ │ ├── world_editor_primitive_plugin │ │ ├── CMakeLists.txt │ │ ├── primitive_plugin.cpp │ │ └── primitive_plugin.h │ │ ├── world_editor_shard_monitor_plugin │ │ ├── CMakeLists.txt │ │ ├── DialogFlags.cpp │ │ ├── DialogFlags.h │ │ ├── DialogLogin.cpp │ │ ├── DialogLogin.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── entity_display_info.h │ │ ├── entity_icons.tga │ │ ├── list_box_color.cpp │ │ ├── list_box_color.h │ │ ├── memory_combo_box.cpp │ │ ├── memory_combo_box.h │ │ ├── plugin.cpp │ │ ├── plugin.h │ │ ├── resource.h │ │ ├── world_editor_shard_monitor_plugin.rc │ │ └── world_editor_shard_monitor_plugin.xml │ │ └── world_editor_sound_plugin │ │ ├── CMakeLists.txt │ │ ├── DialogFlags.cpp │ │ ├── DialogFlags.h │ │ ├── LoadDialog.cpp │ │ ├── LoadDialog.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── res │ │ ├── bitmap1.bmp │ │ ├── bmp00001.bmp │ │ ├── bmp00002.bmp │ │ ├── bmp00003.bmp │ │ └── toolbar1.bmp │ │ ├── resource.h │ │ ├── sound_plugin.cpp │ │ ├── sound_plugin.h │ │ └── world_editor_sound_plugin.rc │ ├── make_alias_file │ ├── CMakeLists.txt │ ├── make_alias_file.cfg │ └── make_alias_file.cpp │ ├── make_anim_by_race │ ├── CMakeLists.txt │ └── main.cpp │ ├── make_anim_melee_impact │ ├── CMakeLists.txt │ ├── anim.txt │ └── main.cpp │ ├── occ2huff │ ├── CMakeLists.txt │ └── occ2huff.cpp │ ├── patch_gen │ ├── CMakeLists.txt │ ├── patch_gen_common.cpp │ ├── patch_gen_main.cpp │ ├── patch_gen_main.h │ ├── patch_gen_service.cpp │ └── patch_gen_service.h │ ├── pd_parser │ ├── CMakeLists.txt │ ├── cpp_output.h │ ├── main.cpp │ ├── parse_node.h │ ├── parser.cpp │ ├── parser.h │ ├── parser_rules.cpp │ ├── parser_rules.h │ ├── templatizer.cpp │ ├── templatizer.h │ └── tokenizer.h │ ├── pdr_util │ ├── CMakeLists.txt │ └── pdr_util.cpp │ ├── phrase_generator │ ├── CMakeLists.txt │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── phrase_generator.cpp │ ├── skill_tree.cpp │ ├── skill_tree.h │ └── sstring.h │ ├── reynolds │ ├── reynolds_manager.cpp │ ├── reynolds_manager.h │ ├── stdpch.cpp │ ├── stdpch.h │ ├── track.cpp │ └── track.h │ ├── scripts │ ├── linux │ │ ├── build │ │ ├── buildmode │ │ ├── clean_log.sh │ │ ├── generate_packed_sheets.sh │ │ ├── loop_aes.sh │ │ ├── make_all │ │ ├── ryzom_domain_screen_wrapper.sh │ │ ├── service_launcher.sh │ │ ├── shard │ │ └── utilities │ └── windows │ │ └── tools │ │ └── replace_vista_icon.exe │ ├── server │ ├── CMakeLists.txt │ ├── admin │ │ ├── common.php │ │ ├── config.php │ │ ├── crons │ │ │ ├── cron_harddisk.php │ │ │ ├── cron_harddisk.sh │ │ │ └── index.html │ │ ├── docs │ │ │ └── shard_restart │ │ │ │ ├── Filelist.xml │ │ │ │ ├── H38.css │ │ │ │ ├── H70_2.htm │ │ │ │ ├── HOWTO_Restarting_Ryzom_Game_Shards.htm │ │ │ │ ├── Hd36.xml │ │ │ │ ├── Hf69.htm │ │ │ │ ├── Hg39_1.gif │ │ │ │ ├── Hg39_1.htm │ │ │ │ ├── Hg41_2.gif │ │ │ │ ├── Hg41_2.htm │ │ │ │ ├── Hg43_3.gif │ │ │ │ ├── Hg43_3.htm │ │ │ │ ├── Hg45_4.gif │ │ │ │ ├── Hg45_4.htm │ │ │ │ ├── Hg47_5.gif │ │ │ │ ├── Hg47_5.htm │ │ │ │ ├── Hg49_6.gif │ │ │ │ ├── Hg49_6.htm │ │ │ │ ├── Hg51_7.gif │ │ │ │ ├── Hg51_7.htm │ │ │ │ ├── Hg53_8.gif │ │ │ │ ├── Hg53_8.htm │ │ │ │ ├── Hg55_9.gif │ │ │ │ ├── Hg55_9.htm │ │ │ │ ├── Hg57_10.gif │ │ │ │ ├── Hg57_10.htm │ │ │ │ ├── Hg59_11.gif │ │ │ │ ├── Hg59_11.htm │ │ │ │ ├── Hg61_12.gif │ │ │ │ ├── Hg61_12.htm │ │ │ │ ├── Hn68.htm │ │ │ │ ├── Hu37.js │ │ │ │ ├── Hz63.htm │ │ │ │ ├── lt_off.gif │ │ │ │ ├── lt_over.gif │ │ │ │ ├── rt_off.gif │ │ │ │ └── rt_over.gif │ │ ├── functions_auth.php │ │ ├── functions_common.php │ │ ├── functions_mysql.php │ │ ├── functions_tool_administration.php │ │ ├── functions_tool_applications.php │ │ ├── functions_tool_event_entities.php │ │ ├── functions_tool_graphs.php │ │ ├── functions_tool_guild_locator.php │ │ ├── functions_tool_log_analyser.php │ │ ├── functions_tool_main.php │ │ ├── functions_tool_mfs.php │ │ ├── functions_tool_notes.php │ │ ├── functions_tool_player_locator.php │ │ ├── functions_tool_preferences.php │ │ ├── graphs_output │ │ │ └── placeholder │ │ ├── imgs │ │ │ ├── bg_live.png │ │ │ ├── getfirefox.png │ │ │ ├── icon_admin.gif │ │ │ ├── icon_entity.gif │ │ │ ├── icon_graphs.gif │ │ │ ├── icon_guild_locator.gif │ │ │ ├── icon_log_analyser.gif │ │ │ ├── icon_logout.gif │ │ │ ├── icon_main.gif │ │ │ ├── icon_notes.gif │ │ │ ├── icon_player_locator.gif │ │ │ ├── icon_preferences.gif │ │ │ ├── icon_unknown.png │ │ │ └── nel.gif │ │ ├── index.php │ │ ├── jpgraph │ │ │ ├── flags.dat │ │ │ ├── flags_thumb100x100.dat │ │ │ ├── flags_thumb35x35.dat │ │ │ ├── flags_thumb60x60.dat │ │ │ ├── imgdata_balls.inc │ │ │ ├── imgdata_bevels.inc │ │ │ ├── imgdata_diamonds.inc │ │ │ ├── imgdata_pushpins.inc │ │ │ ├── imgdata_squares.inc │ │ │ ├── imgdata_stars.inc │ │ │ ├── jpg-config.inc │ │ │ ├── jpgraph.php │ │ │ ├── jpgraph_antispam-digits.php │ │ │ ├── jpgraph_antispam.php │ │ │ ├── jpgraph_bar.php │ │ │ ├── jpgraph_canvas.php │ │ │ ├── jpgraph_canvtools.php │ │ │ ├── jpgraph_date.php │ │ │ ├── jpgraph_error.php │ │ │ ├── jpgraph_flags.php │ │ │ ├── jpgraph_gantt.php │ │ │ ├── jpgraph_gb2312.php │ │ │ ├── jpgraph_gradient.php │ │ │ ├── jpgraph_iconplot.php │ │ │ ├── jpgraph_imgtrans.php │ │ │ ├── jpgraph_line.php │ │ │ ├── jpgraph_log.php │ │ │ ├── jpgraph_pie.php │ │ │ ├── jpgraph_pie3d.php │ │ │ ├── jpgraph_plotband.php │ │ │ ├── jpgraph_plotmark.inc │ │ │ ├── jpgraph_polar.php │ │ │ ├── jpgraph_radar.php │ │ │ ├── jpgraph_regstat.php │ │ │ ├── jpgraph_scatter.php │ │ │ ├── jpgraph_stock.php │ │ │ ├── jpgraph_utils.inc │ │ │ └── lang │ │ │ │ └── en.inc.php │ │ ├── logs │ │ │ └── empty.txt │ │ ├── nel │ │ │ ├── admin_modules_itf.php │ │ │ └── nel_message.php │ │ ├── neltool.css │ │ ├── overlib │ │ │ ├── handgrab.gif │ │ │ ├── makemini.pl │ │ │ ├── overlib.js │ │ │ ├── overlib_anchor.js │ │ │ ├── overlib_anchor_mini.js │ │ │ ├── overlib_draggable.js │ │ │ ├── overlib_draggable_mini.js │ │ │ └── overlib_mini.js │ │ ├── scripts │ │ │ ├── index.html │ │ │ ├── restart_sequence.php │ │ │ └── run_script.sh │ │ ├── smarty │ │ │ ├── Config_File.class.php │ │ │ ├── Smarty.class.php │ │ │ ├── Smarty_Compiler.class.php │ │ │ ├── debug.tpl │ │ │ ├── internals │ │ │ │ ├── core.assemble_plugin_filepath.php │ │ │ │ ├── core.assign_smarty_interface.php │ │ │ │ ├── core.create_dir_structure.php │ │ │ │ ├── core.display_debug_console.php │ │ │ │ ├── core.get_include_path.php │ │ │ │ ├── core.get_microtime.php │ │ │ │ ├── core.get_php_resource.php │ │ │ │ ├── core.is_secure.php │ │ │ │ ├── core.is_trusted.php │ │ │ │ ├── core.load_plugins.php │ │ │ │ ├── core.load_resource_plugin.php │ │ │ │ ├── core.process_cached_inserts.php │ │ │ │ ├── core.process_compiled_include.php │ │ │ │ ├── core.read_cache_file.php │ │ │ │ ├── core.rm_auto.php │ │ │ │ ├── core.rmdir.php │ │ │ │ ├── core.run_insert_handler.php │ │ │ │ ├── core.smarty_include_php.php │ │ │ │ ├── core.write_cache_file.php │ │ │ │ ├── core.write_compiled_include.php │ │ │ │ ├── core.write_compiled_resource.php │ │ │ │ └── core.write_file.php │ │ │ └── plugins │ │ │ │ ├── block.textformat.php │ │ │ │ ├── compiler.assign.php │ │ │ │ ├── function.assign_debug_info.php │ │ │ │ ├── function.config_load.php │ │ │ │ ├── function.counter.php │ │ │ │ ├── function.cycle.php │ │ │ │ ├── function.debug.php │ │ │ │ ├── function.eval.php │ │ │ │ ├── function.fetch.php │ │ │ │ ├── function.html_checkboxes.php │ │ │ │ ├── function.html_image.php │ │ │ │ ├── function.html_options.php │ │ │ │ ├── function.html_radios.php │ │ │ │ ├── function.html_select_date.php │ │ │ │ ├── function.html_select_time.php │ │ │ │ ├── function.html_table.php │ │ │ │ ├── function.mailto.php │ │ │ │ ├── function.math.php │ │ │ │ ├── function.popup.php │ │ │ │ ├── function.popup_init.php │ │ │ │ ├── function.substr.php │ │ │ │ ├── modifier.capitalize.php │ │ │ │ ├── modifier.cat.php │ │ │ │ ├── modifier.count_characters.php │ │ │ │ ├── modifier.count_paragraphs.php │ │ │ │ ├── modifier.count_sentences.php │ │ │ │ ├── modifier.count_words.php │ │ │ │ ├── modifier.date_format.php │ │ │ │ ├── modifier.debug_print_var.php │ │ │ │ ├── modifier.default.php │ │ │ │ ├── modifier.escape.php │ │ │ │ ├── modifier.indent.php │ │ │ │ ├── modifier.lower.php │ │ │ │ ├── modifier.nl2br.php │ │ │ │ ├── modifier.regex_replace.php │ │ │ │ ├── modifier.replace.php │ │ │ │ ├── modifier.spacify.php │ │ │ │ ├── modifier.string_format.php │ │ │ │ ├── modifier.strip.php │ │ │ │ ├── modifier.strip_tags.php │ │ │ │ ├── modifier.truncate.php │ │ │ │ ├── modifier.upper.php │ │ │ │ ├── modifier.wordwrap.php │ │ │ │ ├── outputfilter.trimwhitespace.php │ │ │ │ ├── shared.escape_special_chars.php │ │ │ │ └── shared.make_timestamp.php │ │ ├── templates │ │ │ ├── default │ │ │ │ ├── _index.tpl │ │ │ │ ├── index.tpl │ │ │ │ ├── index_login.tpl │ │ │ │ ├── index_restart_sequence.tpl │ │ │ │ ├── page_footer.tpl │ │ │ │ ├── page_footer_light.tpl │ │ │ │ ├── page_header.tpl │ │ │ │ ├── page_header_light.tpl │ │ │ │ ├── tool_actions.tpl │ │ │ │ ├── tool_administration.tpl │ │ │ │ ├── tool_administration_applications.tpl │ │ │ │ ├── tool_administration_domains.tpl │ │ │ │ ├── tool_administration_groups.tpl │ │ │ │ ├── tool_administration_logs.tpl │ │ │ │ ├── tool_administration_restarts.tpl │ │ │ │ ├── tool_administration_shards.tpl │ │ │ │ ├── tool_administration_users.tpl │ │ │ │ ├── tool_administration_users.tpl.backup │ │ │ │ ├── tool_event_entities.tpl │ │ │ │ ├── tool_graphs.tpl │ │ │ │ ├── tool_graphs_ccu.tpl │ │ │ │ ├── tool_graphs_hires.tpl │ │ │ │ ├── tool_graphs_tech.tpl │ │ │ │ ├── tool_guild_locator.tpl │ │ │ │ ├── tool_log_analyser.tpl │ │ │ │ ├── tool_log_analyser_file_view.tpl │ │ │ │ ├── tool_mfs.tpl │ │ │ │ ├── tool_notes.tpl │ │ │ │ ├── tool_player_locator.tpl │ │ │ │ └── tool_preferences.tpl │ │ │ └── default_c │ │ │ │ └── placeholder │ │ ├── tool_actions.php │ │ ├── tool_administration.php │ │ ├── tool_event_entities.php │ │ ├── tool_graphs.php │ │ ├── tool_guild_locator.php │ │ ├── tool_log_analyser.php │ │ ├── tool_mfs.php │ │ ├── tool_notes.php │ │ ├── tool_player_locator.php │ │ └── tool_preferences.php │ ├── ai_build_wmap │ │ ├── CMakeLists.txt │ │ ├── build_proximity_maps.cpp │ │ └── main.cpp │ ├── brick_param_extractor │ │ └── brick_param_extractor.cpp │ ├── build_spell_sheet │ │ ├── build_spell_sheet.cpp │ │ └── build_spells.cfg │ ├── build_world_packed_col │ │ ├── CMakeLists.txt │ │ ├── build_world_packed_col.cfg │ │ ├── build_world_packed_col.cpp │ │ ├── builder_config.cpp │ │ ├── builder_config.h │ │ ├── packed_world_builder.cpp │ │ ├── packed_world_builder.h │ │ ├── std_header.cpp │ │ ├── std_header.h │ │ ├── test_col_world.cpp │ │ ├── village.cpp │ │ ├── village.h │ │ ├── zone_util.cpp │ │ └── zone_util.h │ ├── sql │ │ ├── ryzom_admin_default_data.sql │ │ ├── ryzom_default_data.sql │ │ └── ryzom_tables.sql │ └── www │ │ ├── login │ │ ├── client_install.php │ │ ├── config.php │ │ ├── email │ │ │ ├── RFC822.php │ │ │ ├── htmlMimeMail.php │ │ │ ├── mimePart.php │ │ │ └── smtp.php │ │ ├── login_service_itf.php │ │ ├── login_translations.php │ │ └── r2_login.php │ │ ├── ring │ │ ├── anim_session.php │ │ ├── cancel_session.php │ │ ├── close_session.php │ │ ├── edit_session.php │ │ ├── invite_pioneer.php │ │ ├── join_session.php │ │ ├── join_shard.php │ │ ├── mail_forum_itf.php │ │ ├── plan_edit_session.php │ │ ├── ring_session_manager_itf.php │ │ ├── send_plan_edit_session.php │ │ ├── session_tools.php │ │ ├── start_session.php │ │ └── welcome_service_itf.php │ │ ├── tools │ │ ├── domain_info.php │ │ ├── nel_message.php │ │ └── validate_cookie.php │ │ └── webtt │ │ ├── .gitignore │ │ ├── .htaccess │ │ ├── CakePHP_README │ │ ├── app │ │ ├── .htaccess │ │ ├── controllers │ │ │ ├── app_controller.php │ │ │ ├── comments_controller.php │ │ │ ├── components │ │ │ │ ├── empty │ │ │ │ └── path_resolver.php │ │ │ ├── file_identifiers_controller.php │ │ │ ├── identifier_columns_controller.php │ │ │ ├── identifiers_controller.php │ │ │ ├── imported_translation_files_controller.php │ │ │ ├── languages_controller.php │ │ │ ├── languages_controller.php.bak │ │ │ ├── pages_controller.php │ │ │ ├── raw_files_controller.php │ │ │ ├── translation_files_controller.php │ │ │ ├── translations_controller.php │ │ │ ├── users_controller.php │ │ │ └── votes_controller.php │ │ ├── index.php │ │ ├── libs │ │ │ └── empty │ │ ├── locale │ │ │ └── eng │ │ │ │ └── LC_MESSAGES │ │ │ │ └── empty │ │ ├── models │ │ │ ├── app_model.php │ │ │ ├── behaviors │ │ │ │ ├── empty │ │ │ │ └── null.php │ │ │ ├── comment.php │ │ │ ├── datasources │ │ │ │ ├── empty │ │ │ │ └── raw_files_source.php │ │ │ ├── file_identifier.php │ │ │ ├── identifier.php │ │ │ ├── identifier_column.php │ │ │ ├── imported_translation_file.php │ │ │ ├── language.php │ │ │ ├── raw_file.php │ │ │ ├── translation.php │ │ │ ├── translation_file.php │ │ │ ├── user.php │ │ │ └── vote.php │ │ ├── plugins │ │ │ └── empty │ │ ├── tests │ │ │ ├── cases │ │ │ │ ├── behaviors │ │ │ │ │ └── empty │ │ │ │ ├── components │ │ │ │ │ └── empty │ │ │ │ ├── controllers │ │ │ │ │ └── empty │ │ │ │ ├── helpers │ │ │ │ │ └── empty │ │ │ │ └── models │ │ │ │ │ └── empty │ │ │ ├── fixtures │ │ │ │ └── empty │ │ │ └── groups │ │ │ │ └── empty │ │ ├── vendors │ │ │ ├── PhraseParser.php │ │ │ ├── SheetParser.php │ │ │ ├── StringParser.php │ │ │ └── shells │ │ │ │ ├── tasks │ │ │ │ └── empty │ │ │ │ └── templates │ │ │ │ ├── 960grid │ │ │ │ └── views │ │ │ │ │ ├── form.ctp │ │ │ │ │ ├── home.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ │ ├── empty │ │ │ │ └── webtt │ │ │ │ └── views │ │ │ │ ├── form.ctp │ │ │ │ ├── home.ctp │ │ │ │ ├── index.ctp │ │ │ │ └── view.ctp │ │ ├── views │ │ │ ├── comments │ │ │ │ ├── add.ctp │ │ │ │ ├── admin_add.ctp │ │ │ │ ├── admin_edit.ctp │ │ │ │ ├── admin_index.ctp │ │ │ │ ├── admin_view.ctp │ │ │ │ ├── edit.ctp │ │ │ │ ├── index.ctp │ │ │ │ └── view.ctp │ │ │ ├── elements │ │ │ │ ├── email │ │ │ │ │ ├── html │ │ │ │ │ │ ├── empty │ │ │ │ │ │ └── registration.ctp │ │ │ │ │ └── text │ │ │ │ │ │ ├── empty │ │ │ │ │ │ └── registration.ctp │ │ │ │ ├── empty │ │ │ │ └── neighbours.ctp │ │ │ ├── errors │ │ │ │ └── empty │ │ │ ├── file_identifiers │ │ │ │ ├── add.ctp │ │ │ │ ├── admin_add.ctp │ │ │ │ ├── admin_edit.ctp │ │ │ │ ├── admin_index.ctp │ │ │ │ ├── admin_view.ctp │ │ │ │ ├── edit.ctp │ │ │ │ ├── index.ctp │ │ │ │ └── view.ctp │ │ │ ├── helpers │ │ │ │ └── empty │ │ │ ├── identifier_columns │ │ │ │ ├── admin_index.ctp │ │ │ │ ├── admin_view.ctp │ │ │ │ ├── index.ctp │ │ │ │ └── view.ctp │ │ │ ├── identifiers │ │ │ │ ├── add.ctp │ │ │ │ ├── admin_add.ctp │ │ │ │ ├── admin_edit.ctp │ │ │ │ ├── admin_index.ctp │ │ │ │ ├── admin_view.ctp │ │ │ │ ├── edit.ctp │ │ │ │ ├── index.ctp │ │ │ │ └── view.ctp │ │ │ ├── imported_translation_files │ │ │ │ ├── admin_add.ctp │ │ │ │ ├── admin_edit.ctp │ │ │ │ ├── admin_index.ctp │ │ │ │ ├── admin_view.ctp │ │ │ │ ├── index.ctp │ │ │ │ └── view.ctp │ │ │ ├── languages │ │ │ │ ├── add.ctp │ │ │ │ ├── admin_add.ctp │ │ │ │ ├── admin_edit.ctp │ │ │ │ ├── admin_index.ctp │ │ │ │ ├── admin_view.ctp │ │ │ │ ├── edit.ctp │ │ │ │ ├── index.ctp │ │ │ │ └── view.ctp │ │ │ ├── layouts │ │ │ │ ├── admin.ctp │ │ │ │ ├── default.ctp │ │ │ │ ├── default_debug.ctp │ │ │ │ ├── email │ │ │ │ │ ├── html │ │ │ │ │ │ └── default.ctp │ │ │ │ │ └── text │ │ │ │ │ │ └── default.ctp │ │ │ │ ├── js │ │ │ │ │ └── empty │ │ │ │ ├── new.ctp │ │ │ │ ├── rss │ │ │ │ │ └── empty │ │ │ │ └── xml │ │ │ │ │ └── empty │ │ │ ├── pages │ │ │ │ ├── admin │ │ │ │ │ └── home.ctp │ │ │ │ └── home.ctp │ │ │ ├── raw_files │ │ │ │ ├── admin_index.ctp │ │ │ │ ├── admin_view.ctp │ │ │ │ ├── index.ctp │ │ │ │ ├── listdir.ctp │ │ │ │ └── view.ctp │ │ │ ├── scaffolds │ │ │ │ ├── edit.ctp │ │ │ │ ├── empty │ │ │ │ ├── index.ctp │ │ │ │ └── view.ctp │ │ │ ├── translation_files │ │ │ │ ├── admin_index.ctp │ │ │ │ ├── admin_view.ctp │ │ │ │ ├── index.ctp │ │ │ │ └── view.ctp │ │ │ ├── translations │ │ │ │ ├── add.ctp │ │ │ │ ├── admin_add.ctp │ │ │ │ ├── admin_edit.ctp │ │ │ │ ├── admin_index.ctp │ │ │ │ ├── admin_view.ctp │ │ │ │ ├── edit.ctp │ │ │ │ ├── index.ctp │ │ │ │ └── view.ctp │ │ │ ├── users │ │ │ │ ├── admin_add.ctp │ │ │ │ ├── admin_edit.ctp │ │ │ │ ├── admin_index.ctp │ │ │ │ ├── admin_view.ctp │ │ │ │ ├── index.ctp │ │ │ │ ├── login.ctp │ │ │ │ ├── register.ctp │ │ │ │ └── view.ctp │ │ │ └── votes │ │ │ │ ├── add.ctp │ │ │ │ ├── admin_add.ctp │ │ │ │ ├── admin_edit.ctp │ │ │ │ ├── admin_index.ctp │ │ │ │ ├── admin_view.ctp │ │ │ │ ├── edit.ctp │ │ │ │ ├── index.ctp │ │ │ │ └── view.ctp │ │ └── webroot │ │ │ ├── .htaccess │ │ │ ├── css.php │ │ │ ├── css │ │ │ ├── 960.css │ │ │ ├── cake.generic.css │ │ │ ├── grid.css │ │ │ ├── ie.css │ │ │ ├── ie6.css │ │ │ ├── labelWidth.css │ │ │ ├── layout.css │ │ │ ├── nav.css │ │ │ ├── reset.css │ │ │ └── text.css │ │ │ ├── favicon.ico │ │ │ ├── files │ │ │ └── empty │ │ │ ├── img │ │ │ ├── cake.icon.png │ │ │ ├── cake.power.gif │ │ │ ├── switch_minus.gif │ │ │ └── switch_plus.gif │ │ │ ├── index.php │ │ │ ├── js │ │ │ ├── empty │ │ │ ├── jquery-1.3.2.min.js │ │ │ ├── jquery-fluid16.js │ │ │ └── jquery-ui.js │ │ │ ├── test.php │ │ │ └── testfiles │ │ │ ├── raw_testfile.csv │ │ │ ├── testdir │ │ │ └── ugatestindir.csv │ │ │ └── ugabla.csv │ │ ├── cake │ │ ├── LICENSE.txt │ │ ├── VERSION.txt │ │ ├── basics.php │ │ ├── bootstrap.php │ │ ├── config │ │ │ ├── config.php │ │ │ ├── paths.php │ │ │ └── unicode │ │ │ │ └── casefolding │ │ │ │ ├── 0080_00ff.php │ │ │ │ ├── 0100_017f.php │ │ │ │ ├── 0180_024F.php │ │ │ │ ├── 0250_02af.php │ │ │ │ ├── 0370_03ff.php │ │ │ │ ├── 0400_04ff.php │ │ │ │ ├── 0500_052f.php │ │ │ │ ├── 0530_058f.php │ │ │ │ ├── 1e00_1eff.php │ │ │ │ ├── 1f00_1fff.php │ │ │ │ ├── 2100_214f.php │ │ │ │ ├── 2150_218f.php │ │ │ │ ├── 2460_24ff.php │ │ │ │ ├── 2c00_2c5f.php │ │ │ │ ├── 2c60_2c7f.php │ │ │ │ ├── 2c80_2cff.php │ │ │ │ └── ff00_ffef.php │ │ ├── console │ │ │ ├── cake │ │ │ ├── cake.bat │ │ │ ├── cake.php │ │ │ ├── error.php │ │ │ ├── libs │ │ │ │ ├── acl.php │ │ │ │ ├── api.php │ │ │ │ ├── bake.php │ │ │ │ ├── console.php │ │ │ │ ├── i18n.php │ │ │ │ ├── schema.php │ │ │ │ ├── shell.php │ │ │ │ ├── tasks │ │ │ │ │ ├── bake.php │ │ │ │ │ ├── controller.php │ │ │ │ │ ├── db_config.php │ │ │ │ │ ├── extract.php │ │ │ │ │ ├── fixture.php │ │ │ │ │ ├── model.php │ │ │ │ │ ├── plugin.php │ │ │ │ │ ├── project.php │ │ │ │ │ ├── template.php │ │ │ │ │ ├── test.php │ │ │ │ │ └── view.php │ │ │ │ └── testsuite.php │ │ │ └── templates │ │ │ │ ├── default │ │ │ │ ├── actions │ │ │ │ │ └── controller_actions.ctp │ │ │ │ ├── classes │ │ │ │ │ ├── controller.ctp │ │ │ │ │ ├── fixture.ctp │ │ │ │ │ ├── model.ctp │ │ │ │ │ └── test.ctp │ │ │ │ └── views │ │ │ │ │ ├── form.ctp │ │ │ │ │ ├── home.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ │ └── skel │ │ │ │ ├── .htaccess │ │ │ │ ├── app_controller.php │ │ │ │ ├── app_helper.php │ │ │ │ ├── app_model.php │ │ │ │ ├── config │ │ │ │ ├── acl.ini.php │ │ │ │ ├── bootstrap.php │ │ │ │ ├── core.php │ │ │ │ ├── database.php.default │ │ │ │ ├── routes.php │ │ │ │ └── schema │ │ │ │ │ ├── db_acl.php │ │ │ │ │ ├── db_acl.sql │ │ │ │ │ ├── i18n.php │ │ │ │ │ ├── i18n.sql │ │ │ │ │ ├── sessions.php │ │ │ │ │ └── sessions.sql │ │ │ │ ├── controllers │ │ │ │ ├── components │ │ │ │ │ └── empty │ │ │ │ └── pages_controller.php │ │ │ │ ├── index.php │ │ │ │ ├── libs │ │ │ │ └── empty │ │ │ │ ├── locale │ │ │ │ └── eng │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── empty │ │ │ │ ├── models │ │ │ │ ├── behaviors │ │ │ │ │ └── empty │ │ │ │ └── datasources │ │ │ │ │ └── empty │ │ │ │ ├── plugins │ │ │ │ └── empty │ │ │ │ ├── tests │ │ │ │ ├── cases │ │ │ │ │ ├── behaviors │ │ │ │ │ │ └── empty │ │ │ │ │ ├── components │ │ │ │ │ │ └── empty │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── empty │ │ │ │ │ ├── datasources │ │ │ │ │ │ └── empty │ │ │ │ │ ├── helpers │ │ │ │ │ │ └── empty │ │ │ │ │ ├── models │ │ │ │ │ │ └── empty │ │ │ │ │ └── shells │ │ │ │ │ │ └── empty │ │ │ │ ├── fixtures │ │ │ │ │ └── empty │ │ │ │ └── groups │ │ │ │ │ └── empty │ │ │ │ ├── tmp │ │ │ │ ├── cache │ │ │ │ │ ├── models │ │ │ │ │ │ └── empty │ │ │ │ │ ├── persistent │ │ │ │ │ │ └── empty │ │ │ │ │ └── views │ │ │ │ │ │ └── empty │ │ │ │ ├── logs │ │ │ │ │ └── empty │ │ │ │ ├── sessions │ │ │ │ │ └── empty │ │ │ │ └── tests │ │ │ │ │ └── empty │ │ │ │ ├── vendors │ │ │ │ └── shells │ │ │ │ │ └── tasks │ │ │ │ │ └── empty │ │ │ │ ├── views │ │ │ │ ├── elements │ │ │ │ │ ├── email │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ └── default.ctp │ │ │ │ │ │ └── text │ │ │ │ │ │ │ └── default.ctp │ │ │ │ │ └── empty │ │ │ │ ├── errors │ │ │ │ │ └── empty │ │ │ │ ├── helpers │ │ │ │ │ └── empty │ │ │ │ ├── layouts │ │ │ │ │ ├── ajax.ctp │ │ │ │ │ ├── default.ctp │ │ │ │ │ ├── email │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ └── default.ctp │ │ │ │ │ │ └── text │ │ │ │ │ │ │ └── default.ctp │ │ │ │ │ ├── flash.ctp │ │ │ │ │ ├── js │ │ │ │ │ │ └── default.ctp │ │ │ │ │ ├── rss │ │ │ │ │ │ └── default.ctp │ │ │ │ │ └── xml │ │ │ │ │ │ └── default.ctp │ │ │ │ ├── pages │ │ │ │ │ └── empty │ │ │ │ └── scaffolds │ │ │ │ │ └── empty │ │ │ │ └── webroot │ │ │ │ ├── .htaccess │ │ │ │ ├── css.php │ │ │ │ ├── css │ │ │ │ └── cake.generic.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── img │ │ │ │ ├── cake.icon.png │ │ │ │ └── cake.power.gif │ │ │ │ ├── index.php │ │ │ │ ├── js │ │ │ │ └── empty │ │ │ │ └── test.php │ │ ├── dispatcher.php │ │ ├── libs │ │ │ ├── cache.php │ │ │ ├── cache │ │ │ │ ├── apc.php │ │ │ │ ├── file.php │ │ │ │ ├── memcache.php │ │ │ │ └── xcache.php │ │ │ ├── cake_log.php │ │ │ ├── cake_session.php │ │ │ ├── cake_socket.php │ │ │ ├── class_registry.php │ │ │ ├── configure.php │ │ │ ├── controller │ │ │ │ ├── app_controller.php │ │ │ │ ├── component.php │ │ │ │ ├── components │ │ │ │ │ ├── acl.php │ │ │ │ │ ├── auth.php │ │ │ │ │ ├── cookie.php │ │ │ │ │ ├── email.php │ │ │ │ │ ├── request_handler.php │ │ │ │ │ ├── security.php │ │ │ │ │ └── session.php │ │ │ │ ├── controller.php │ │ │ │ ├── pages_controller.php │ │ │ │ └── scaffold.php │ │ │ ├── debugger.php │ │ │ ├── error.php │ │ │ ├── file.php │ │ │ ├── folder.php │ │ │ ├── http_socket.php │ │ │ ├── i18n.php │ │ │ ├── inflector.php │ │ │ ├── l10n.php │ │ │ ├── log │ │ │ │ └── file_log.php │ │ │ ├── magic_db.php │ │ │ ├── model │ │ │ │ ├── app_model.php │ │ │ │ ├── behaviors │ │ │ │ │ ├── acl.php │ │ │ │ │ ├── containable.php │ │ │ │ │ ├── translate.php │ │ │ │ │ └── tree.php │ │ │ │ ├── cake_schema.php │ │ │ │ ├── connection_manager.php │ │ │ │ ├── datasources │ │ │ │ │ ├── datasource.php │ │ │ │ │ ├── dbo │ │ │ │ │ │ ├── dbo_mssql.php │ │ │ │ │ │ ├── dbo_mysql.php │ │ │ │ │ │ ├── dbo_mysqli.php │ │ │ │ │ │ ├── dbo_oracle.php │ │ │ │ │ │ ├── dbo_postgres.php │ │ │ │ │ │ └── dbo_sqlite.php │ │ │ │ │ ├── dbo_source.php │ │ │ │ │ └── dbo_source.php.bak │ │ │ │ ├── db_acl.php │ │ │ │ ├── model.php │ │ │ │ └── model_behavior.php │ │ │ ├── multibyte.php │ │ │ ├── object.php │ │ │ ├── overloadable.php │ │ │ ├── overloadable_php4.php │ │ │ ├── overloadable_php5.php │ │ │ ├── router.php │ │ │ ├── sanitize.php │ │ │ ├── security.php │ │ │ ├── set.php │ │ │ ├── string.php │ │ │ ├── validation.php │ │ │ ├── view │ │ │ │ ├── elements │ │ │ │ │ ├── email │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ └── default.ctp │ │ │ │ │ │ └── text │ │ │ │ │ │ │ └── default.ctp │ │ │ │ │ └── sql_dump.ctp │ │ │ │ ├── errors │ │ │ │ │ ├── error404.ctp │ │ │ │ │ ├── error500.ctp │ │ │ │ │ ├── missing_action.ctp │ │ │ │ │ ├── missing_behavior_class.ctp │ │ │ │ │ ├── missing_behavior_file.ctp │ │ │ │ │ ├── missing_component_class.ctp │ │ │ │ │ ├── missing_component_file.ctp │ │ │ │ │ ├── missing_connection.ctp │ │ │ │ │ ├── missing_controller.ctp │ │ │ │ │ ├── missing_helper_class.ctp │ │ │ │ │ ├── missing_helper_file.ctp │ │ │ │ │ ├── missing_layout.ctp │ │ │ │ │ ├── missing_model.ctp │ │ │ │ │ ├── missing_scaffolddb.ctp │ │ │ │ │ ├── missing_table.ctp │ │ │ │ │ ├── missing_view.ctp │ │ │ │ │ ├── private_action.ctp │ │ │ │ │ └── scaffold_error.ctp │ │ │ │ ├── helper.php │ │ │ │ ├── helpers │ │ │ │ │ ├── ajax.php │ │ │ │ │ ├── app_helper.php │ │ │ │ │ ├── cache.php │ │ │ │ │ ├── form.php │ │ │ │ │ ├── html.php │ │ │ │ │ ├── javascript.php │ │ │ │ │ ├── jquery_engine.php │ │ │ │ │ ├── js.php │ │ │ │ │ ├── mootools_engine.php │ │ │ │ │ ├── number.php │ │ │ │ │ ├── paginator.php │ │ │ │ │ ├── prototype_engine.php │ │ │ │ │ ├── rss.php │ │ │ │ │ ├── session.php │ │ │ │ │ ├── text.php │ │ │ │ │ ├── time.php │ │ │ │ │ └── xml.php │ │ │ │ ├── layouts │ │ │ │ │ ├── ajax.ctp │ │ │ │ │ ├── default.ctp │ │ │ │ │ ├── email │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ └── default.ctp │ │ │ │ │ │ └── text │ │ │ │ │ │ │ └── default.ctp │ │ │ │ │ ├── flash.ctp │ │ │ │ │ ├── js │ │ │ │ │ │ └── default.ctp │ │ │ │ │ ├── rss │ │ │ │ │ │ └── default.ctp │ │ │ │ │ └── xml │ │ │ │ │ │ └── default.ctp │ │ │ │ ├── media.php │ │ │ │ ├── pages │ │ │ │ │ └── home.ctp │ │ │ │ ├── scaffolds │ │ │ │ │ ├── edit.ctp │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── view.ctp │ │ │ │ ├── theme.php │ │ │ │ └── view.php │ │ │ └── xml.php │ │ └── tests │ │ │ ├── cases │ │ │ ├── basics.test.php │ │ │ ├── console │ │ │ │ ├── cake.test.php │ │ │ │ └── libs │ │ │ │ │ ├── acl.test.php │ │ │ │ │ ├── api.test.php │ │ │ │ │ ├── bake.test.php │ │ │ │ │ ├── schema.test.php │ │ │ │ │ ├── shell.test.php │ │ │ │ │ └── tasks │ │ │ │ │ ├── controller.test.php │ │ │ │ │ ├── db_config.test.php │ │ │ │ │ ├── extract.test.php │ │ │ │ │ ├── fixture.test.php │ │ │ │ │ ├── model.test.php │ │ │ │ │ ├── plugin.test.php │ │ │ │ │ ├── project.test.php │ │ │ │ │ ├── template.test.php │ │ │ │ │ ├── test.test.php │ │ │ │ │ └── view.test.php │ │ │ ├── dispatcher.test.php │ │ │ └── libs │ │ │ │ ├── cache.test.php │ │ │ │ ├── cache │ │ │ │ ├── apc.test.php │ │ │ │ ├── file.test.php │ │ │ │ ├── memcache.test.php │ │ │ │ └── xcache.test.php │ │ │ │ ├── cake_log.test.php │ │ │ │ ├── cake_session.test.php │ │ │ │ ├── cake_socket.test.php │ │ │ │ ├── cake_test_case.test.php │ │ │ │ ├── cake_test_fixture.test.php │ │ │ │ ├── class_registry.test.php │ │ │ │ ├── code_coverage_manager.test.php │ │ │ │ ├── configure.test.php │ │ │ │ ├── controller │ │ │ │ ├── component.test.php │ │ │ │ ├── components │ │ │ │ │ ├── acl.test.php │ │ │ │ │ ├── auth.test.php │ │ │ │ │ ├── cookie.test.php │ │ │ │ │ ├── email.test.php │ │ │ │ │ ├── request_handler.test.php │ │ │ │ │ ├── security.test.php │ │ │ │ │ └── session.test.php │ │ │ │ ├── controller.test.php │ │ │ │ ├── controller_merge_vars.test.php │ │ │ │ ├── pages_controller.test.php │ │ │ │ └── scaffold.test.php │ │ │ │ ├── debugger.test.php │ │ │ │ ├── error.test.php │ │ │ │ ├── file.test.php │ │ │ │ ├── folder.test.php │ │ │ │ ├── http_socket.test.php │ │ │ │ ├── i18n.test.php │ │ │ │ ├── inflector.test.php │ │ │ │ ├── l10n.test.php │ │ │ │ ├── log │ │ │ │ └── file_log.test.php │ │ │ │ ├── magic_db.test.php │ │ │ │ ├── model │ │ │ │ ├── behaviors │ │ │ │ │ ├── acl.test.php │ │ │ │ │ ├── containable.test.php │ │ │ │ │ ├── translate.test.php │ │ │ │ │ └── tree.test.php │ │ │ │ ├── cake_schema.test.php │ │ │ │ ├── connection_manager.test.php │ │ │ │ ├── datasources │ │ │ │ │ ├── dbo │ │ │ │ │ │ ├── dbo_mssql.test.php │ │ │ │ │ │ ├── dbo_mysql.test.php │ │ │ │ │ │ ├── dbo_mysqli.test.php │ │ │ │ │ │ ├── dbo_oracle.test.php │ │ │ │ │ │ ├── dbo_postgres.test.php │ │ │ │ │ │ └── dbo_sqlite.test.php │ │ │ │ │ └── dbo_source.test.php │ │ │ │ ├── db_acl.test.php │ │ │ │ ├── model.test.php │ │ │ │ ├── model_behavior.test.php │ │ │ │ ├── model_delete.test.php │ │ │ │ ├── model_integration.test.php │ │ │ │ ├── model_read.test.php │ │ │ │ ├── model_validation.test.php │ │ │ │ ├── model_write.test.php │ │ │ │ └── models.php │ │ │ │ ├── multibyte.test.php │ │ │ │ ├── object.test.php │ │ │ │ ├── overloadable.test.php │ │ │ │ ├── router.test.php │ │ │ │ ├── sanitize.test.php │ │ │ │ ├── security.test.php │ │ │ │ ├── set.test.php │ │ │ │ ├── string.test.php │ │ │ │ ├── test_manager.test.php │ │ │ │ ├── validation.test.php │ │ │ │ ├── view │ │ │ │ ├── helper.test.php │ │ │ │ ├── helpers │ │ │ │ │ ├── ajax.test.php │ │ │ │ │ ├── cache.test.php │ │ │ │ │ ├── form.test.php │ │ │ │ │ ├── html.test.php │ │ │ │ │ ├── javascript.test.php │ │ │ │ │ ├── jquery_engine.test.php │ │ │ │ │ ├── js.test.php │ │ │ │ │ ├── mootools_engine.test.php │ │ │ │ │ ├── number.test.php │ │ │ │ │ ├── paginator.test.php │ │ │ │ │ ├── prototype_engine.test.php │ │ │ │ │ ├── rss.test.php │ │ │ │ │ ├── session.test.php │ │ │ │ │ ├── text.test.php │ │ │ │ │ ├── time.test.php │ │ │ │ │ └── xml.test.php │ │ │ │ ├── media.test.php │ │ │ │ ├── theme.test.php │ │ │ │ └── view.test.php │ │ │ │ └── xml.test.php │ │ │ ├── fixtures │ │ │ ├── account_fixture.php │ │ │ ├── aco_action_fixture.php │ │ │ ├── aco_fixture.php │ │ │ ├── aco_two_fixture.php │ │ │ ├── ad_fixture.php │ │ │ ├── advertisement_fixture.php │ │ │ ├── after_tree_fixture.php │ │ │ ├── another_article_fixture.php │ │ │ ├── apple_fixture.php │ │ │ ├── aro_fixture.php │ │ │ ├── aro_two_fixture.php │ │ │ ├── aros_aco_fixture.php │ │ │ ├── aros_aco_two_fixture.php │ │ │ ├── article_featured_fixture.php │ │ │ ├── article_featureds_tags_fixture.php │ │ │ ├── article_fixture.php │ │ │ ├── articles_tag_fixture.php │ │ │ ├── attachment_fixture.php │ │ │ ├── auth_user_custom_field_fixture.php │ │ │ ├── auth_user_fixture.php │ │ │ ├── author_fixture.php │ │ │ ├── basket_fixture.php │ │ │ ├── bid_fixture.php │ │ │ ├── binary_test_fixture.php │ │ │ ├── book_fixture.php │ │ │ ├── cache_test_model_fixture.php │ │ │ ├── callback_fixture.php │ │ │ ├── campaign_fixture.php │ │ │ ├── category_fixture.php │ │ │ ├── category_thread_fixture.php │ │ │ ├── cd_fixture.php │ │ │ ├── comment_fixture.php │ │ │ ├── content_account_fixture.php │ │ │ ├── content_fixture.php │ │ │ ├── counter_cache_post_fixture.php │ │ │ ├── counter_cache_post_nonstandard_primary_key_fixture.php │ │ │ ├── counter_cache_user_fixture.php │ │ │ ├── counter_cache_user_nonstandard_primary_key_fixture.php │ │ │ ├── data_test_fixture.php │ │ │ ├── datatype_fixture.php │ │ │ ├── dependency_fixture.php │ │ │ ├── device_fixture.php │ │ │ ├── device_type_category_fixture.php │ │ │ ├── device_type_fixture.php │ │ │ ├── document_directory_fixture.php │ │ │ ├── document_fixture.php │ │ │ ├── exterior_type_category_fixture.php │ │ │ ├── feature_set_fixture.php │ │ │ ├── featured_fixture.php │ │ │ ├── film_file_fixture.php │ │ │ ├── flag_tree_fixture.php │ │ │ ├── fruit_fixture.php │ │ │ ├── fruits_uuid_tag_fixture.php │ │ │ ├── group_update_all_fixture.php │ │ │ ├── home_fixture.php │ │ │ ├── image_fixture.php │ │ │ ├── item_fixture.php │ │ │ ├── items_portfolio_fixture.php │ │ │ ├── join_a_b_fixture.php │ │ │ ├── join_a_c_fixture.php │ │ │ ├── join_a_fixture.php │ │ │ ├── join_b_fixture.php │ │ │ ├── join_c_fixture.php │ │ │ ├── join_thing_fixture.php │ │ │ ├── message_fixture.php │ │ │ ├── my_categories_my_products_fixture.php │ │ │ ├── my_categories_my_users_fixture.php │ │ │ ├── my_category_fixture.php │ │ │ ├── my_product_fixture.php │ │ │ ├── my_user_fixture.php │ │ │ ├── node_fixture.php │ │ │ ├── number_tree_fixture.php │ │ │ ├── number_tree_two_fixture.php │ │ │ ├── numeric_article_fixture.php │ │ │ ├── overall_favorite_fixture.php │ │ │ ├── person_fixture.php │ │ │ ├── portfolio_fixture.php │ │ │ ├── post_fixture.php │ │ │ ├── posts_tag_fixture.php │ │ │ ├── primary_model_fixture.php │ │ │ ├── product_fixture.php │ │ │ ├── product_update_all_fixture.php │ │ │ ├── project_fixture.php │ │ │ ├── sample_fixture.php │ │ │ ├── secondary_model_fixture.php │ │ │ ├── session_fixture.php │ │ │ ├── something_else_fixture.php │ │ │ ├── something_fixture.php │ │ │ ├── stories_tag_fixture.php │ │ │ ├── story_fixture.php │ │ │ ├── syfile_fixture.php │ │ │ ├── tag_fixture.php │ │ │ ├── test_plugin_article_fixture.php │ │ │ ├── test_plugin_comment_fixture.php │ │ │ ├── the_paper_monkies_fixture.php │ │ │ ├── thread_fixture.php │ │ │ ├── translate_article_fixture.php │ │ │ ├── translate_fixture.php │ │ │ ├── translate_table_fixture.php │ │ │ ├── translate_with_prefix_fixture.php │ │ │ ├── translated_article_fixture.php │ │ │ ├── translated_item_fixture.php │ │ │ ├── unconventional_tree_fixture.php │ │ │ ├── underscore_field_fixture.php │ │ │ ├── user_fixture.php │ │ │ ├── uuid_fixture.php │ │ │ ├── uuid_tag_fixture.php │ │ │ ├── uuid_tree_fixture.php │ │ │ ├── uuiditem_fixture.php │ │ │ ├── uuiditems_uuidportfolio_fixture.php │ │ │ ├── uuiditems_uuidportfolio_numericid_fixture.php │ │ │ └── uuidportfolio_fixture.php │ │ │ ├── groups │ │ │ ├── acl.group.php │ │ │ ├── bake.group.php │ │ │ ├── behaviors.group.php │ │ │ ├── cache.group.php │ │ │ ├── components.group.php │ │ │ ├── configure.group.php │ │ │ ├── console.group.php │ │ │ ├── controller.group.php │ │ │ ├── database.group.php │ │ │ ├── helpers.group.php │ │ │ ├── i18n.group.php │ │ │ ├── javascript.group.php │ │ │ ├── lib.group.php │ │ │ ├── model.group.php │ │ │ ├── no_cross_contamination.group.php │ │ │ ├── routing_system.group.php │ │ │ ├── socket.group.php │ │ │ ├── test_suite.group.php │ │ │ ├── view.group.php │ │ │ └── xml.group.php │ │ │ ├── lib │ │ │ ├── cake_test_case.php │ │ │ ├── cake_test_fixture.php │ │ │ ├── cake_test_model.php │ │ │ ├── cake_test_suite_dispatcher.php │ │ │ ├── cake_web_test_case.php │ │ │ ├── code_coverage_manager.php │ │ │ ├── reporter │ │ │ │ ├── cake_base_reporter.php │ │ │ │ ├── cake_cli_reporter.php │ │ │ │ ├── cake_html_reporter.php │ │ │ │ └── cake_text_reporter.php │ │ │ ├── templates │ │ │ │ ├── footer.php │ │ │ │ ├── header.php │ │ │ │ ├── menu.php │ │ │ │ ├── simpletest.php │ │ │ │ └── xdebug.php │ │ │ └── test_manager.php │ │ │ └── test_app │ │ │ ├── config │ │ │ └── acl.ini.php │ │ │ ├── controllers │ │ │ ├── components │ │ │ │ └── empty │ │ │ ├── tests_apps_controller.php │ │ │ └── tests_apps_posts_controller.php │ │ │ ├── libs │ │ │ ├── cache │ │ │ │ └── test_app_cache.php │ │ │ ├── library.php │ │ │ └── log │ │ │ │ └── test_app_log.php │ │ │ ├── locale │ │ │ ├── cache_test_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── default.po │ │ │ │ │ ├── dom1.po │ │ │ │ │ └── dom2.po │ │ │ ├── ja_jp │ │ │ │ └── LC_TIME │ │ │ ├── po │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ └── default.po │ │ │ │ ├── LC_MONETARY │ │ │ │ │ └── default.po │ │ │ │ └── LC_TIME │ │ │ ├── rule_0_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_0_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_10_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_10_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_11_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_11_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_12_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_12_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_13_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_13_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_14_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_14_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_1_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_1_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_2_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_2_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_3_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_3_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_4_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_4_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_5_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_5_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_6_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_6_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_7_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_7_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_8_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_8_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_9_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_9_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ └── time_test │ │ │ │ └── LC_TIME │ │ │ ├── models │ │ │ ├── behaviors │ │ │ │ ├── empty │ │ │ │ ├── persister_one_behavior.php │ │ │ │ └── persister_two_behavior.php │ │ │ ├── comment.php │ │ │ ├── datasources │ │ │ │ ├── test2_other_source.php │ │ │ │ └── test2_source.php │ │ │ ├── persister_one.php │ │ │ ├── persister_two.php │ │ │ └── post.php │ │ │ ├── plugins │ │ │ ├── plugin_js │ │ │ │ └── webroot │ │ │ │ │ └── js │ │ │ │ │ ├── one │ │ │ │ │ └── plugin_one.js │ │ │ │ │ └── plugin_js.js │ │ │ ├── test_plugin │ │ │ │ ├── config │ │ │ │ │ ├── load.php │ │ │ │ │ ├── more.load.php │ │ │ │ │ └── schema │ │ │ │ │ │ └── schema.php │ │ │ │ ├── controllers │ │ │ │ │ ├── components │ │ │ │ │ │ ├── other_component.php │ │ │ │ │ │ ├── plugins_component.php │ │ │ │ │ │ ├── test_plugin_component.php │ │ │ │ │ │ └── test_plugin_other_component.php │ │ │ │ │ ├── test_plugin_controller.php │ │ │ │ │ └── tests_controller.php │ │ │ │ ├── libs │ │ │ │ │ ├── cache │ │ │ │ │ │ └── test_plugin_cache.php │ │ │ │ │ ├── log │ │ │ │ │ │ └── test_plugin_log.php │ │ │ │ │ └── test_plugin_library.php │ │ │ │ ├── locale │ │ │ │ │ └── po │ │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ │ └── test_plugin.po │ │ │ │ │ │ └── LC_MONETARY │ │ │ │ │ │ └── test_plugin.po │ │ │ │ ├── models │ │ │ │ │ ├── behaviors │ │ │ │ │ │ ├── test_plugin_persister_one.php │ │ │ │ │ │ └── test_plugin_persister_two.php │ │ │ │ │ ├── datasources │ │ │ │ │ │ ├── dbo │ │ │ │ │ │ │ └── dbo_dummy.php │ │ │ │ │ │ ├── test_other_source.php │ │ │ │ │ │ └── test_source.php │ │ │ │ │ ├── test_plugin_auth_user.php │ │ │ │ │ ├── test_plugin_authors.php │ │ │ │ │ ├── test_plugin_comment.php │ │ │ │ │ └── test_plugin_post.php │ │ │ │ ├── test_plugin_app_controller.php │ │ │ │ ├── test_plugin_app_model.php │ │ │ │ ├── vendors │ │ │ │ │ ├── sample │ │ │ │ │ │ └── sample_plugin.php │ │ │ │ │ ├── shells │ │ │ │ │ │ ├── example.php │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ └── empty │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── empty │ │ │ │ │ └── welcome.php │ │ │ │ ├── views │ │ │ │ │ ├── elements │ │ │ │ │ │ ├── plugin_element.ctp │ │ │ │ │ │ └── test_plugin_element.ctp │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── other_helper.php │ │ │ │ │ │ ├── plugged_helper.php │ │ │ │ │ │ └── test_plugin_app.php │ │ │ │ │ ├── layouts │ │ │ │ │ │ └── default.ctp │ │ │ │ │ └── tests │ │ │ │ │ │ ├── index.ctp │ │ │ │ │ │ └── scaffold.edit.ctp │ │ │ │ └── webroot │ │ │ │ │ ├── css │ │ │ │ │ ├── test_plugin_asset.css │ │ │ │ │ ├── theme_one.htc │ │ │ │ │ └── unknown.extension │ │ │ │ │ ├── flash │ │ │ │ │ └── plugin_test.swf │ │ │ │ │ ├── img │ │ │ │ │ └── cake.icon.gif │ │ │ │ │ ├── js │ │ │ │ │ └── test_plugin │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── pdfs │ │ │ │ │ └── plugin_test.pdf │ │ │ │ │ └── root.js │ │ │ └── test_plugin_two │ │ │ │ └── vendors │ │ │ │ └── shells │ │ │ │ ├── example.php │ │ │ │ ├── tasks │ │ │ │ └── empty │ │ │ │ ├── templates │ │ │ │ └── empty │ │ │ │ └── welcome.php │ │ │ ├── tmp │ │ │ └── dir_map │ │ │ ├── vendors │ │ │ ├── Test │ │ │ │ ├── MyTest.php │ │ │ │ └── hello.php │ │ │ ├── css │ │ │ │ └── test_asset.css │ │ │ ├── img │ │ │ │ └── test.jpg │ │ │ ├── sample │ │ │ │ └── configure_test_vendor_sample.php │ │ │ ├── shells │ │ │ │ ├── sample.php │ │ │ │ └── tasks │ │ │ │ │ └── empty │ │ │ ├── somename │ │ │ │ └── some.name.php │ │ │ └── welcome.php │ │ │ ├── views │ │ │ ├── elements │ │ │ │ ├── email │ │ │ │ │ ├── html │ │ │ │ │ │ ├── custom.ctp │ │ │ │ │ │ ├── default.ctp │ │ │ │ │ │ └── nested_element.ctp │ │ │ │ │ └── text │ │ │ │ │ │ ├── custom.ctp │ │ │ │ │ │ ├── default.ctp │ │ │ │ │ │ └── wide.ctp │ │ │ │ ├── empty │ │ │ │ ├── html_call.ctp │ │ │ │ ├── nocache │ │ │ │ │ ├── contains_nocache.ctp │ │ │ │ │ ├── plain.ctp │ │ │ │ │ ├── sub1.ctp │ │ │ │ │ └── sub2.ctp │ │ │ │ ├── session_helper.ctp │ │ │ │ ├── test_element.ctp │ │ │ │ └── type_check.ctp │ │ │ ├── errors │ │ │ │ └── empty │ │ │ ├── helpers │ │ │ │ ├── banana.php │ │ │ │ └── empty │ │ │ ├── layouts │ │ │ │ ├── ajax.ctp │ │ │ │ ├── ajax2.ctp │ │ │ │ ├── cache_empty_sections.ctp │ │ │ │ ├── cache_layout.ctp │ │ │ │ ├── default.ctp │ │ │ │ ├── email │ │ │ │ │ ├── html │ │ │ │ │ │ ├── default.ctp │ │ │ │ │ │ └── thin.ctp │ │ │ │ │ └── text │ │ │ │ │ │ └── default.ctp │ │ │ │ ├── flash.ctp │ │ │ │ ├── js │ │ │ │ │ └── default.ctp │ │ │ │ ├── multi_cache.ctp │ │ │ │ ├── rss │ │ │ │ │ └── default.ctp │ │ │ │ └── xml │ │ │ │ │ └── default.ctp │ │ │ ├── pages │ │ │ │ ├── empty │ │ │ │ ├── extract.ctp │ │ │ │ └── home.ctp │ │ │ ├── posts │ │ │ │ ├── cache_empty_sections.ctp │ │ │ │ ├── cache_form.ctp │ │ │ │ ├── helper_overwrite.ctp │ │ │ │ ├── index.ctp │ │ │ │ ├── multiple_nocache.ctp │ │ │ │ ├── nocache_multiple_element.ctp │ │ │ │ ├── scaffold.edit.ctp │ │ │ │ ├── sequencial_nocache.ctp │ │ │ │ └── test_nocache_tags.ctp │ │ │ ├── scaffolds │ │ │ │ └── empty │ │ │ ├── tests_apps │ │ │ │ └── index.ctp │ │ │ └── themed │ │ │ │ └── test_theme │ │ │ │ ├── elements │ │ │ │ └── test_element.ctp │ │ │ │ ├── layouts │ │ │ │ └── default.ctp │ │ │ │ ├── plugins │ │ │ │ └── test_plugin │ │ │ │ │ ├── layouts │ │ │ │ │ └── plugin_default.ctp │ │ │ │ │ └── tests │ │ │ │ │ └── index.ctp │ │ │ │ ├── posts │ │ │ │ ├── index.ctp │ │ │ │ └── scaffold.index.ctp │ │ │ │ └── webroot │ │ │ │ ├── css │ │ │ │ ├── test_asset.css │ │ │ │ └── theme_webroot.css │ │ │ │ ├── flash │ │ │ │ └── theme_test.swf │ │ │ │ ├── img │ │ │ │ ├── cake.power.gif │ │ │ │ └── test.jpg │ │ │ │ ├── js │ │ │ │ ├── one │ │ │ │ │ └── theme_one.js │ │ │ │ └── theme.js │ │ │ │ └── pdfs │ │ │ │ └── theme_test.pdf │ │ │ └── webroot │ │ │ └── theme │ │ │ └── test_theme │ │ │ ├── css │ │ │ ├── theme_webroot.css │ │ │ └── webroot_test.css │ │ │ └── img │ │ │ ├── cake.power.gif │ │ │ └── test.jpg │ │ ├── docs │ │ ├── INSTALL │ │ └── db │ │ │ ├── CakePHP_Associations │ │ │ ├── erd.png │ │ │ └── webtt2.db │ │ └── index.php │ ├── sheet_random_generator │ ├── CMakeLists.txt │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── raw_material_generation.cfg │ ├── sheet_random_generator.cpp │ ├── srg_utilities.cpp │ └── srg_utilities.h │ ├── sheets_packer │ ├── CMakeLists.txt │ ├── sheets_packer.cfg │ ├── sheets_packer.cpp │ ├── sheets_packer_cfg.cpp │ ├── sheets_packer_cfg.h │ ├── sheets_packer_init.cpp │ ├── sheets_packer_init.h │ ├── stdpch.cpp │ └── stdpch.h │ ├── skill_extractor │ ├── CMakeLists.txt │ └── skill_extractor.cpp │ ├── stats_scan │ ├── CMakeLists.txt │ ├── char_commands.cpp │ ├── char_filter_factory.cpp │ ├── char_filter_factory.h │ ├── char_info_extractor_factory.cpp │ ├── char_info_extractor_factory.h │ ├── char_scan_script.cpp │ ├── char_scan_script.h │ ├── character.cpp │ ├── character.h │ ├── character_scan_job.cpp │ ├── character_scan_job.h │ ├── job_manager.cpp │ ├── job_manager.h │ ├── service_main.cpp │ ├── user_char_filters.cpp │ └── user_char_info_extractors.cpp │ ├── translation_tools │ ├── CMakeLists.txt │ ├── extract_bot_names.cpp │ ├── extract_new_sheet_names.cpp │ └── main.cpp │ └── xml_packer │ └── xml_packer.cpp ├── snowballs2 ├── AUTHORS ├── CMakeLists.txt ├── CMakePackaging.txt ├── COPYING ├── ChangeLog ├── INSTALL ├── NEWS ├── README ├── THANKS ├── bin │ ├── chat_service.cfg │ ├── collision_service.cfg │ ├── common.cfg │ ├── copy_nel_d.bat │ ├── copy_nel_r.bat │ ├── empty_service.cfg │ ├── frontend_service.cfg │ ├── init_r_00_naming_service.bat │ ├── init_r_01_login_service.bat │ ├── init_r_10_welcome_service.bat │ ├── init_r_11_position_service.bat │ ├── init_r_12_chat_service.bat │ ├── init_r_13_collision_service.bat │ ├── init_r_20_frontend_service.bat │ ├── init_r_90_snowballs_client.bat │ ├── position_service.cfg │ ├── snowballs_client.cfg │ └── snowballs_client_default.cfg ├── client │ ├── CMakeLists.txt │ ├── client.cfg.in │ └── src │ │ ├── CMakeLists.txt │ │ ├── animation.cpp │ │ ├── animation.h │ │ ├── camera.cpp │ │ ├── camera.h │ │ ├── commands.cpp │ │ ├── commands.h │ │ ├── compass.cpp │ │ ├── compass.h │ │ ├── configuration.cpp │ │ ├── configuration.h │ │ ├── entities.cpp │ │ ├── entities.h │ │ ├── game_time.cpp │ │ ├── game_time.h │ │ ├── graph.cpp │ │ ├── graph.h │ │ ├── interface.cpp │ │ ├── interface.h │ │ ├── internationalization.cpp │ │ ├── internationalization.h │ │ ├── landscape.cpp │ │ ├── landscape.h │ │ ├── lens_flare.cpp │ │ ├── lens_flare.h │ │ ├── mouse_listener.cpp │ │ ├── mouse_listener.h │ │ ├── network.cpp │ │ ├── network.h │ │ ├── pacs.cpp │ │ ├── pacs.h │ │ ├── physics.cpp │ │ ├── physics.h │ │ ├── radar.cpp │ │ ├── radar.h │ │ ├── snowballs_client.cpp │ │ ├── snowballs_client.h │ │ ├── snowballs_config.h │ │ ├── sound.cpp │ │ └── sound.h ├── resources │ ├── custom.ini │ ├── nel.bmp │ ├── nel.png │ └── nevraxpill.ico └── server │ ├── CMakeLists.txt │ ├── chat │ ├── CMakeLists.txt │ ├── chat_service.cfg │ └── src │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── collision │ ├── CMakeLists.txt │ ├── collision_service.cfg │ └── src │ │ ├── CMakeLists.txt │ │ ├── collision_service.cpp │ │ └── collision_service.h │ ├── common.cfg │ ├── empty │ ├── empty_service.cfg │ └── src │ │ ├── empty_service.cpp │ │ └── empty_service.h │ ├── frontend │ ├── CMakeLists.txt │ ├── frontend_service.cfg │ └── src │ │ ├── CMakeLists.txt │ │ └── main.cpp │ └── position │ ├── CMakeLists.txt │ ├── position_service.cfg │ └── src │ ├── CMakeLists.txt │ ├── main.cpp │ ├── physics.cpp │ └── physics.h ├── tool ├── bin2c │ └── bin2c.cpp ├── build │ ├── build │ └── buildquiet ├── crash │ └── crash.cpp ├── increment_version │ └── increment_version.cpp ├── mkdir_date │ └── mkdir_date.cpp ├── open_file │ └── open_file.cpp ├── path_content_diff │ └── path_content_diff.cpp ├── ren_date │ └── ren_date.cpp ├── resswap │ ├── ResSwap.cpp │ └── icon1.ico └── visual_studio_macros │ ├── autoexp.dat │ ├── autoexp_vc10.dat │ ├── doxbar.chm │ ├── nevrax_macros.dsm │ ├── nevrax_macros_98.dsm │ ├── nevrax_macros_howto.txt │ ├── nevrax_macros_ryzom.dsm │ ├── usertype.dat │ └── visual studio paths.reg └── web ├── api ├── client │ ├── auth.php │ ├── config.php.default │ ├── time.php │ ├── user.php │ └── utils.php ├── common │ ├── actionPage.php │ ├── auth.php │ ├── bbCode.php │ ├── config.php.default │ ├── db_defs.php │ ├── db_lib.php │ ├── dfm.php │ ├── logger.php │ ├── render.php │ ├── ryform.php │ ├── ryformBases.php │ ├── time.php │ ├── user.php │ ├── utils.php │ └── xml_utils.php ├── data │ ├── css │ │ ├── ryzom_iphone.css │ │ ├── ryzom_ui.css │ │ ├── skin_b.gif │ │ ├── skin_bl.gif │ │ ├── skin_blank.png │ │ ├── skin_blank_inner.png │ │ ├── skin_br.gif │ │ ├── skin_header_l.gif │ │ ├── skin_header_m.gif │ │ ├── skin_header_r.gif │ │ ├── skin_l.gif │ │ ├── skin_r.gif │ │ ├── skin_t.gif │ │ ├── skin_tl.gif │ │ └── skin_tr.gif │ ├── icons │ │ ├── add_app.png │ │ ├── edit.png │ │ ├── edit_16.png │ │ ├── no_action.png │ │ └── spe_com.png │ ├── img │ │ ├── bg.jpg │ │ ├── bordure.png │ │ ├── lang │ │ │ ├── de.png │ │ │ ├── en.png │ │ │ ├── es.png │ │ │ ├── fr.png │ │ │ ├── ru.png │ │ │ └── sp.png │ │ └── logo.gif │ ├── js │ │ ├── combobox.js │ │ └── jquery-1.7.1.js │ └── ryzom │ │ ├── guild_png │ │ ├── .htaccess │ │ ├── guild_back_b_00_1.png │ │ ├── guild_back_b_00_2.png │ │ ├── guild_back_b_01_1.png │ │ ├── guild_back_b_01_2.png │ │ ├── guild_back_b_02_1.png │ │ ├── guild_back_b_02_2.png │ │ ├── guild_back_b_03_1.png │ │ ├── guild_back_b_03_2.png │ │ ├── guild_back_b_04_1.png │ │ ├── guild_back_b_04_2.png │ │ ├── guild_back_b_05_1.png │ │ ├── guild_back_b_05_2.png │ │ ├── guild_back_b_06_1.png │ │ ├── guild_back_b_06_2.png │ │ ├── guild_back_b_07_1.png │ │ ├── guild_back_b_07_2.png │ │ ├── guild_back_b_08_1.png │ │ ├── guild_back_b_08_2.png │ │ ├── guild_back_b_09_1.png │ │ ├── guild_back_b_09_2.png │ │ ├── guild_back_b_10_1.png │ │ ├── guild_back_b_10_2.png │ │ ├── guild_back_b_11_1.png │ │ ├── guild_back_b_11_2.png │ │ ├── guild_back_b_12_1.png │ │ ├── guild_back_b_12_2.png │ │ ├── guild_back_b_13_1.png │ │ ├── guild_back_b_13_2.png │ │ ├── guild_back_b_14_1.png │ │ ├── guild_back_b_14_2.png │ │ ├── guild_back_s_00_1.png │ │ ├── guild_back_s_00_2.png │ │ ├── guild_back_s_01_1.png │ │ ├── guild_back_s_01_2.png │ │ ├── guild_back_s_02_1.png │ │ ├── guild_back_s_02_2.png │ │ ├── guild_back_s_03_1.png │ │ ├── guild_back_s_03_2.png │ │ ├── guild_back_s_04_1.png │ │ ├── guild_back_s_04_2.png │ │ ├── guild_back_s_05_1.png │ │ ├── guild_back_s_05_2.png │ │ ├── guild_back_s_06_1.png │ │ ├── guild_back_s_06_2.png │ │ ├── guild_back_s_07_1.png │ │ ├── guild_back_s_07_2.png │ │ ├── guild_back_s_08_1.png │ │ ├── guild_back_s_08_2.png │ │ ├── guild_back_s_09_1.png │ │ ├── guild_back_s_09_2.png │ │ ├── guild_back_s_10_1.png │ │ ├── guild_back_s_10_2.png │ │ ├── guild_back_s_11_1.png │ │ ├── guild_back_s_11_2.png │ │ ├── guild_back_s_12_1.png │ │ ├── guild_back_s_12_2.png │ │ ├── guild_back_s_13_1.png │ │ ├── guild_back_s_13_2.png │ │ ├── guild_back_s_14_1.png │ │ ├── guild_back_s_14_2.png │ │ ├── guild_symbol_b_00.png │ │ ├── guild_symbol_b_01.png │ │ ├── guild_symbol_b_02.png │ │ ├── guild_symbol_b_03.png │ │ ├── guild_symbol_b_04.png │ │ ├── guild_symbol_b_05.png │ │ ├── guild_symbol_b_06.png │ │ ├── guild_symbol_b_07.png │ │ ├── guild_symbol_b_08.png │ │ ├── guild_symbol_b_09.png │ │ ├── guild_symbol_b_10.png │ │ ├── guild_symbol_b_11.png │ │ ├── guild_symbol_b_12.png │ │ ├── guild_symbol_b_13.png │ │ ├── guild_symbol_b_14.png │ │ ├── guild_symbol_b_15.png │ │ ├── guild_symbol_b_16.png │ │ ├── guild_symbol_b_17.png │ │ ├── guild_symbol_b_18.png │ │ ├── guild_symbol_b_19.png │ │ ├── guild_symbol_b_20.png │ │ ├── guild_symbol_b_21.png │ │ ├── guild_symbol_b_22.png │ │ ├── guild_symbol_b_23.png │ │ ├── guild_symbol_b_24.png │ │ ├── guild_symbol_b_25.png │ │ ├── guild_symbol_b_26.png │ │ ├── guild_symbol_b_27.png │ │ ├── guild_symbol_b_28.png │ │ ├── guild_symbol_b_29.png │ │ ├── guild_symbol_b_30.png │ │ ├── guild_symbol_b_31.png │ │ ├── guild_symbol_b_32.png │ │ ├── guild_symbol_b_33.png │ │ ├── guild_symbol_b_34.png │ │ ├── guild_symbol_b_35.png │ │ ├── guild_symbol_b_36.png │ │ ├── guild_symbol_b_37.png │ │ ├── guild_symbol_b_38.png │ │ ├── guild_symbol_b_39.png │ │ ├── guild_symbol_b_40.png │ │ ├── guild_symbol_b_41.png │ │ ├── guild_symbol_b_42.png │ │ ├── guild_symbol_b_43.png │ │ ├── guild_symbol_s_00.png │ │ ├── guild_symbol_s_01.png │ │ ├── guild_symbol_s_02.png │ │ ├── guild_symbol_s_03.png │ │ ├── guild_symbol_s_04.png │ │ ├── guild_symbol_s_05.png │ │ ├── guild_symbol_s_06.png │ │ ├── guild_symbol_s_07.png │ │ ├── guild_symbol_s_08.png │ │ ├── guild_symbol_s_09.png │ │ ├── guild_symbol_s_10.png │ │ ├── guild_symbol_s_11.png │ │ ├── guild_symbol_s_12.png │ │ ├── guild_symbol_s_13.png │ │ ├── guild_symbol_s_14.png │ │ ├── guild_symbol_s_15.png │ │ ├── guild_symbol_s_16.png │ │ ├── guild_symbol_s_17.png │ │ ├── guild_symbol_s_18.png │ │ ├── guild_symbol_s_19.png │ │ ├── guild_symbol_s_20.png │ │ ├── guild_symbol_s_21.png │ │ ├── guild_symbol_s_22.png │ │ ├── guild_symbol_s_23.png │ │ ├── guild_symbol_s_24.png │ │ ├── guild_symbol_s_25.png │ │ ├── guild_symbol_s_26.png │ │ ├── guild_symbol_s_27.png │ │ ├── guild_symbol_s_28.png │ │ ├── guild_symbol_s_29.png │ │ ├── guild_symbol_s_30.png │ │ ├── guild_symbol_s_31.png │ │ ├── guild_symbol_s_32.png │ │ ├── guild_symbol_s_33.png │ │ ├── guild_symbol_s_34.png │ │ ├── guild_symbol_s_35.png │ │ ├── guild_symbol_s_36.png │ │ ├── guild_symbol_s_37.png │ │ ├── guild_symbol_s_38.png │ │ ├── guild_symbol_s_39.png │ │ ├── guild_symbol_s_40.png │ │ ├── guild_symbol_s_41.png │ │ ├── guild_symbol_s_42.png │ │ └── guild_symbol_s_43.png │ │ └── interface │ │ ├── 1h_over.png │ │ ├── 2h_over.png │ │ ├── am_logo.png │ │ ├── ar_armpad.png │ │ ├── ar_armpad_mask.png │ │ ├── ar_botte.png │ │ ├── ar_botte_mask.png │ │ ├── ar_gilet.png │ │ ├── ar_gilet_mask.png │ │ ├── ar_hand.png │ │ ├── ar_hand_mask.png │ │ ├── ar_helmet.png │ │ ├── ar_helmet_mask.png │ │ ├── ar_pantabotte.png │ │ ├── ar_pantabotte_mask.png │ │ ├── asc_exit.png │ │ ├── asc_rolemastercraft.png │ │ ├── asc_rolemasterfight.png │ │ ├── asc_rolemasterharvest.png │ │ ├── asc_rolemastermagic.png │ │ ├── asc_unknown.png │ │ ├── bg_downloader.png │ │ ├── bg_empty.png │ │ ├── bk_aura.png │ │ ├── bk_conso.png │ │ ├── bk_consommable.png │ │ ├── bk_fyros.png │ │ ├── bk_fyros_brick.png │ │ ├── bk_generic.png │ │ ├── bk_generic_brick.png │ │ ├── bk_goo.png │ │ ├── bk_guild.png │ │ ├── bk_horde.png │ │ ├── bk_kami.png │ │ ├── bk_karavan.png │ │ ├── bk_magie_noire_brick.png │ │ ├── bk_matis.png │ │ ├── bk_matis_brick.png │ │ ├── bk_mission.png │ │ ├── bk_mission2.png │ │ ├── bk_outpost.png │ │ ├── bk_outpost_brick.png │ │ ├── bk_power.png │ │ ├── bk_primes.png │ │ ├── bk_service.png │ │ ├── bk_training.png │ │ ├── bk_tryker.png │ │ ├── bk_tryker_brick.png │ │ ├── bk_zorai.png │ │ ├── bk_zorai_brick.png │ │ ├── brick_default.png │ │ ├── building_state_24x24.png │ │ ├── cb_main_nue.png │ │ ├── ch_back.png │ │ ├── charge.png │ │ ├── clef.png │ │ ├── conso_branche.png │ │ ├── conso_branche_mask.png │ │ ├── conso_fleur.png │ │ ├── conso_fleur_mask.png │ │ ├── conso_grappe.png │ │ ├── conso_grappe_mask.png │ │ ├── conso_nectar.png │ │ ├── conso_nectar_mask.png │ │ ├── construction.png │ │ ├── cp_back.png │ │ ├── cp_over_break.png │ │ ├── cp_over_less.png │ │ ├── cp_over_more.png │ │ ├── cp_over_opening.png │ │ ├── cp_over_opening_2.png │ │ ├── cristal_ammo.png │ │ ├── cristal_generic.png │ │ ├── cristal_spell.png │ │ ├── ef_back.png │ │ ├── ef_over_break.png │ │ ├── ef_over_less.png │ │ ├── ef_over_more.png │ │ ├── fo_back.png │ │ ├── fo_over.png │ │ ├── fp_ammo.png │ │ ├── fp_armor.png │ │ ├── fp_building.png │ │ ├── fp_jewel.png │ │ ├── fp_melee.png │ │ ├── fp_over.png │ │ ├── fp_range.png │ │ ├── fp_shield.png │ │ ├── fp_tools.png │ │ ├── ge_mission_outpost_townhall.png │ │ ├── ico_absorb_damage.png │ │ ├── ico_accurate.png │ │ ├── ico_acid.png │ │ ├── ico_aim.png │ │ ├── ico_aim_bird_wings.png │ │ ├── ico_aim_flying_kitin_abdomen.png │ │ ├── ico_aim_homin_arms.png │ │ ├── ico_aim_homin_chest.png │ │ ├── ico_aim_homin_feet.png │ │ ├── ico_aim_homin_feint.png │ │ ├── ico_aim_homin_hands.png │ │ ├── ico_aim_homin_head.png │ │ ├── ico_aim_homin_legs.png │ │ ├── ico_aim_kitin_head.png │ │ ├── ico_amande.png │ │ ├── ico_ammo_bullet.png │ │ ├── ico_ammo_jacket.png │ │ ├── ico_angle.png │ │ ├── ico_anti_magic_shield.png │ │ ├── ico_armor.png │ │ ├── ico_armor_clip.png │ │ ├── ico_armor_heavy.png │ │ ├── ico_armor_kitin.png │ │ ├── ico_armor_light.png │ │ ├── ico_armor_medium.png │ │ ├── ico_armor_penalty.png │ │ ├── ico_armor_shell.png │ │ ├── ico_atys.png │ │ ├── ico_atysian.png │ │ ├── ico_balance_hp.png │ │ ├── ico_barrel.png │ │ ├── ico_bash.png │ │ ├── ico_berserk.png │ │ ├── ico_blade.png │ │ ├── ico_bleeding.png │ │ ├── ico_blind.png │ │ ├── ico_blunt.png │ │ ├── ico_bomb.png │ │ ├── ico_cataliseur_xp.png │ │ ├── ico_celestial.png │ │ ├── ico_circular_attack.png │ │ ├── ico_clothes.png │ │ ├── ico_cold.png │ │ ├── ico_concentration.png │ │ ├── ico_consommable_over.png │ │ ├── ico_constitution.png │ │ ├── ico_counterweight.png │ │ ├── ico_craft_buff.png │ │ ├── ico_create_sapload.png │ │ ├── ico_curse.png │ │ ├── ico_debuff.png │ │ ├── ico_debuff_resist.png │ │ ├── ico_debuff_skill.png │ │ ├── ico_desert.png │ │ ├── ico_dexterity.png │ │ ├── ico_disarm.png │ │ ├── ico_dodge.png │ │ ├── ico_dot.png │ │ ├── ico_durability.png │ │ ├── ico_electric.png │ │ ├── ico_explosif.png │ │ ├── ico_extracting.png │ │ ├── ico_fear.png │ │ ├── ico_feint.png │ │ ├── ico_fire.png │ │ ├── ico_firing_pin.png │ │ ├── ico_fleur_carac_1.png │ │ ├── ico_fleur_carac_1_mask.png │ │ ├── ico_fleur_carac_2.png │ │ ├── ico_fleur_carac_2_mask.png │ │ ├── ico_fleur_carac_3.png │ │ ├── ico_fleur_carac_3_mask.png │ │ ├── ico_focus.png │ │ ├── ico_forage_buff.png │ │ ├── ico_forbid_item.png │ │ ├── ico_forest.png │ │ ├── ico_foreuse.png │ │ ├── ico_gardening.png │ │ ├── ico_gentle.png │ │ ├── ico_goo.png │ │ ├── ico_gripp.png │ │ ├── ico_haircolor.png │ │ ├── ico_haircut.png │ │ ├── ico_hammer.png │ │ ├── ico_harmful.png │ │ ├── ico_hatred.png │ │ ├── ico_heal.png │ │ ├── ico_hit_rate.png │ │ ├── ico_incapacity.png │ │ ├── ico_intelligence.png │ │ ├── ico_interrupt.png │ │ ├── ico_invulnerability.png │ │ ├── ico_jewel_stone.png │ │ ├── ico_jewel_stone_support.png │ │ ├── ico_jungle.png │ │ ├── ico_lacustre.png │ │ ├── ico_landmark_bonus.png │ │ ├── ico_level.png │ │ ├── ico_lining.png │ │ ├── ico_location.png │ │ ├── ico_madness.png │ │ ├── ico_magic.png │ │ ├── ico_magic_action_buff.png │ │ ├── ico_magic_focus.png │ │ ├── ico_magic_target_buff.png │ │ ├── ico_melee_action_buff.png │ │ ├── ico_melee_target_buff.png │ │ ├── ico_mental.png │ │ ├── ico_metabolism.png │ │ ├── ico_mezz.png │ │ ├── ico_misfortune.png │ │ ├── ico_mission_art_fyros.png │ │ ├── ico_mission_art_matis.png │ │ ├── ico_mission_art_tryker.png │ │ ├── ico_mission_art_zorai.png │ │ ├── ico_mission_barrel.png │ │ ├── ico_mission_bottle.png │ │ ├── ico_mission_casket.png │ │ ├── ico_mission_medicine.png │ │ ├── ico_mission_message.png │ │ ├── ico_mission_package.png │ │ ├── ico_mission_pot.png │ │ ├── ico_mission_purse.png │ │ ├── ico_move.png │ │ ├── ico_multi_fight.png │ │ ├── ico_multiple_spots.png │ │ ├── ico_noix.png │ │ ├── ico_opening_hit.png │ │ ├── ico_over_autumn.png │ │ ├── ico_over_degenerated.png │ │ ├── ico_over_fauna.png │ │ ├── ico_over_flora.png │ │ ├── ico_over_hit_arms.png │ │ ├── ico_over_hit_chest.png │ │ ├── ico_over_hit_feet.png │ │ ├── ico_over_hit_feet_hands.png │ │ ├── ico_over_hit_feet_head.png │ │ ├── ico_over_hit_feet_x2.png │ │ ├── ico_over_hit_feint_x3.png │ │ ├── ico_over_hit_hands.png │ │ ├── ico_over_hit_hands_chest.png │ │ ├── ico_over_hit_hands_head.png │ │ ├── ico_over_hit_head.png │ │ ├── ico_over_hit_head_x3.png │ │ ├── ico_over_hit_legs.png │ │ ├── ico_over_homin.png │ │ ├── ico_over_kitin.png │ │ ├── ico_over_magic.png │ │ ├── ico_over_melee.png │ │ ├── ico_over_racial.png │ │ ├── ico_over_range.png │ │ ├── ico_over_special.png │ │ ├── ico_over_spring.png │ │ ├── ico_over_summer.png │ │ ├── ico_over_winter.png │ │ ├── ico_parry.png │ │ ├── ico_piercing.png │ │ ├── ico_pointe.png │ │ ├── ico_poison.png │ │ ├── ico_power.png │ │ ├── ico_preservation.png │ │ ├── ico_primal.png │ │ ├── ico_prime_roots.png │ │ ├── ico_private.png │ │ ├── ico_prospecting.png │ │ ├── ico_quality.png │ │ ├── ico_racine.png │ │ ├── ico_range.png │ │ ├── ico_range_action_buff.png │ │ ├── ico_range_target_buff.png │ │ ├── ico_ricochet.png │ │ ├── ico_root.png │ │ ├── ico_rot.png │ │ ├── ico_safe.png │ │ ├── ico_sap.png │ │ ├── ico_self_damage.png │ │ ├── ico_shaft.png │ │ ├── ico_shield_buff.png │ │ ├── ico_shield_up.png │ │ ├── ico_shielding.png │ │ ├── ico_shockwave.png │ │ ├── ico_sickness.png │ │ ├── ico_slashing.png │ │ ├── ico_slow.png │ │ ├── ico_soft_spot.png │ │ ├── ico_source_knowledge.png │ │ ├── ico_source_time.png │ │ ├── ico_speed.png │ │ ├── ico_speeding_up.png │ │ ├── ico_spell_break.png │ │ ├── ico_spores.png │ │ ├── ico_spray.png │ │ ├── ico_spying.png │ │ ├── ico_stamina.png │ │ ├── ico_strength.png │ │ ├── ico_stuffing.png │ │ ├── ico_stunn.png │ │ ├── ico_task_craft.png │ │ ├── ico_task_done.png │ │ ├── ico_task_failed.png │ │ ├── ico_task_fight.png │ │ ├── ico_task_forage.png │ │ ├── ico_task_generic.png │ │ ├── ico_task_generic_quart.png │ │ ├── ico_task_guild.png │ │ ├── ico_task_rite.png │ │ ├── ico_task_travel.png │ │ ├── ico_tatoo.png │ │ ├── ico_taunt.png │ │ ├── ico_time.png │ │ ├── ico_time_bonus.png │ │ ├── ico_tourbe.png │ │ ├── ico_trigger.png │ │ ├── ico_umbrella.png │ │ ├── ico_use_enchantement.png │ │ ├── ico_vampire.png │ │ ├── ico_visibility.png │ │ ├── ico_war_cry.png │ │ ├── ico_weight.png │ │ ├── ico_wellbalanced.png │ │ ├── ico_will.png │ │ ├── ico_windding.png │ │ ├── ico_wisdom.png │ │ ├── improved_tool.png │ │ ├── item_default.png │ │ ├── item_plan_over.png │ │ ├── lucky_flower.png │ │ ├── mail.png │ │ ├── mektoub_pack.png │ │ ├── mektoub_steed.png │ │ ├── mf_back.png │ │ ├── mf_over.png │ │ ├── mg_glove.png │ │ ├── mission_icon_0.png │ │ ├── mission_icon_1.png │ │ ├── mission_icon_2.png │ │ ├── mission_icon_3.png │ │ ├── mp3.png │ │ ├── mp_amber.png │ │ ├── mp_back_curative.png │ │ ├── mp_back_offensive.png │ │ ├── mp_back_selfonly.png │ │ ├── mp_bark.png │ │ ├── mp_batiment_brique.png │ │ ├── mp_batiment_colonne.png │ │ ├── mp_batiment_colonne_justice.png │ │ ├── mp_batiment_comble.png │ │ ├── mp_batiment_noyau_maduk.png │ │ ├── mp_batiment_ornement.png │ │ ├── mp_batiment_revetement.png │ │ ├── mp_batiment_socle.png │ │ ├── mp_batiment_statue.png │ │ ├── mp_beak.png │ │ ├── mp_blood.png │ │ ├── mp_bone.png │ │ ├── mp_bud.png │ │ ├── mp_buterfly_blue.png │ │ ├── mp_buterfly_cocoon.png │ │ ├── mp_cereal.png │ │ ├── mp_claw.png │ │ ├── mp_dandelion.png │ │ ├── mp_dry │ │ ├── mp_dry wood.png │ │ ├── mp_dry.png │ │ ├── mp_dry_wood.png │ │ ├── mp_dust.png │ │ ├── mp_egg.png │ │ ├── mp_eyes.png │ │ ├── mp_fang.png │ │ ├── mp_fiber.png │ │ ├── mp_filament.png │ │ ├── mp_firefly_abdomen.png │ │ ├── mp_fish_scale.png │ │ ├── mp_flowers.png │ │ ├── mp_fresh_loose_soil.png │ │ ├── mp_fruit.png │ │ ├── mp_generic.png │ │ ├── mp_generic_colorize.png │ │ ├── mp_gomme.png │ │ ├── mp_goo_residue.png │ │ ├── mp_hairs.png │ │ ├── mp_hoof.png │ │ ├── mp_horn.png │ │ ├── mp_horney.png │ │ ├── mp_insect_fossil.png │ │ ├── mp_kitin_flesh.png │ │ ├── mp_kitin_secretion.png │ │ ├── mp_kitinshell.png │ │ ├── mp_larva.png │ │ ├── mp_leaf.png │ │ ├── mp_leather.png │ │ ├── mp_liane.png │ │ ├── mp_lichen.png │ │ ├── mp_ligament.png │ │ ├── mp_mandible.png │ │ ├── mp_meat.png │ │ ├── mp_moss.png │ │ ├── mp_mushroom.png │ │ ├── mp_nail.png │ │ ├── mp_oil.png │ │ ├── mp_over_link.png │ │ ├── mp_parasite.png │ │ ├── mp_pearl.png │ │ ├── mp_pelvis.png │ │ ├── mp_pigment.png │ │ ├── mp_pistil.png │ │ ├── mp_plant_fossil.png │ │ ├── mp_pollen.png │ │ ├── mp_resin.png │ │ ├── mp_ronce.png │ │ ├── mp_rostrum.png │ │ ├── mp_sap.png │ │ ├── mp_sawdust.png │ │ ├── mp_seed.png │ │ ├── mp_shell.png │ │ ├── mp_silk_worm.png │ │ ├── mp_skin.png │ │ ├── mp_skull.png │ │ ├── mp_spiders_web.png │ │ ├── mp_spine.png │ │ ├── mp_stem.png │ │ ├── mp_sting.png │ │ ├── mp_straw.png │ │ ├── mp_suc.png │ │ ├── mp_tail.png │ │ ├── mp_tooth.png │ │ ├── mp_trunk.png │ │ ├── mp_whiskers.png │ │ ├── mp_wing.png │ │ ├── mp_wood.png │ │ ├── mp_wood_node.png │ │ ├── mw_2h_axe.png │ │ ├── mw_2h_lance.png │ │ ├── mw_2h_mace.png │ │ ├── mw_2h_sword.png │ │ ├── mw_axe.png │ │ ├── mw_dagger.png │ │ ├── mw_lance.png │ │ ├── mw_mace.png │ │ ├── mw_staff.png │ │ ├── mw_sword.png │ │ ├── no_action.png │ │ ├── num_slash.png │ │ ├── op_back.png │ │ ├── op_over_break.png │ │ ├── op_over_less.png │ │ ├── op_over_more.png │ │ ├── pa_anklet.png │ │ ├── pa_back.png │ │ ├── pa_bracelet.png │ │ ├── pa_diadem.png │ │ ├── pa_earring.png │ │ ├── pa_over_break.png │ │ ├── pa_over_less.png │ │ ├── pa_over_more.png │ │ ├── pa_pendant.png │ │ ├── pa_ring.png │ │ ├── profile.png │ │ ├── protect_amber.png │ │ ├── pvp_ally_0.png │ │ ├── pvp_ally_1.png │ │ ├── pvp_ally_2.png │ │ ├── pvp_ally_3.png │ │ ├── pvp_ally_4.png │ │ ├── pvp_ally_6.png │ │ ├── pvp_ally_primas.png │ │ ├── pvp_ally_ranger.png │ │ ├── pvp_aura.png │ │ ├── pvp_aura_mask.png │ │ ├── pvp_boost.png │ │ ├── pvp_boost_mask.png │ │ ├── pvp_enemy_0.png │ │ ├── pvp_enemy_1.png │ │ ├── pvp_enemy_2.png │ │ ├── pvp_enemy_3.png │ │ ├── pvp_enemy_4.png │ │ ├── pvp_enemy_6.png │ │ ├── pvp_enemy_marauder.png │ │ ├── pvp_enemy_trytonist.png │ │ ├── pw_4.png │ │ ├── pw_5.png │ │ ├── pw_6.png │ │ ├── pw_7.png │ │ ├── pw_heavy.png │ │ ├── pw_light.png │ │ ├── pw_medium.png │ │ ├── quest_coeur.png │ │ ├── quest_foie.png │ │ ├── quest_jeton.png │ │ ├── quest_langue.png │ │ ├── quest_louche.png │ │ ├── quest_oreille.png │ │ ├── quest_patte.png │ │ ├── quest_poils.png │ │ ├── quest_queue.png │ │ ├── quest_ticket.png │ │ ├── r2_live.png │ │ ├── r2_live_over.png │ │ ├── r2_live_pushed.png │ │ ├── r2_palette_entities.png │ │ ├── requirement.png │ │ ├── rm_f.png │ │ ├── rm_f_upgrade.png │ │ ├── rm_h.png │ │ ├── rm_h_upgrade.png │ │ ├── rm_m.png │ │ ├── rm_m_upgrade.png │ │ ├── rm_r.png │ │ ├── rm_r_upgrade.png │ │ ├── rpjob_200.png │ │ ├── rpjob_201.png │ │ ├── rpjob_202.png │ │ ├── rpjob_203.png │ │ ├── rpjob_204.png │ │ ├── rpjob_205.png │ │ ├── rpjob_206.png │ │ ├── rpjob_207.png │ │ ├── rpjob_advanced.png │ │ ├── rpjob_elementary.png │ │ ├── rpjob_roleplay.png │ │ ├── rpjob_task.png │ │ ├── rpjob_task_certificats.png │ │ ├── rpjob_task_convert.png │ │ ├── rpjob_task_elementary.png │ │ ├── rpjob_task_generic.png │ │ ├── rpjob_task_upgrade.png │ │ ├── rpjobitem_200_a.png │ │ ├── rpjobitem_200_b.png │ │ ├── rpjobitem_200_c.png │ │ ├── rpjobitem_201_a.png │ │ ├── rpjobitem_201_b.png │ │ ├── rpjobitem_201_c.png │ │ ├── rpjobitem_202_a.png │ │ ├── rpjobitem_202_b.png │ │ ├── rpjobitem_202_c.png │ │ ├── rpjobitem_203_a.png │ │ ├── rpjobitem_203_b.png │ │ ├── rpjobitem_203_c.png │ │ ├── rpjobitem_204_a.png │ │ ├── rpjobitem_204_b.png │ │ ├── rpjobitem_204_c.png │ │ ├── rpjobitem_205_a.png │ │ ├── rpjobitem_205_b.png │ │ ├── rpjobitem_205_c.png │ │ ├── rpjobitem_206_a.png │ │ ├── rpjobitem_206_b.png │ │ ├── rpjobitem_206_c.png │ │ ├── rpjobitem_207_a.png │ │ ├── rpjobitem_207_b.png │ │ ├── rpjobitem_207_c.png │ │ ├── rpjobitem_certifications.png │ │ ├── rw_autolaunch.png │ │ ├── rw_bowgun.png │ │ ├── rw_grenade.png │ │ ├── rw_harpoongun.png │ │ ├── rw_launcher.png │ │ ├── rw_pistol.png │ │ ├── rw_pistolarc.png │ │ ├── rw_rifle.png │ │ ├── sapload.png │ │ ├── sh_buckler.png │ │ ├── sh_large_shield.png │ │ ├── small_task_craft.png │ │ ├── small_task_done.png │ │ ├── small_task_failed.png │ │ ├── small_task_fight.png │ │ ├── small_task_forage.png │ │ ├── small_task_generic.png │ │ ├── small_task_guild.png │ │ ├── small_task_rite.png │ │ ├── small_task_travel.png │ │ ├── spe_beast.png │ │ ├── spe_com.png │ │ ├── spe_inventory.png │ │ ├── spe_labs.png │ │ ├── spe_memory.png │ │ ├── spe_options.png │ │ ├── spe_status.png │ │ ├── stimulating_water.png │ │ ├── tb_action_attack.png │ │ ├── tb_action_config.png │ │ ├── tb_action_disband.png │ │ ├── tb_action_disengage.png │ │ ├── tb_action_extract.png │ │ ├── tb_action_invite.png │ │ ├── tb_action_kick.png │ │ ├── tb_action_move.png │ │ ├── tb_action_run.png │ │ ├── tb_action_sit.png │ │ ├── tb_action_stand.png │ │ ├── tb_action_stop.png │ │ ├── tb_action_talk.png │ │ ├── tb_action_walk.png │ │ ├── tb_animals.png │ │ ├── tb_config.png │ │ ├── tb_connection.png │ │ ├── tb_contacts.png │ │ ├── tb_desk_1.png │ │ ├── tb_desk_2.png │ │ ├── tb_desk_3.png │ │ ├── tb_desk_4.png │ │ ├── tb_faction.png │ │ ├── tb_forum.png │ │ ├── tb_guild.png │ │ ├── tb_help2.png │ │ ├── tb_keys.png │ │ ├── tb_macros.png │ │ ├── tb_mail.png │ │ ├── tb_mode.png │ │ ├── tb_mode_dodge.png │ │ ├── tb_mode_parry.png │ │ ├── tb_over.png │ │ ├── tb_support.png │ │ ├── tb_team.png │ │ ├── tb_windows.png │ │ ├── tetekitin.png │ │ ├── to_ammo.png │ │ ├── to_armor.png │ │ ├── to_cooking_pot.png │ │ ├── to_fishing_rod.png │ │ ├── to_forage.png │ │ ├── to_hammer.png │ │ ├── to_jewelry_hammer.png │ │ ├── to_jewels.png │ │ ├── to_leathercutter.png │ │ ├── to_melee.png │ │ ├── to_needle.png │ │ ├── to_pestle.png │ │ ├── to_range.png │ │ ├── to_searake.png │ │ ├── to_spade.png │ │ ├── to_stick.png │ │ ├── to_tunneling_knife.png │ │ ├── to_whip.png │ │ ├── to_wrench.png │ │ ├── tp_caravane.png │ │ ├── tp_kami.png │ │ ├── us_back_0.png │ │ ├── us_back_1.png │ │ ├── us_back_2.png │ │ ├── us_back_3.png │ │ ├── us_back_4.png │ │ ├── us_back_5.png │ │ ├── us_back_6.png │ │ ├── us_back_7.png │ │ ├── us_back_8.png │ │ ├── us_back_9.png │ │ ├── us_ico_0.png │ │ ├── us_ico_1.png │ │ ├── us_ico_2.png │ │ ├── us_ico_3.png │ │ ├── us_ico_4.png │ │ ├── us_ico_5.png │ │ ├── us_ico_6.png │ │ ├── us_ico_7.png │ │ ├── us_ico_8.png │ │ ├── us_ico_9.png │ │ ├── us_over_0.png │ │ ├── us_over_1.png │ │ ├── us_over_2.png │ │ ├── us_over_3.png │ │ ├── us_over_4.png │ │ ├── w_am_logo.png │ │ ├── w_leader.png │ │ ├── w_major.png │ │ ├── w_pa_anklet.png │ │ ├── w_pa_bracelet.png │ │ ├── w_pa_diadem.png │ │ ├── w_pa_earring.png │ │ ├── w_pa_pendant.png │ │ ├── w_pa_ring.png │ │ ├── w_slot_shortcut_id0.png │ │ ├── w_slot_shortcut_id1.png │ │ ├── w_slot_shortcut_id2.png │ │ ├── w_slot_shortcut_id3.png │ │ ├── w_slot_shortcut_id4.png │ │ ├── w_slot_shortcut_id5.png │ │ ├── w_slot_shortcut_id6.png │ │ ├── w_slot_shortcut_id7.png │ │ ├── w_slot_shortcut_id8.png │ │ ├── w_slot_shortcut_id9.png │ │ ├── w_slot_shortcut_shift_id0.png │ │ ├── w_slot_shortcut_shift_id1.png │ │ ├── w_slot_shortcut_shift_id2.png │ │ ├── w_slot_shortcut_shift_id3.png │ │ ├── w_slot_shortcut_shift_id4.png │ │ ├── w_slot_shortcut_shift_id5.png │ │ ├── w_slot_shortcut_shift_id6.png │ │ ├── w_slot_shortcut_shift_id7.png │ │ ├── w_slot_shortcut_shift_id8.png │ │ ├── w_slot_shortcut_shift_id9.png │ │ └── xp_cat_green.png ├── index.php ├── player_auth.php ├── ryzom_api.php ├── server │ ├── auth.php │ ├── config.php.default │ ├── guilds.php │ ├── hmagic.php │ ├── item_icon.php │ ├── time.php │ ├── user.php │ └── utils.php └── time.php └── app ├── app_test ├── favicon.png ├── index.php └── lang.php ├── config.php.default ├── index.php └── lang.php /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/FindCEGUI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindCEGUI.cmake -------------------------------------------------------------------------------- /CMakeModules/FindCppTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindCppTest.cmake -------------------------------------------------------------------------------- /CMakeModules/FindDInput.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindDInput.cmake -------------------------------------------------------------------------------- /CMakeModules/FindDSound.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindDSound.cmake -------------------------------------------------------------------------------- /CMakeModules/FindEFXUtil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindEFXUtil.cmake -------------------------------------------------------------------------------- /CMakeModules/FindFMOD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindFMOD.cmake -------------------------------------------------------------------------------- /CMakeModules/FindGTK2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindGTK2.cmake -------------------------------------------------------------------------------- /CMakeModules/FindIconv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindIconv.cmake -------------------------------------------------------------------------------- /CMakeModules/FindJpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindJpeg.cmake -------------------------------------------------------------------------------- /CMakeModules/FindLibwww.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindLibwww.cmake -------------------------------------------------------------------------------- /CMakeModules/FindLuabind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindLuabind.cmake -------------------------------------------------------------------------------- /CMakeModules/FindMySQL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindMySQL.cmake -------------------------------------------------------------------------------- /CMakeModules/FindOgg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindOgg.cmake -------------------------------------------------------------------------------- /CMakeModules/FindS3TC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindS3TC.cmake -------------------------------------------------------------------------------- /CMakeModules/FindSTLport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindSTLport.cmake -------------------------------------------------------------------------------- /CMakeModules/FindSquish.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindSquish.cmake -------------------------------------------------------------------------------- /CMakeModules/FindVorbis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/FindVorbis.cmake -------------------------------------------------------------------------------- /CMakeModules/GetRevision.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/GetRevision.cmake -------------------------------------------------------------------------------- /CMakeModules/PCHSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/PCHSupport.cmake -------------------------------------------------------------------------------- /CMakeModules/nel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakeModules/nel.cmake -------------------------------------------------------------------------------- /CMakePackaging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CMakePackaging.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/COPYING -------------------------------------------------------------------------------- /CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/CTestConfig.cmake -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/README -------------------------------------------------------------------------------- /changelog.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/changelog.template -------------------------------------------------------------------------------- /config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/config.h.cmake -------------------------------------------------------------------------------- /nel/AUTHORS: -------------------------------------------------------------------------------- 1 | Please check www.nevrax.org for more information -------------------------------------------------------------------------------- /nel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/CMakeLists.txt -------------------------------------------------------------------------------- /nel/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/COPYING -------------------------------------------------------------------------------- /nel/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/ChangeLog -------------------------------------------------------------------------------- /nel/INSTALL: -------------------------------------------------------------------------------- 1 | 2 | Please check www.nevrax.org for more information 3 | -------------------------------------------------------------------------------- /nel/NEWS: -------------------------------------------------------------------------------- 1 | Please check www.nevrax.org for more information -------------------------------------------------------------------------------- /nel/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/README -------------------------------------------------------------------------------- /nel/doc/Doxyfile.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/Doxyfile.cmake.in -------------------------------------------------------------------------------- /nel/doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/html/index.html -------------------------------------------------------------------------------- /nel/doc/make_all_dox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/make_all_dox.sh -------------------------------------------------------------------------------- /nel/doc/make_nel_dox.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/make_nel_dox.bat -------------------------------------------------------------------------------- /nel/doc/make_nel_dox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/make_nel_dox.sh -------------------------------------------------------------------------------- /nel/doc/make_nelns_dox.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/make_nelns_dox.bat -------------------------------------------------------------------------------- /nel/doc/make_nelns_dox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/make_nelns_dox.sh -------------------------------------------------------------------------------- /nel/doc/make_neltools_dox.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/make_neltools_dox.bat -------------------------------------------------------------------------------- /nel/doc/make_neltools_dox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/make_neltools_dox.sh -------------------------------------------------------------------------------- /nel/doc/make_packages_doc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/make_packages_doc.bat -------------------------------------------------------------------------------- /nel/doc/make_packages_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/make_packages_doc.sh -------------------------------------------------------------------------------- /nel/doc/misc/event_pump.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/misc/event_pump.vsd -------------------------------------------------------------------------------- /nel/doc/nel.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/nel.dox -------------------------------------------------------------------------------- /nel/doc/nel.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/nel.hhp -------------------------------------------------------------------------------- /nel/doc/nelns.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/nelns.dox -------------------------------------------------------------------------------- /nel/doc/nelns.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/nelns.hhp -------------------------------------------------------------------------------- /nel/doc/neltools.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/neltools.dox -------------------------------------------------------------------------------- /nel/doc/neltools.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/neltools.hhp -------------------------------------------------------------------------------- /nel/doc/net/login_system.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/net/login_system.vsd -------------------------------------------------------------------------------- /nel/doc/net/net.dxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/doc/net/net.dxt -------------------------------------------------------------------------------- /nel/include/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SUBDIRS(nel) 2 | 3 | -------------------------------------------------------------------------------- /nel/include/nel/3d/anim_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/anim_ctrl.h -------------------------------------------------------------------------------- /nel/include/nel/3d/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/animation.h -------------------------------------------------------------------------------- /nel/include/nel/3d/bone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/bone.h -------------------------------------------------------------------------------- /nel/include/nel/3d/bsp_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/bsp_tree.h -------------------------------------------------------------------------------- /nel/include/nel/3d/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/camera.h -------------------------------------------------------------------------------- /nel/include/nel/3d/clip_trav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/clip_trav.h -------------------------------------------------------------------------------- /nel/include/nel/3d/cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/cloud.h -------------------------------------------------------------------------------- /nel/include/nel/3d/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/cluster.h -------------------------------------------------------------------------------- /nel/include/nel/3d/cube_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/cube_grid.h -------------------------------------------------------------------------------- /nel/include/nel/3d/debug_vb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/debug_vb.h -------------------------------------------------------------------------------- /nel/include/nel/3d/deform_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/deform_2d.h -------------------------------------------------------------------------------- /nel/include/nel/3d/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/driver.h -------------------------------------------------------------------------------- /nel/include/nel/3d/dru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/dru.h -------------------------------------------------------------------------------- /nel/include/nel/3d/frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/frustum.h -------------------------------------------------------------------------------- /nel/include/nel/3d/heat_haze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/heat_haze.h -------------------------------------------------------------------------------- /nel/include/nel/3d/hrc_trav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/hrc_trav.h -------------------------------------------------------------------------------- /nel/include/nel/3d/init_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/init_3d.h -------------------------------------------------------------------------------- /nel/include/nel/3d/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/key.h -------------------------------------------------------------------------------- /nel/include/nel/3d/landscape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/landscape.h -------------------------------------------------------------------------------- /nel/include/nel/3d/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/light.h -------------------------------------------------------------------------------- /nel/include/nel/3d/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/material.h -------------------------------------------------------------------------------- /nel/include/nel/3d/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/mesh.h -------------------------------------------------------------------------------- /nel/include/nel/3d/mesh_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/mesh_base.h -------------------------------------------------------------------------------- /nel/include/nel/3d/mesh_geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/mesh_geom.h -------------------------------------------------------------------------------- /nel/include/nel/3d/mesh_mrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/mesh_mrm.h -------------------------------------------------------------------------------- /nel/include/nel/3d/mini_col.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/mini_col.h -------------------------------------------------------------------------------- /nel/include/nel/3d/mrm_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/mrm_mesh.h -------------------------------------------------------------------------------- /nel/include/nel/3d/nelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/nelu.h -------------------------------------------------------------------------------- /nel/include/nel/3d/noise_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/noise_3d.h -------------------------------------------------------------------------------- /nel/include/nel/3d/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/patch.h -------------------------------------------------------------------------------- /nel/include/nel/3d/portal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/portal.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_attrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_attrib.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_color.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_dot.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_edit.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_face.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_float.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_force.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_int.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_light.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_lod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_lod.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_macro.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_mesh.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_misc.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_quad.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_ribbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_ribbon.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_sound.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_util.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ps_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ps_zone.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ptr_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ptr_set.h -------------------------------------------------------------------------------- /nel/include/nel/3d/quad_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/quad_grid.h -------------------------------------------------------------------------------- /nel/include/nel/3d/quad_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/quad_tree.h -------------------------------------------------------------------------------- /nel/include/nel/3d/raw_skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/raw_skin.h -------------------------------------------------------------------------------- /nel/include/nel/3d/ray_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/ray_mesh.h -------------------------------------------------------------------------------- /nel/include/nel/3d/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/scene.h -------------------------------------------------------------------------------- /nel/include/nel/3d/scissor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/scissor.h -------------------------------------------------------------------------------- /nel/include/nel/3d/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/shader.h -------------------------------------------------------------------------------- /nel/include/nel/3d/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/shape.h -------------------------------------------------------------------------------- /nel/include/nel/3d/tess_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/tess_list.h -------------------------------------------------------------------------------- /nel/include/nel/3d/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/texture.h -------------------------------------------------------------------------------- /nel/include/nel/3d/tile_bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/tile_bank.h -------------------------------------------------------------------------------- /nel/include/nel/3d/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/track.h -------------------------------------------------------------------------------- /nel/include/nel/3d/track_tcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/track_tcb.h -------------------------------------------------------------------------------- /nel/include/nel/3d/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/transform.h -------------------------------------------------------------------------------- /nel/include/nel/3d/u_bone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/u_bone.h -------------------------------------------------------------------------------- /nel/include/nel/3d/u_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/u_camera.h -------------------------------------------------------------------------------- /nel/include/nel/3d/u_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/u_driver.h -------------------------------------------------------------------------------- /nel/include/nel/3d/u_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/u_light.h -------------------------------------------------------------------------------- /nel/include/nel/3d/u_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/u_scene.h -------------------------------------------------------------------------------- /nel/include/nel/3d/u_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/u_shape.h -------------------------------------------------------------------------------- /nel/include/nel/3d/u_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/u_texture.h -------------------------------------------------------------------------------- /nel/include/nel/3d/u_track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/u_track.h -------------------------------------------------------------------------------- /nel/include/nel/3d/u_water.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/u_water.h -------------------------------------------------------------------------------- /nel/include/nel/3d/vegetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/vegetable.h -------------------------------------------------------------------------------- /nel/include/nel/3d/viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/viewport.h -------------------------------------------------------------------------------- /nel/include/nel/3d/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/3d/zone.h -------------------------------------------------------------------------------- /nel/include/nel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/CMakeLists.txt -------------------------------------------------------------------------------- /nel/include/nel/georges/form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/georges/form.h -------------------------------------------------------------------------------- /nel/include/nel/georges/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/georges/type.h -------------------------------------------------------------------------------- /nel/include/nel/misc/aabbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/aabbox.h -------------------------------------------------------------------------------- /nel/include/nel/misc/algo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/algo.h -------------------------------------------------------------------------------- /nel/include/nel/misc/bit_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/bit_set.h -------------------------------------------------------------------------------- /nel/include/nel/misc/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/bitmap.h -------------------------------------------------------------------------------- /nel/include/nel/misc/bsphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/bsphere.h -------------------------------------------------------------------------------- /nel/include/nel/misc/co_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/co_task.h -------------------------------------------------------------------------------- /nel/include/nel/misc/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/command.h -------------------------------------------------------------------------------- /nel/include/nel/misc/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/common.h -------------------------------------------------------------------------------- /nel/include/nel/misc/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/debug.h -------------------------------------------------------------------------------- /nel/include/nel/misc/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/events.h -------------------------------------------------------------------------------- /nel/include/nel/misc/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/factory.h -------------------------------------------------------------------------------- /nel/include/nel/misc/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/file.h -------------------------------------------------------------------------------- /nel/include/nel/misc/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/i18n.h -------------------------------------------------------------------------------- /nel/include/nel/misc/i_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/i_xml.h -------------------------------------------------------------------------------- /nel/include/nel/misc/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/line.h -------------------------------------------------------------------------------- /nel/include/nel/misc/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/log.h -------------------------------------------------------------------------------- /nel/include/nel/misc/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/matrix.h -------------------------------------------------------------------------------- /nel/include/nel/misc/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/md5.h -------------------------------------------------------------------------------- /nel/include/nel/misc/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/mutex.h -------------------------------------------------------------------------------- /nel/include/nel/misc/o_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/o_xml.h -------------------------------------------------------------------------------- /nel/include/nel/misc/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/path.h -------------------------------------------------------------------------------- /nel/include/nel/misc/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/plane.h -------------------------------------------------------------------------------- /nel/include/nel/misc/polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/polygon.h -------------------------------------------------------------------------------- /nel/include/nel/misc/quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/quad.h -------------------------------------------------------------------------------- /nel/include/nel/misc/quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/quat.h -------------------------------------------------------------------------------- /nel/include/nel/misc/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/random.h -------------------------------------------------------------------------------- /nel/include/nel/misc/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/rect.h -------------------------------------------------------------------------------- /nel/include/nel/misc/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/report.h -------------------------------------------------------------------------------- /nel/include/nel/misc/rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/rgba.h -------------------------------------------------------------------------------- /nel/include/nel/misc/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/sha1.h -------------------------------------------------------------------------------- /nel/include/nel/misc/sstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/sstring.h -------------------------------------------------------------------------------- /nel/include/nel/misc/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/stream.h -------------------------------------------------------------------------------- /nel/include/nel/misc/tds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/tds.h -------------------------------------------------------------------------------- /nel/include/nel/misc/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/thread.h -------------------------------------------------------------------------------- /nel/include/nel/misc/time_nl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/time_nl.h -------------------------------------------------------------------------------- /nel/include/nel/misc/uv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/uv.h -------------------------------------------------------------------------------- /nel/include/nel/misc/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/vector.h -------------------------------------------------------------------------------- /nel/include/nel/misc/vectord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/misc/vectord.h -------------------------------------------------------------------------------- /nel/include/nel/net/admin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/net/admin.h -------------------------------------------------------------------------------- /nel/include/nel/net/buf_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/net/buf_sock.h -------------------------------------------------------------------------------- /nel/include/nel/net/email.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/net/email.h -------------------------------------------------------------------------------- /nel/include/nel/net/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/net/message.h -------------------------------------------------------------------------------- /nel/include/nel/net/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/net/module.h -------------------------------------------------------------------------------- /nel/include/nel/net/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/net/sock.h -------------------------------------------------------------------------------- /nel/include/nel/pacs/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/include/nel/pacs/chain.h -------------------------------------------------------------------------------- /nel/nel-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/nel-config.in -------------------------------------------------------------------------------- /nel/resources/nel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/resources/nel.bmp -------------------------------------------------------------------------------- /nel/resources/nel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/resources/nel.png -------------------------------------------------------------------------------- /nel/resources/nevraxpill.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/resources/nevraxpill.ico -------------------------------------------------------------------------------- /nel/samples/3d/font/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/samples/3d/font/main.cpp -------------------------------------------------------------------------------- /nel/samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/samples/CMakeLists.txt -------------------------------------------------------------------------------- /nel/samples/georges/int.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/samples/georges/int.typ -------------------------------------------------------------------------------- /nel/samples/georges/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/samples/georges/main.cpp -------------------------------------------------------------------------------- /nel/samples/misc/i18n/de.uxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/samples/misc/i18n/de.uxt -------------------------------------------------------------------------------- /nel/samples/misc/i18n/en.uxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/samples/misc/i18n/en.uxt -------------------------------------------------------------------------------- /nel/samples/misc/i18n/fr.uxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/samples/misc/i18n/fr.uxt -------------------------------------------------------------------------------- /nel/samples/net/chat/client.cfg: -------------------------------------------------------------------------------- 1 | 2 | LSHost = "localhost"; 3 | -------------------------------------------------------------------------------- /nel/samples/net/chat/kbhit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/samples/net/chat/kbhit.h -------------------------------------------------------------------------------- /nel/samples/net/udp/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/samples/net/udp/graph.h -------------------------------------------------------------------------------- /nel/samples/net/udp/simlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/samples/net/udp/simlag.h -------------------------------------------------------------------------------- /nel/samples/pacs/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/samples/pacs/main.cpp -------------------------------------------------------------------------------- /nel/samples/pacs/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/samples/pacs/object.cpp -------------------------------------------------------------------------------- /nel/samples/pacs/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/samples/pacs/object.h -------------------------------------------------------------------------------- /nel/samples/pacs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/samples/pacs/readme.txt -------------------------------------------------------------------------------- /nel/src/3d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/CMakeLists.txt -------------------------------------------------------------------------------- /nel/src/3d/anim_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/anim_ctrl.cpp -------------------------------------------------------------------------------- /nel/src/3d/animatable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/animatable.cpp -------------------------------------------------------------------------------- /nel/src/3d/animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/animation.cpp -------------------------------------------------------------------------------- /nel/src/3d/animation_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/animation_set.cpp -------------------------------------------------------------------------------- /nel/src/3d/bezier_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/bezier_patch.cpp -------------------------------------------------------------------------------- /nel/src/3d/bloom_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/bloom_effect.cpp -------------------------------------------------------------------------------- /nel/src/3d/bone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/bone.cpp -------------------------------------------------------------------------------- /nel/src/3d/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/camera.cpp -------------------------------------------------------------------------------- /nel/src/3d/camera_col.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/camera_col.cpp -------------------------------------------------------------------------------- /nel/src/3d/channel_mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/channel_mixer.cpp -------------------------------------------------------------------------------- /nel/src/3d/clip_trav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/clip_trav.cpp -------------------------------------------------------------------------------- /nel/src/3d/cloud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/cloud.cpp -------------------------------------------------------------------------------- /nel/src/3d/cloud_scape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/cloud_scape.cpp -------------------------------------------------------------------------------- /nel/src/3d/cluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/cluster.cpp -------------------------------------------------------------------------------- /nel/src/3d/cube_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/cube_grid.cpp -------------------------------------------------------------------------------- /nel/src/3d/debug_vb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/debug_vb.cpp -------------------------------------------------------------------------------- /nel/src/3d/deform_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/deform_2d.cpp -------------------------------------------------------------------------------- /nel/src/3d/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/driver.cpp -------------------------------------------------------------------------------- /nel/src/3d/driver_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/driver_user.cpp -------------------------------------------------------------------------------- /nel/src/3d/driver_user2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/driver_user2.cpp -------------------------------------------------------------------------------- /nel/src/3d/dru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/dru.cpp -------------------------------------------------------------------------------- /nel/src/3d/fast_ptr_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/fast_ptr_list.cpp -------------------------------------------------------------------------------- /nel/src/3d/flare_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/flare_model.cpp -------------------------------------------------------------------------------- /nel/src/3d/flare_shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/flare_shape.cpp -------------------------------------------------------------------------------- /nel/src/3d/font_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/font_manager.cpp -------------------------------------------------------------------------------- /nel/src/3d/frustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/frustum.cpp -------------------------------------------------------------------------------- /nel/src/3d/heat_haze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/heat_haze.cpp -------------------------------------------------------------------------------- /nel/src/3d/height_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/height_map.cpp -------------------------------------------------------------------------------- /nel/src/3d/hrc_trav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/hrc_trav.cpp -------------------------------------------------------------------------------- /nel/src/3d/index_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/index_buffer.cpp -------------------------------------------------------------------------------- /nel/src/3d/init_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/init_3d.cpp -------------------------------------------------------------------------------- /nel/src/3d/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/key.cpp -------------------------------------------------------------------------------- /nel/src/3d/landscape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/landscape.cpp -------------------------------------------------------------------------------- /nel/src/3d/landscape_def.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/landscape_def.cpp -------------------------------------------------------------------------------- /nel/src/3d/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/light.cpp -------------------------------------------------------------------------------- /nel/src/3d/light_trav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/light_trav.cpp -------------------------------------------------------------------------------- /nel/src/3d/light_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/light_user.cpp -------------------------------------------------------------------------------- /nel/src/3d/logic_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/logic_info.cpp -------------------------------------------------------------------------------- /nel/src/3d/material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/material.cpp -------------------------------------------------------------------------------- /nel/src/3d/matrix_3x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/matrix_3x4.cpp -------------------------------------------------------------------------------- /nel/src/3d/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/mesh.cpp -------------------------------------------------------------------------------- /nel/src/3d/mesh_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/mesh_base.cpp -------------------------------------------------------------------------------- /nel/src/3d/mesh_blender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/mesh_blender.cpp -------------------------------------------------------------------------------- /nel/src/3d/mesh_geom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/mesh_geom.cpp -------------------------------------------------------------------------------- /nel/src/3d/mesh_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/mesh_instance.cpp -------------------------------------------------------------------------------- /nel/src/3d/mesh_morpher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/mesh_morpher.cpp -------------------------------------------------------------------------------- /nel/src/3d/mesh_mrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/mesh_mrm.cpp -------------------------------------------------------------------------------- /nel/src/3d/mesh_mrm_skin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/mesh_mrm_skin.cpp -------------------------------------------------------------------------------- /nel/src/3d/mini_col.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/mini_col.cpp -------------------------------------------------------------------------------- /nel/src/3d/motion_blur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/motion_blur.cpp -------------------------------------------------------------------------------- /nel/src/3d/mrm_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/mrm_builder.cpp -------------------------------------------------------------------------------- /nel/src/3d/mrm_internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/mrm_internal.cpp -------------------------------------------------------------------------------- /nel/src/3d/mrm_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/mrm_mesh.cpp -------------------------------------------------------------------------------- /nel/src/3d/nel-3d.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/nel-3d.pc -------------------------------------------------------------------------------- /nel/src/3d/nel-3d.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/nel-3d.pc.in -------------------------------------------------------------------------------- /nel/src/3d/nelu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/nelu.cpp -------------------------------------------------------------------------------- /nel/src/3d/noise_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/noise_3d.cpp -------------------------------------------------------------------------------- /nel/src/3d/packed_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/packed_world.cpp -------------------------------------------------------------------------------- /nel/src/3d/packed_zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/packed_zone.cpp -------------------------------------------------------------------------------- /nel/src/3d/patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/patch.cpp -------------------------------------------------------------------------------- /nel/src/3d/patch_noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/patch_noise.cpp -------------------------------------------------------------------------------- /nel/src/3d/patch_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/patch_render.cpp -------------------------------------------------------------------------------- /nel/src/3d/point_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/point_light.cpp -------------------------------------------------------------------------------- /nel/src/3d/portal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/portal.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_allocator.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_color.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_dot.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_emitter.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_face.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_fan_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_fan_light.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_float.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_force.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_force.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_int.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_light.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_located.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_located.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_mesh.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_particle.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_particle2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_particle2.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_quad.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_ribbon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_ribbon.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_shockwave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_shockwave.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_sound.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_tail_dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_tail_dot.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_util.cpp -------------------------------------------------------------------------------- /nel/src/3d/ps_zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ps_zone.cpp -------------------------------------------------------------------------------- /nel/src/3d/ptr_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ptr_set.cpp -------------------------------------------------------------------------------- /nel/src/3d/quad_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/quad_effect.cpp -------------------------------------------------------------------------------- /nel/src/3d/quad_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/quad_grid.cpp -------------------------------------------------------------------------------- /nel/src/3d/radix_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/radix_sort.cpp -------------------------------------------------------------------------------- /nel/src/3d/raw_skin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/raw_skin.cpp -------------------------------------------------------------------------------- /nel/src/3d/raw_skinned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/raw_skinned.cpp -------------------------------------------------------------------------------- /nel/src/3d/ray_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/ray_mesh.cpp -------------------------------------------------------------------------------- /nel/src/3d/register_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/register_3d.cpp -------------------------------------------------------------------------------- /nel/src/3d/render_trav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/render_trav.cpp -------------------------------------------------------------------------------- /nel/src/3d/root_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/root_model.cpp -------------------------------------------------------------------------------- /nel/src/3d/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/scene.cpp -------------------------------------------------------------------------------- /nel/src/3d/scene_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/scene_group.cpp -------------------------------------------------------------------------------- /nel/src/3d/scene_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/scene_user.cpp -------------------------------------------------------------------------------- /nel/src/3d/scissor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/scissor.cpp -------------------------------------------------------------------------------- /nel/src/3d/seg_remanence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/seg_remanence.cpp -------------------------------------------------------------------------------- /nel/src/3d/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/shader.cpp -------------------------------------------------------------------------------- /nel/src/3d/shadow_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/shadow_map.cpp -------------------------------------------------------------------------------- /nel/src/3d/shadow_skin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/shadow_skin.cpp -------------------------------------------------------------------------------- /nel/src/3d/shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/shape.cpp -------------------------------------------------------------------------------- /nel/src/3d/shape_bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/shape_bank.cpp -------------------------------------------------------------------------------- /nel/src/3d/shape_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/shape_info.cpp -------------------------------------------------------------------------------- /nel/src/3d/std3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/std3d.cpp -------------------------------------------------------------------------------- /nel/src/3d/std3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/std3d.h -------------------------------------------------------------------------------- /nel/src/3d/stripifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/stripifier.cpp -------------------------------------------------------------------------------- /nel/src/3d/tess_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/tess_block.cpp -------------------------------------------------------------------------------- /nel/src/3d/tess_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/tess_list.cpp -------------------------------------------------------------------------------- /nel/src/3d/tessellation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/tessellation.cpp -------------------------------------------------------------------------------- /nel/src/3d/text_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/text_context.cpp -------------------------------------------------------------------------------- /nel/src/3d/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/texture.cpp -------------------------------------------------------------------------------- /nel/src/3d/texture_blank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/texture_blank.cpp -------------------------------------------------------------------------------- /nel/src/3d/texture_blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/texture_blend.cpp -------------------------------------------------------------------------------- /nel/src/3d/texture_bloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/texture_bloom.cpp -------------------------------------------------------------------------------- /nel/src/3d/texture_bump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/texture_bump.cpp -------------------------------------------------------------------------------- /nel/src/3d/texture_cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/texture_cube.cpp -------------------------------------------------------------------------------- /nel/src/3d/texture_dlm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/texture_dlm.cpp -------------------------------------------------------------------------------- /nel/src/3d/texture_far.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/texture_far.cpp -------------------------------------------------------------------------------- /nel/src/3d/texture_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/texture_file.cpp -------------------------------------------------------------------------------- /nel/src/3d/texture_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/texture_font.cpp -------------------------------------------------------------------------------- /nel/src/3d/texture_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/texture_mem.cpp -------------------------------------------------------------------------------- /nel/src/3d/texture_near.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/texture_near.cpp -------------------------------------------------------------------------------- /nel/src/3d/texture_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/texture_user.cpp -------------------------------------------------------------------------------- /nel/src/3d/tile_bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/tile_bank.cpp -------------------------------------------------------------------------------- /nel/src/3d/tile_color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/tile_color.cpp -------------------------------------------------------------------------------- /nel/src/3d/tile_element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/tile_element.cpp -------------------------------------------------------------------------------- /nel/src/3d/tile_far_bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/tile_far_bank.cpp -------------------------------------------------------------------------------- /nel/src/3d/tile_lumel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/tile_lumel.cpp -------------------------------------------------------------------------------- /nel/src/3d/track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/track.cpp -------------------------------------------------------------------------------- /nel/src/3d/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/transform.cpp -------------------------------------------------------------------------------- /nel/src/3d/transformable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/transformable.cpp -------------------------------------------------------------------------------- /nel/src/3d/trav_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/trav_scene.cpp -------------------------------------------------------------------------------- /nel/src/3d/u_bone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/u_bone.cpp -------------------------------------------------------------------------------- /nel/src/3d/u_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/u_camera.cpp -------------------------------------------------------------------------------- /nel/src/3d/u_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/u_instance.cpp -------------------------------------------------------------------------------- /nel/src/3d/u_material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/u_material.cpp -------------------------------------------------------------------------------- /nel/src/3d/u_point_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/u_point_light.cpp -------------------------------------------------------------------------------- /nel/src/3d/u_shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/u_shape.cpp -------------------------------------------------------------------------------- /nel/src/3d/u_skeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/u_skeleton.cpp -------------------------------------------------------------------------------- /nel/src/3d/u_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/u_transform.cpp -------------------------------------------------------------------------------- /nel/src/3d/u_water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/u_water.cpp -------------------------------------------------------------------------------- /nel/src/3d/vegetable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/vegetable.cpp -------------------------------------------------------------------------------- /nel/src/3d/vegetable_def.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/vegetable_def.cpp -------------------------------------------------------------------------------- /nel/src/3d/vegetable_uv8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/vegetable_uv8.cpp -------------------------------------------------------------------------------- /nel/src/3d/vertex_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/vertex_buffer.cpp -------------------------------------------------------------------------------- /nel/src/3d/viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/viewport.cpp -------------------------------------------------------------------------------- /nel/src/3d/water_env_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/water_env_map.cpp -------------------------------------------------------------------------------- /nel/src/3d/water_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/water_model.cpp -------------------------------------------------------------------------------- /nel/src/3d/water_shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/water_shape.cpp -------------------------------------------------------------------------------- /nel/src/3d/zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/zone.cpp -------------------------------------------------------------------------------- /nel/src/3d/zone_lighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/zone_lighter.cpp -------------------------------------------------------------------------------- /nel/src/3d/zone_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/zone_manager.cpp -------------------------------------------------------------------------------- /nel/src/3d/zone_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/zone_search.cpp -------------------------------------------------------------------------------- /nel/src/3d/zone_smoother.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/3d/zone_smoother.cpp -------------------------------------------------------------------------------- /nel/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/CMakeLists.txt -------------------------------------------------------------------------------- /nel/src/cegui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/cegui/CMakeLists.txt -------------------------------------------------------------------------------- /nel/src/cegui/nelceguirenderer.def: -------------------------------------------------------------------------------- 1 | EXPORTS createNeLRendererInstance -------------------------------------------------------------------------------- /nel/src/cegui/nellogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/cegui/nellogger.cpp -------------------------------------------------------------------------------- /nel/src/cegui/neltexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/cegui/neltexture.cpp -------------------------------------------------------------------------------- /nel/src/georges/form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/georges/form.cpp -------------------------------------------------------------------------------- /nel/src/georges/form_dfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/georges/form_dfn.cpp -------------------------------------------------------------------------------- /nel/src/georges/form_elm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/georges/form_elm.cpp -------------------------------------------------------------------------------- /nel/src/georges/header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/georges/header.cpp -------------------------------------------------------------------------------- /nel/src/georges/stdgeorges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/georges/stdgeorges.h -------------------------------------------------------------------------------- /nel/src/georges/type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/georges/type.cpp -------------------------------------------------------------------------------- /nel/src/ligo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/CMakeLists.txt -------------------------------------------------------------------------------- /nel/src/ligo/ligo_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/ligo_config.cpp -------------------------------------------------------------------------------- /nel/src/ligo/ligo_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/ligo_error.cpp -------------------------------------------------------------------------------- /nel/src/ligo/ligo_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/ligo_error.h -------------------------------------------------------------------------------- /nel/src/ligo/ligo_material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/ligo_material.h -------------------------------------------------------------------------------- /nel/src/ligo/nel-ligo.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/nel-ligo.pc.in -------------------------------------------------------------------------------- /nel/src/ligo/primitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/primitive.cpp -------------------------------------------------------------------------------- /nel/src/ligo/stdligo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/stdligo.cpp -------------------------------------------------------------------------------- /nel/src/ligo/stdligo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/stdligo.h -------------------------------------------------------------------------------- /nel/src/ligo/transition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/transition.cpp -------------------------------------------------------------------------------- /nel/src/ligo/transition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/transition.h -------------------------------------------------------------------------------- /nel/src/ligo/zone_bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/zone_bank.cpp -------------------------------------------------------------------------------- /nel/src/ligo/zone_edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/zone_edge.cpp -------------------------------------------------------------------------------- /nel/src/ligo/zone_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/zone_edge.h -------------------------------------------------------------------------------- /nel/src/ligo/zone_region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/zone_region.cpp -------------------------------------------------------------------------------- /nel/src/ligo/zone_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/ligo/zone_template.h -------------------------------------------------------------------------------- /nel/src/logic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/logic/CMakeLists.txt -------------------------------------------------------------------------------- /nel/src/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/CMakeLists.txt -------------------------------------------------------------------------------- /nel/src/misc/aabbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/aabbox.cpp -------------------------------------------------------------------------------- /nel/src/misc/algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/algo.cpp -------------------------------------------------------------------------------- /nel/src/misc/app_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/app_context.cpp -------------------------------------------------------------------------------- /nel/src/misc/big_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/big_file.cpp -------------------------------------------------------------------------------- /nel/src/misc/bit_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/bit_set.cpp -------------------------------------------------------------------------------- /nel/src/misc/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/bitmap.cpp -------------------------------------------------------------------------------- /nel/src/misc/bitmap_jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/bitmap_jpeg.cpp -------------------------------------------------------------------------------- /nel/src/misc/bitmap_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/bitmap_png.cpp -------------------------------------------------------------------------------- /nel/src/misc/bsphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/bsphere.cpp -------------------------------------------------------------------------------- /nel/src/misc/buf_fifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/buf_fifo.cpp -------------------------------------------------------------------------------- /nel/src/misc/check_fpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/check_fpu.cpp -------------------------------------------------------------------------------- /nel/src/misc/class_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/class_id.cpp -------------------------------------------------------------------------------- /nel/src/misc/cmd_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/cmd_args.cpp -------------------------------------------------------------------------------- /nel/src/misc/co_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/co_task.cpp -------------------------------------------------------------------------------- /nel/src/misc/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/command.cpp -------------------------------------------------------------------------------- /nel/src/misc/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/common.cpp -------------------------------------------------------------------------------- /nel/src/misc/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/debug.cpp -------------------------------------------------------------------------------- /nel/src/misc/diff_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/diff_tool.cpp -------------------------------------------------------------------------------- /nel/src/misc/displayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/displayer.cpp -------------------------------------------------------------------------------- /nel/src/misc/dynloadlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/dynloadlib.cpp -------------------------------------------------------------------------------- /nel/src/misc/entity_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/entity_id.cpp -------------------------------------------------------------------------------- /nel/src/misc/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/events.cpp -------------------------------------------------------------------------------- /nel/src/misc/fast_floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/fast_floor.cpp -------------------------------------------------------------------------------- /nel/src/misc/fast_id_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/fast_id_map.cpp -------------------------------------------------------------------------------- /nel/src/misc/fast_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/fast_mem.cpp -------------------------------------------------------------------------------- /nel/src/misc/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/file.cpp -------------------------------------------------------------------------------- /nel/src/misc/game_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/game_device.cpp -------------------------------------------------------------------------------- /nel/src/misc/geom_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/geom_ext.cpp -------------------------------------------------------------------------------- /nel/src/misc/heap_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/heap_memory.cpp -------------------------------------------------------------------------------- /nel/src/misc/i18n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/i18n.cpp -------------------------------------------------------------------------------- /nel/src/misc/i_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/i_xml.cpp -------------------------------------------------------------------------------- /nel/src/misc/line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/line.cpp -------------------------------------------------------------------------------- /nel/src/misc/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/log.cpp -------------------------------------------------------------------------------- /nel/src/misc/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/matrix.cpp -------------------------------------------------------------------------------- /nel/src/misc/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/md5.cpp -------------------------------------------------------------------------------- /nel/src/misc/mem_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/mem_stream.cpp -------------------------------------------------------------------------------- /nel/src/misc/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/mutex.cpp -------------------------------------------------------------------------------- /nel/src/misc/nel-misc.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/nel-misc.pc -------------------------------------------------------------------------------- /nel/src/misc/nel-misc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/nel-misc.pc.in -------------------------------------------------------------------------------- /nel/src/misc/noise_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/noise_value.cpp -------------------------------------------------------------------------------- /nel/src/misc/o_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/o_xml.cpp -------------------------------------------------------------------------------- /nel/src/misc/p_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/p_thread.cpp -------------------------------------------------------------------------------- /nel/src/misc/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/path.cpp -------------------------------------------------------------------------------- /nel/src/misc/plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/plane.cpp -------------------------------------------------------------------------------- /nel/src/misc/polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/polygon.cpp -------------------------------------------------------------------------------- /nel/src/misc/quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/quad.cpp -------------------------------------------------------------------------------- /nel/src/misc/quat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/quat.cpp -------------------------------------------------------------------------------- /nel/src/misc/rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/rect.cpp -------------------------------------------------------------------------------- /nel/src/misc/report.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/report.cpp -------------------------------------------------------------------------------- /nel/src/misc/rgba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/rgba.cpp -------------------------------------------------------------------------------- /nel/src/misc/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/sha1.cpp -------------------------------------------------------------------------------- /nel/src/misc/sheet_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/sheet_id.cpp -------------------------------------------------------------------------------- /nel/src/misc/smart_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/smart_ptr.cpp -------------------------------------------------------------------------------- /nel/src/misc/sstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/sstring.cpp -------------------------------------------------------------------------------- /nel/src/misc/stdmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/stdmisc.cpp -------------------------------------------------------------------------------- /nel/src/misc/stdmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/stdmisc.h -------------------------------------------------------------------------------- /nel/src/misc/stop_watch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/stop_watch.cpp -------------------------------------------------------------------------------- /nel/src/misc/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/stream.cpp -------------------------------------------------------------------------------- /nel/src/misc/system_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/system_info.cpp -------------------------------------------------------------------------------- /nel/src/misc/tds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/tds.cpp -------------------------------------------------------------------------------- /nel/src/misc/time_nl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/time_nl.cpp -------------------------------------------------------------------------------- /nel/src/misc/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/triangle.cpp -------------------------------------------------------------------------------- /nel/src/misc/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/unicode.cpp -------------------------------------------------------------------------------- /nel/src/misc/uv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/uv.cpp -------------------------------------------------------------------------------- /nel/src/misc/variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/variable.cpp -------------------------------------------------------------------------------- /nel/src/misc/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/vector.cpp -------------------------------------------------------------------------------- /nel/src/misc/vector_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/vector_2d.cpp -------------------------------------------------------------------------------- /nel/src/misc/vector_2f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/vector_2f.cpp -------------------------------------------------------------------------------- /nel/src/misc/vector_h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/vector_h.cpp -------------------------------------------------------------------------------- /nel/src/misc/vectord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/vectord.cpp -------------------------------------------------------------------------------- /nel/src/misc/win32_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/win32_util.cpp -------------------------------------------------------------------------------- /nel/src/misc/win_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/win_thread.cpp -------------------------------------------------------------------------------- /nel/src/misc/win_tray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/win_tray.cpp -------------------------------------------------------------------------------- /nel/src/misc/xml_pack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/misc/xml_pack.cpp -------------------------------------------------------------------------------- /nel/src/net/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/CMakeLists.txt -------------------------------------------------------------------------------- /nel/src/net/admin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/admin.cpp -------------------------------------------------------------------------------- /nel/src/net/buf_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/buf_client.cpp -------------------------------------------------------------------------------- /nel/src/net/buf_net_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/buf_net_base.cpp -------------------------------------------------------------------------------- /nel/src/net/buf_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/buf_server.cpp -------------------------------------------------------------------------------- /nel/src/net/buf_sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/buf_sock.cpp -------------------------------------------------------------------------------- /nel/src/net/email.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/email.cpp -------------------------------------------------------------------------------- /nel/src/net/inet_address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/inet_address.cpp -------------------------------------------------------------------------------- /nel/src/net/listen_sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/listen_sock.cpp -------------------------------------------------------------------------------- /nel/src/net/login_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/login_client.cpp -------------------------------------------------------------------------------- /nel/src/net/login_cookie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/login_cookie.cpp -------------------------------------------------------------------------------- /nel/src/net/login_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/login_server.cpp -------------------------------------------------------------------------------- /nel/src/net/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/message.cpp -------------------------------------------------------------------------------- /nel/src/net/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/module.cpp -------------------------------------------------------------------------------- /nel/src/net/nel-net.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/nel-net.pc.in -------------------------------------------------------------------------------- /nel/src/net/net_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/net_log.cpp -------------------------------------------------------------------------------- /nel/src/net/net_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/net_manager.cpp -------------------------------------------------------------------------------- /nel/src/net/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/service.cpp -------------------------------------------------------------------------------- /nel/src/net/sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/sock.cpp -------------------------------------------------------------------------------- /nel/src/net/stdnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/stdnet.cpp -------------------------------------------------------------------------------- /nel/src/net/stdnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/stdnet.h -------------------------------------------------------------------------------- /nel/src/net/tcp_sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/tcp_sock.cpp -------------------------------------------------------------------------------- /nel/src/net/udp_sim_sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/udp_sim_sock.cpp -------------------------------------------------------------------------------- /nel/src/net/udp_sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/udp_sock.cpp -------------------------------------------------------------------------------- /nel/src/net/unitime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/unitime.cpp -------------------------------------------------------------------------------- /nel/src/net/varpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/net/varpath.cpp -------------------------------------------------------------------------------- /nel/src/pacs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/pacs/CMakeLists.txt -------------------------------------------------------------------------------- /nel/src/pacs/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/pacs/chain.cpp -------------------------------------------------------------------------------- /nel/src/pacs/chain_quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/pacs/chain_quad.cpp -------------------------------------------------------------------------------- /nel/src/pacs/edge_quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/pacs/edge_quad.cpp -------------------------------------------------------------------------------- /nel/src/pacs/move_cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/pacs/move_cell.cpp -------------------------------------------------------------------------------- /nel/src/pacs/nel-pacs.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/pacs/nel-pacs.pc.in -------------------------------------------------------------------------------- /nel/src/pacs/stdpacs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/pacs/stdpacs.cpp -------------------------------------------------------------------------------- /nel/src/pacs/stdpacs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/pacs/stdpacs.h -------------------------------------------------------------------------------- /nel/src/pacs/vector_2s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/pacs/vector_2s.cpp -------------------------------------------------------------------------------- /nel/src/sound/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/sound/CMakeLists.txt -------------------------------------------------------------------------------- /nel/src/sound/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/sound/sound.cpp -------------------------------------------------------------------------------- /nel/src/sound/sound_bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/sound/sound_bank.cpp -------------------------------------------------------------------------------- /nel/src/sound/stdsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/sound/stdsound.cpp -------------------------------------------------------------------------------- /nel/src/sound/stdsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/src/sound/stdsound.h -------------------------------------------------------------------------------- /nel/tools/3d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/tools/3d/CMakeLists.txt -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/0_setup.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\setup.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/1_clean.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\clean.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/client_clean.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\client_clean.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/client_setup.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\client_setup.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/anim/2_export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\export.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/anim/3_build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\build.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/anim/4_install.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\install.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/clodbank/2_export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\export.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/clodbank/3_build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\build.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/displace/1_clean.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | del tga\*.* /Q 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/displace/2_export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\export.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/farbank/1_clean.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | del farbank\*.* /Q 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/farbank/3_build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\build.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/font/1_clean.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | del fonts\*.* /Q 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/font/2_export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\export.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/font/4_install.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\install.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/ig/2_export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\export.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/ig/3_build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\build.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/ig/4_install.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\install.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/ig_light/1_clean.bat: -------------------------------------------------------------------------------- 1 | del ig_other_lighted\*.* /Q 2 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/interface/3_build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\build.sh -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/ligo/3_build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\build.sh -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/map/2_export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\export.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/map/3_build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\build.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/map/4_install.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\install.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/ps/1_clean.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | del ps\*.* /Q 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/ps/2_export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\export.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/ps/4_install.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\install.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/rbank/2_export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\export.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/rbank/3_build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\build.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/rbank/4_install.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\install.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/shape/2_export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\export.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/shape/3_build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\build.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/shape/4_install.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\install.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/skel/1_clean.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | del skel\*.* /Q 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/skel/2_export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\export.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/skel/4_install.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\install.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/swt/1_clean.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | del swt\*.* /Q 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/swt/2_export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\export.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/swt/4_install.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\install.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/tiles/2_export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\export.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/tiles/3_build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\build.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/tiles/4_install.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\install.sh -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/veget/2_export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\export.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/veget/4_install.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\install.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/vegetset/2_export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\export.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/zone/2_export.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\export.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/zone/3_build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\build.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/build_gamedata/processes/zone_light/3_build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash sh\build.sh 4 | -------------------------------------------------------------------------------- /nel/tools/3d/ig_add/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/tools/3d/ig_add/main.cpp -------------------------------------------------------------------------------- /nel/tools/3d/object_viewer_qt/src/3rdparty/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(qtpropertybrowser) 2 | -------------------------------------------------------------------------------- /nel/tools/3d/plugin_max/nel_patch_converter/nel_patch_converter.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nel/tools/3d/plugin_max/nel_patch_edit/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /nel/tools/3d/plugin_max/nel_patch_edit_adv/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /nel/tools/3d/plugin_max/nel_patch_paint/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /nel/tools/3d/plugin_max/scripts/nel_node_properties.ms: -------------------------------------------------------------------------------- 1 | NelNodeProperties (selection as array) true 2 | -------------------------------------------------------------------------------- /nel/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/tools/CMakeLists.txt -------------------------------------------------------------------------------- /nel/tools/build_gamedata/generators/max_exporter_scripts/anim.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nel/tools/build_gamedata/generators/max_exporter_scripts/clod.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nel/tools/build_gamedata/generators/max_exporter_scripts/cmb.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nel/tools/build_gamedata/generators/max_exporter_scripts/swt.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nel/tools/build_gamedata/generators/max_exporter_scripts/veget.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nel/tools/build_gamedata/processes/zone/todo_build_dependencies: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nel/tools/build_gamedata/processes/zone/todo_export_maxscript: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nel/tools/build_gamedata/processes/zone_light/todo_patch_tile_water: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nel/tools/georges/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(georges2csv) 2 | -------------------------------------------------------------------------------- /nel/tools/memory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SUBDIRS(memlog) 2 | -------------------------------------------------------------------------------- /nel/tools/misc/lock/lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nel/tools/misc/lock/lock.cpp -------------------------------------------------------------------------------- /nel/tools/misc/log_analyser_plug_ins/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | SUBDIRS(extract_warnings) 2 | -------------------------------------------------------------------------------- /nel/tools/nel_unit_test/ut_misc_files/included_cfg.cfg: -------------------------------------------------------------------------------- 1 | 2 | IncludedCfg = "ok"; 3 | 4 | -------------------------------------------------------------------------------- /nelDashBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nelDashBuild.cmd -------------------------------------------------------------------------------- /nelDashBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nelDashBuild.sh -------------------------------------------------------------------------------- /nelns/AUTHORS: -------------------------------------------------------------------------------- 1 | Please check www.nevrax.org for more information -------------------------------------------------------------------------------- /nelns/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nelns/CMakeLists.txt -------------------------------------------------------------------------------- /nelns/CMakePackaging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nelns/CMakePackaging.txt -------------------------------------------------------------------------------- /nelns/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nelns/COPYING -------------------------------------------------------------------------------- /nelns/ChangeLog: -------------------------------------------------------------------------------- 1 | Please check www.nevrax.org for more information -------------------------------------------------------------------------------- /nelns/INSTALL: -------------------------------------------------------------------------------- 1 | 2 | Please check www.nevrax.org for information 3 | -------------------------------------------------------------------------------- /nelns/NEWS: -------------------------------------------------------------------------------- 1 | Please check www.nevrax.org for more information -------------------------------------------------------------------------------- /nelns/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nelns/README -------------------------------------------------------------------------------- /nelns/admin/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nelns/admin/config.php -------------------------------------------------------------------------------- /nelns/resources/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nelns/resources/custom.ini -------------------------------------------------------------------------------- /nelns/resources/nel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nelns/resources/nel.bmp -------------------------------------------------------------------------------- /nelns/resources/nel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/nelns/resources/nel.png -------------------------------------------------------------------------------- /revision.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/revision.h.in -------------------------------------------------------------------------------- /ryzom/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/CMakeLists.txt -------------------------------------------------------------------------------- /ryzom/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/COPYING -------------------------------------------------------------------------------- /ryzom/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/CMakeLists.txt -------------------------------------------------------------------------------- /ryzom/client/cfg/client_ram_256.cfg: -------------------------------------------------------------------------------- 1 | SoundOn = 0; 2 | -------------------------------------------------------------------------------- /ryzom/client/cfg/client_ram_512.cfg: -------------------------------------------------------------------------------- 1 | SoundOn = 1; 2 | -------------------------------------------------------------------------------- /ryzom/client/cfg/client_sound_buffer.cfg: -------------------------------------------------------------------------------- 1 | MaxTrack = 32; 2 | -------------------------------------------------------------------------------- /ryzom/client/client.cfg: -------------------------------------------------------------------------------- 1 | RootConfigFilename = "client_default.cfg"; 2 | -------------------------------------------------------------------------------- /ryzom/client/macosx/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /ryzom/client/patcher/de.uxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/patcher/de.uxt -------------------------------------------------------------------------------- /ryzom/client/patcher/en.uxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/patcher/en.uxt -------------------------------------------------------------------------------- /ryzom/client/patcher/fr.uxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/patcher/fr.uxt -------------------------------------------------------------------------------- /ryzom/client/patcher/ru.uxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/patcher/ru.uxt -------------------------------------------------------------------------------- /ryzom/client/src/3d_notes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/3d_notes.h -------------------------------------------------------------------------------- /ryzom/client/src/actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/actions.cpp -------------------------------------------------------------------------------- /ryzom/client/src/actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/actions.h -------------------------------------------------------------------------------- /ryzom/client/src/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/animation.h -------------------------------------------------------------------------------- /ryzom/client/src/attack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/attack.h -------------------------------------------------------------------------------- /ryzom/client/src/auto_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/auto_anim.h -------------------------------------------------------------------------------- /ryzom/client/src/candidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/candidate.h -------------------------------------------------------------------------------- /ryzom/client/src/cdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/cdb.cpp -------------------------------------------------------------------------------- /ryzom/client/src/cdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/cdb.h -------------------------------------------------------------------------------- /ryzom/client/src/cdb_leaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/cdb_leaf.h -------------------------------------------------------------------------------- /ryzom/client/src/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/client.cpp -------------------------------------------------------------------------------- /ryzom/client/src/client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/client.rc -------------------------------------------------------------------------------- /ryzom/client/src/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/commands.h -------------------------------------------------------------------------------- /ryzom/client/src/continent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/continent.h -------------------------------------------------------------------------------- /ryzom/client/src/decal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/decal.cpp -------------------------------------------------------------------------------- /ryzom/client/src/decal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/decal.h -------------------------------------------------------------------------------- /ryzom/client/src/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/demo.cpp -------------------------------------------------------------------------------- /ryzom/client/src/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/demo.h -------------------------------------------------------------------------------- /ryzom/client/src/entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/entities.h -------------------------------------------------------------------------------- /ryzom/client/src/entity_cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/entity_cl.h -------------------------------------------------------------------------------- /ryzom/client/src/entity_fx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/entity_fx.h -------------------------------------------------------------------------------- /ryzom/client/src/far_tp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/far_tp.cpp -------------------------------------------------------------------------------- /ryzom/client/src/far_tp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/far_tp.h -------------------------------------------------------------------------------- /ryzom/client/src/fog_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/fog_map.cpp -------------------------------------------------------------------------------- /ryzom/client/src/fog_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/fog_map.h -------------------------------------------------------------------------------- /ryzom/client/src/fx_cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/fx_cl.cpp -------------------------------------------------------------------------------- /ryzom/client/src/fx_cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/fx_cl.h -------------------------------------------------------------------------------- /ryzom/client/src/gabarit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/gabarit.cpp -------------------------------------------------------------------------------- /ryzom/client/src/gabarit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/gabarit.h -------------------------------------------------------------------------------- /ryzom/client/src/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/global.cpp -------------------------------------------------------------------------------- /ryzom/client/src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/global.h -------------------------------------------------------------------------------- /ryzom/client/src/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/graph.cpp -------------------------------------------------------------------------------- /ryzom/client/src/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/graph.h -------------------------------------------------------------------------------- /ryzom/client/src/graphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/graphic.cpp -------------------------------------------------------------------------------- /ryzom/client/src/graphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/graphic.h -------------------------------------------------------------------------------- /ryzom/client/src/hair_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/hair_set.h -------------------------------------------------------------------------------- /ryzom/client/src/ig_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/ig_client.h -------------------------------------------------------------------------------- /ryzom/client/src/ig_enum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/ig_enum.cpp -------------------------------------------------------------------------------- /ryzom/client/src/ig_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/ig_enum.h -------------------------------------------------------------------------------- /ryzom/client/src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/init.cpp -------------------------------------------------------------------------------- /ryzom/client/src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/init.h -------------------------------------------------------------------------------- /ryzom/client/src/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/input.cpp -------------------------------------------------------------------------------- /ryzom/client/src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/input.h -------------------------------------------------------------------------------- /ryzom/client/src/item_cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/item_cl.cpp -------------------------------------------------------------------------------- /ryzom/client/src/item_cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/item_cl.h -------------------------------------------------------------------------------- /ryzom/client/src/libwww.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/libwww.cpp -------------------------------------------------------------------------------- /ryzom/client/src/libwww.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/libwww.h -------------------------------------------------------------------------------- /ryzom/client/src/login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/login.cpp -------------------------------------------------------------------------------- /ryzom/client/src/login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/login.h -------------------------------------------------------------------------------- /ryzom/client/src/main_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/main_loop.h -------------------------------------------------------------------------------- /ryzom/client/src/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/misc.cpp -------------------------------------------------------------------------------- /ryzom/client/src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/misc.h -------------------------------------------------------------------------------- /ryzom/client/src/npc_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/npc_icon.h -------------------------------------------------------------------------------- /ryzom/client/src/outpost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/outpost.cpp -------------------------------------------------------------------------------- /ryzom/client/src/outpost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/outpost.h -------------------------------------------------------------------------------- /ryzom/client/src/player_cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/player_cl.h -------------------------------------------------------------------------------- /ryzom/client/src/prim_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/prim_file.h -------------------------------------------------------------------------------- /ryzom/client/src/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/progress.h -------------------------------------------------------------------------------- /ryzom/client/src/r2/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/r2/editor.h -------------------------------------------------------------------------------- /ryzom/client/src/r2/r2_lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/r2/r2_lua.h -------------------------------------------------------------------------------- /ryzom/client/src/r2/tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/r2/tool.cpp -------------------------------------------------------------------------------- /ryzom/client/src/r2/tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/r2/tool.h -------------------------------------------------------------------------------- /ryzom/client/src/release.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/release.cpp -------------------------------------------------------------------------------- /ryzom/client/src/release.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/release.h -------------------------------------------------------------------------------- /ryzom/client/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/resource.h -------------------------------------------------------------------------------- /ryzom/client/src/rosace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/rosace.cpp -------------------------------------------------------------------------------- /ryzom/client/src/rosace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/rosace.h -------------------------------------------------------------------------------- /ryzom/client/src/ryzom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/ryzom.ico -------------------------------------------------------------------------------- /ryzom/client/src/sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/sky.cpp -------------------------------------------------------------------------------- /ryzom/client/src/sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/sky.h -------------------------------------------------------------------------------- /ryzom/client/src/stage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/stage.cpp -------------------------------------------------------------------------------- /ryzom/client/src/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/stage.h -------------------------------------------------------------------------------- /ryzom/client/src/stdpch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/stdpch.cpp -------------------------------------------------------------------------------- /ryzom/client/src/stdpch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/stdpch.h -------------------------------------------------------------------------------- /ryzom/client/src/teleport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/teleport.h -------------------------------------------------------------------------------- /ryzom/client/src/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/view.cpp -------------------------------------------------------------------------------- /ryzom/client/src/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/view.h -------------------------------------------------------------------------------- /ryzom/client/src/village.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/village.cpp -------------------------------------------------------------------------------- /ryzom/client/src/village.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/village.h -------------------------------------------------------------------------------- /ryzom/client/src/water_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/water_map.h -------------------------------------------------------------------------------- /ryzom/client/src/weather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/weather.cpp -------------------------------------------------------------------------------- /ryzom/client/src/weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/weather.h -------------------------------------------------------------------------------- /ryzom/client/src/zone_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/client/src/zone_util.h -------------------------------------------------------------------------------- /ryzom/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/common/CMakeLists.txt -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/continents/fyros.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/continents/matis.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/continents/nexus.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/continents/prime_root.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/continents/tryker.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/continents/zorai.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/bandit.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/civil.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/degen.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/fauna.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/fauna_carnivore.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/fauna_herbivore.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/flora.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/goo.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/kami.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/karavan.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/kitin.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/kitin_invasion.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/mp.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_ancient_dryads.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_antikamis.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_barkers.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_beachcombers.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_black_circle.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_cholorogoos.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_cockroaches.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_corsair.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_cute.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_darkening_sap.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_dune_riders.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_ecowarriors.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_firebrands.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_first_deserter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_frahar.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_frahar_hunters.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_gibbay.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_goo_heads.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_green_seed.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_icon_workshipers.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_keepers.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_kitin_gatheres.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_lagoon_brothers.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_lawless.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_leviers.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_master_of_the_goo.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_matisian_border_guards.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_night_turners.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_oasis_diggers.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_pyromancers.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_recoverers.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_renegades.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_restorers.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_root_tappers.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_sacred_sap.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_sap_gleaners.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_sap_slaves.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_scorchers.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_shadow_runners.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_siblings_of_the_weeds.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_silt_sculptors.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_slavers.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_smuglers.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_the_arid_matis.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_the_kuilde.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_the_slash_and_burn.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_tutors.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_water_breakers.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/families/tribe_woven_bridles.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/fauna_zone_properties/activity_plant.zone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/fauna_zone_properties/activity_spawn.zone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/npc/ai_activity/bandit.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/npc/ai_activity/escorted.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/npc/ai_activity/guard.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/npc/ai_activity/guard_escorted.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/npc/ai_activity/no_change.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/npc/ai_activity/normal.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/npc_zone_properties/activity_ambush.zone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/npc_zone_properties/activity_harvest.zone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/npc_zone_properties/activity_outpost.zone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/npc_zone_properties/activity_rest.zone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/data_leveldesign/leveldesign/world_editor_files/npc_zone_properties/activity_spawn.zone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/common/src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(game_share) 2 | -------------------------------------------------------------------------------- /ryzom/server/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(src) 2 | -------------------------------------------------------------------------------- /ryzom/server/ai_service.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/server/ai_service.cfg -------------------------------------------------------------------------------- /ryzom/server/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/server/common.cfg -------------------------------------------------------------------------------- /ryzom/server/data_shard/invalid_entity_names.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/server/data_shard/named_items.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/server/gpm_service.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/server/gpm_service.cfg -------------------------------------------------------------------------------- /ryzom/server/logger_service_default.cfg: -------------------------------------------------------------------------------- 1 | #include "common.cfg" 2 | -------------------------------------------------------------------------------- /ryzom/server/monitor_service_default.cfg: -------------------------------------------------------------------------------- 1 | #include "common.cfg" 2 | -------------------------------------------------------------------------------- /ryzom/server/session_browser_server_default.cfg: -------------------------------------------------------------------------------- 1 | #include "common.cfg" 2 | -------------------------------------------------------------------------------- /ryzom/server/shard.screen.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/server/shard.screen.rc -------------------------------------------------------------------------------- /ryzom/server/shard_start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/server/shard_start.bat -------------------------------------------------------------------------------- /ryzom/server/shard_stop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/server/shard_stop.bat -------------------------------------------------------------------------------- /ryzom/server/sql.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/server/sql.cfg -------------------------------------------------------------------------------- /ryzom/server/src/ai_service/doc/doxycfg/.cvsignore: -------------------------------------------------------------------------------- 1 | doxygen.warnings 2 | ryzom-ais.cfg -------------------------------------------------------------------------------- /ryzom/server/src/ai_service/doc/doxydoc/.cvsignore: -------------------------------------------------------------------------------- 1 | ryzom-ais 2 | -------------------------------------------------------------------------------- /ryzom/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/tools/CMakeLists.txt -------------------------------------------------------------------------------- /ryzom/tools/assoc_mem/mode7.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/assoc_mem/mood.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/tools/assoc_mem/mood.h -------------------------------------------------------------------------------- /ryzom/tools/assoc_mem/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/tools/assoc_mem/node.h -------------------------------------------------------------------------------- /ryzom/tools/assoc_mem/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/tools/assoc_mem/tree.h -------------------------------------------------------------------------------- /ryzom/tools/client/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(client_patcher) 2 | -------------------------------------------------------------------------------- /ryzom/tools/reynolds/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/ryzom/tools/reynolds/track.h -------------------------------------------------------------------------------- /ryzom/tools/server/admin/crons/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/admin/graphs_output/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/admin/logs/empty.txt: -------------------------------------------------------------------------------- 1 | Empty file, just to keep directory alive! -------------------------------------------------------------------------------- /ryzom/tools/server/admin/scripts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/admin/templates/default/page_footer_light.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ryzom/tools/server/admin/templates/default_c/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/controllers/components/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/libs/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/locale/eng/LC_MESSAGES/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/models/behaviors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/models/datasources/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/plugins/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/tests/cases/behaviors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/tests/cases/components/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/tests/cases/controllers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/tests/cases/helpers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/tests/cases/models/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/tests/fixtures/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/tests/groups/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/vendors/shells/tasks/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/vendors/shells/templates/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/views/elements/email/html/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/views/elements/email/text/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/views/elements/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/views/errors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/views/helpers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/views/layouts/email/text/default.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/views/layouts/js/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/views/layouts/rss/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/views/layouts/xml/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/views/scaffolds/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/webroot/files/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/webroot/js/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/webroot/testfiles/raw_testfile.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/app/webroot/testfiles/ugabla.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/controllers/components/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/libs/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/locale/eng/LC_MESSAGES/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/models/behaviors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/models/datasources/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/plugins/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/tests/cases/behaviors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/tests/cases/components/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/tests/cases/controllers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/tests/cases/datasources/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/tests/cases/helpers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/tests/cases/models/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/tests/cases/shells/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/tests/fixtures/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/tests/groups/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/tmp/cache/models/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/tmp/cache/persistent/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/tmp/cache/views/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/tmp/logs/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/tmp/sessions/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/tmp/tests/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/vendors/shells/tasks/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/views/elements/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/views/errors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/views/helpers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/views/pages/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/views/scaffolds/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/console/templates/skel/webroot/js/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/tests/test_app/controllers/components/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/tests/test_app/models/behaviors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/tests/test_app/plugins/test_plugin/vendors/shells/tasks/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/tests/test_app/plugins/test_plugin/vendors/shells/templates/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/tests/test_app/plugins/test_plugin/webroot/css/theme_one.htc: -------------------------------------------------------------------------------- 1 | htc file -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/tasks/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/templates/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/tests/test_app/vendors/shells/tasks/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/tests/test_app/views/elements/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/tests/test_app/views/errors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/tests/test_app/views/helpers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/tests/test_app/views/pages/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/tests/test_app/views/posts/index.ctp: -------------------------------------------------------------------------------- 1 | posts index -------------------------------------------------------------------------------- /ryzom/tools/server/www/webtt/cake/tests/test_app/views/scaffolds/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ryzom/tools/sheets_packer/stdpch.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "stdpch.h" 3 | -------------------------------------------------------------------------------- /snowballs2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/snowballs2/AUTHORS -------------------------------------------------------------------------------- /snowballs2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/snowballs2/CMakeLists.txt -------------------------------------------------------------------------------- /snowballs2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/snowballs2/COPYING -------------------------------------------------------------------------------- /snowballs2/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snowballs2/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/snowballs2/INSTALL -------------------------------------------------------------------------------- /snowballs2/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/snowballs2/NEWS -------------------------------------------------------------------------------- /snowballs2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/snowballs2/README -------------------------------------------------------------------------------- /snowballs2/THANKS: -------------------------------------------------------------------------------- 1 | 2 | All users ... 3 | 4 | -------------------------------------------------------------------------------- /snowballs2/bin/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/snowballs2/bin/common.cfg -------------------------------------------------------------------------------- /snowballs2/client/src/pacs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/snowballs2/client/src/pacs.h -------------------------------------------------------------------------------- /snowballs2/resources/nel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/snowballs2/resources/nel.bmp -------------------------------------------------------------------------------- /snowballs2/resources/nel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/snowballs2/resources/nel.png -------------------------------------------------------------------------------- /snowballs2/server/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/snowballs2/server/common.cfg -------------------------------------------------------------------------------- /tool/bin2c/bin2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/tool/bin2c/bin2c.cpp -------------------------------------------------------------------------------- /tool/build/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/tool/build/build -------------------------------------------------------------------------------- /tool/build/buildquiet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/tool/build/buildquiet -------------------------------------------------------------------------------- /tool/crash/crash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/tool/crash/crash.cpp -------------------------------------------------------------------------------- /tool/open_file/open_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/tool/open_file/open_file.cpp -------------------------------------------------------------------------------- /tool/ren_date/ren_date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/tool/ren_date/ren_date.cpp -------------------------------------------------------------------------------- /tool/resswap/ResSwap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/tool/resswap/ResSwap.cpp -------------------------------------------------------------------------------- /tool/resswap/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/tool/resswap/icon1.ico -------------------------------------------------------------------------------- /web/api/client/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/client/auth.php -------------------------------------------------------------------------------- /web/api/client/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/client/time.php -------------------------------------------------------------------------------- /web/api/client/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/client/user.php -------------------------------------------------------------------------------- /web/api/client/utils.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /web/api/common/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/common/auth.php -------------------------------------------------------------------------------- /web/api/common/bbCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/common/bbCode.php -------------------------------------------------------------------------------- /web/api/common/db_defs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/common/db_defs.php -------------------------------------------------------------------------------- /web/api/common/db_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/common/db_lib.php -------------------------------------------------------------------------------- /web/api/common/dfm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/common/dfm.php -------------------------------------------------------------------------------- /web/api/common/logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/common/logger.php -------------------------------------------------------------------------------- /web/api/common/render.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/common/render.php -------------------------------------------------------------------------------- /web/api/common/ryform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/common/ryform.php -------------------------------------------------------------------------------- /web/api/common/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/common/time.php -------------------------------------------------------------------------------- /web/api/common/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/common/user.php -------------------------------------------------------------------------------- /web/api/common/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/common/utils.php -------------------------------------------------------------------------------- /web/api/common/xml_utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/common/xml_utils.php -------------------------------------------------------------------------------- /web/api/data/css/skin_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/css/skin_b.gif -------------------------------------------------------------------------------- /web/api/data/css/skin_bl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/css/skin_bl.gif -------------------------------------------------------------------------------- /web/api/data/css/skin_br.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/css/skin_br.gif -------------------------------------------------------------------------------- /web/api/data/css/skin_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/css/skin_l.gif -------------------------------------------------------------------------------- /web/api/data/css/skin_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/css/skin_r.gif -------------------------------------------------------------------------------- /web/api/data/css/skin_t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/css/skin_t.gif -------------------------------------------------------------------------------- /web/api/data/css/skin_tl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/css/skin_tl.gif -------------------------------------------------------------------------------- /web/api/data/css/skin_tr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/css/skin_tr.gif -------------------------------------------------------------------------------- /web/api/data/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/icons/edit.png -------------------------------------------------------------------------------- /web/api/data/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/img/bg.jpg -------------------------------------------------------------------------------- /web/api/data/img/bordure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/img/bordure.png -------------------------------------------------------------------------------- /web/api/data/img/lang/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/img/lang/de.png -------------------------------------------------------------------------------- /web/api/data/img/lang/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/img/lang/en.png -------------------------------------------------------------------------------- /web/api/data/img/lang/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/img/lang/es.png -------------------------------------------------------------------------------- /web/api/data/img/lang/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/img/lang/fr.png -------------------------------------------------------------------------------- /web/api/data/img/lang/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/img/lang/ru.png -------------------------------------------------------------------------------- /web/api/data/img/lang/sp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/img/lang/sp.png -------------------------------------------------------------------------------- /web/api/data/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/img/logo.gif -------------------------------------------------------------------------------- /web/api/data/js/combobox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/data/js/combobox.js -------------------------------------------------------------------------------- /web/api/data/ryzom/guild_png/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /web/api/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/api/player_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/player_auth.php -------------------------------------------------------------------------------- /web/api/ryzom_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/ryzom_api.php -------------------------------------------------------------------------------- /web/api/server/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/server/auth.php -------------------------------------------------------------------------------- /web/api/server/guilds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/server/guilds.php -------------------------------------------------------------------------------- /web/api/server/hmagic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/server/hmagic.php -------------------------------------------------------------------------------- /web/api/server/item_icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/server/item_icon.php -------------------------------------------------------------------------------- /web/api/server/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/server/time.php -------------------------------------------------------------------------------- /web/api/server/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/server/user.php -------------------------------------------------------------------------------- /web/api/server/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/server/utils.php -------------------------------------------------------------------------------- /web/api/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/api/time.php -------------------------------------------------------------------------------- /web/app/app_test/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/app/app_test/favicon.png -------------------------------------------------------------------------------- /web/app/app_test/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/app/app_test/index.php -------------------------------------------------------------------------------- /web/app/app_test/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/app/app_test/lang.php -------------------------------------------------------------------------------- /web/app/config.php.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/app/config.php.default -------------------------------------------------------------------------------- /web/app/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/app/index.php -------------------------------------------------------------------------------- /web/app/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osgcc/ryzom/HEAD/web/app/lang.php --------------------------------------------------------------------------------