├── .gitignore ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── Procfile ├── Rakefile ├── VERSION ├── config ├── application.yml ├── blacklist.txt ├── chat_characters.txt ├── fake.yml ├── initializers │ ├── additions.rb │ ├── array_additions.rb │ ├── load_paths.rb │ ├── localization.rb │ ├── mongo.rb │ ├── object_id.rb │ └── settings.rb ├── locales │ ├── de.yml │ └── en.yml ├── rubyhave.yml └── static_item_limits.yml ├── console.sh ├── deepworld.rb ├── docs ├── plain_vs_deep_block_data.txt └── xp.rb ├── ext ├── include │ ├── config.h │ ├── configuration.hpp │ ├── debug.h │ ├── growth.h │ ├── helpers.h │ ├── light.h │ ├── liquid.h │ ├── steam.h │ ├── util.h │ └── zone_kernel.h ├── lib │ ├── config.c │ ├── configuration.cpp │ ├── growth.c │ ├── helpers.c │ ├── light.c │ ├── liquid.c │ ├── steam.c │ ├── util.c │ └── zone.c ├── msgpack.h ├── msgpack │ ├── object.h │ ├── object.hpp │ ├── pack.h │ ├── pack.hpp │ ├── pack_define.h │ ├── pack_template.h │ ├── sbuffer.h │ ├── sbuffer.hpp │ ├── sysdep.h │ ├── type.hpp │ ├── type │ │ ├── bool.hpp │ │ ├── define.hpp │ │ ├── deque.hpp │ │ ├── fixint.hpp │ │ ├── float.hpp │ │ ├── int.hpp │ │ ├── list.hpp │ │ ├── map.hpp │ │ ├── nil.hpp │ │ ├── pair.hpp │ │ ├── raw.hpp │ │ ├── set.hpp │ │ ├── string.hpp │ │ ├── tr1 │ │ │ ├── unordered_map.hpp │ │ │ └── unordered_set.hpp │ │ ├── tuple.hpp │ │ └── vector.hpp │ ├── unpack.h │ ├── unpack.hpp │ ├── unpack_define.h │ ├── unpack_template.h │ ├── version.h │ ├── vrefbuffer.h │ ├── vrefbuffer.hpp │ ├── zbuffer.h │ ├── zbuffer.hpp │ ├── zone.h │ └── zone.hpp ├── notes.txt ├── zone_kernel.c ├── zone_kernel2.cpp ├── zone_kernel2_extconf.rb └── zone_kernel_extconf.rb ├── lib ├── additions.rb ├── async_s3.rb ├── cache.rb ├── constants.rb ├── criteria.rb ├── emext.rb ├── eventually.rb ├── funky.rb ├── ip.rb ├── localization.rb ├── mongo_model │ ├── connection_pool.rb │ ├── criteria.rb │ ├── em_mongo_extensions.rb │ └── mongo_model.rb ├── obscenity.rb ├── rect.rb ├── spatial_hash.rb ├── text.rb └── vector2.rb ├── log └── .gitkeep ├── migrations ├── migration_0004.rb ├── migration_0005.rb ├── migration_0006.rb ├── migration_0010.rb ├── migration_0013.rb ├── migration_0014.rb ├── migration_0018.rb └── migrator.rb ├── models ├── access_code.rb ├── achievements │ ├── age_achievement.rb │ ├── architect_achievement.rb │ ├── base_achievement.rb │ ├── crafting_achievement.rb │ ├── deliverance_achievement.rb │ ├── discovery_achievement.rb │ ├── explorer_achievement.rb │ ├── hunting_achievement.rb │ ├── insurrection_achievement.rb │ ├── killer_achievement.rb │ ├── looter_achievement.rb │ ├── mining_achievement.rb │ ├── position_achievement.rb │ ├── raider_achievement.rb │ ├── scavenging_achievement.rb │ ├── sidekick_achievement.rb │ ├── spawner_stoppage_achievement.rb │ ├── trading_achievement.rb │ ├── trapping_achievement.rb │ ├── undertaker_achievement.rb │ └── voting_achievement.rb ├── alert.rb ├── analytics │ └── analytics.rb ├── biomes │ ├── arctic.rb │ ├── brain.rb │ ├── deep.rb │ └── space.rb ├── campaign.rb ├── challenge.rb ├── character.rb ├── chat.rb ├── competition.rb ├── configuration.rb ├── dialog.rb ├── dynamics │ ├── cleaner.rb │ ├── dungeon.rb │ ├── growth.rb │ ├── growth.yml │ ├── happenings.rb │ ├── invasion.rb │ ├── science.rb │ ├── seismic.rb │ └── weather.rb ├── ecosystem.rb ├── entities │ ├── effect.rb │ └── effectable.rb ├── entity.rb ├── flag.rb ├── form.rb ├── game_configuration.rb ├── game_stat.rb ├── gen │ └── compound.rb ├── guild.rb ├── helpers │ └── zone_chop_serializer.rb ├── inventory_change.rb ├── invite.rb ├── items │ ├── base.rb │ ├── burst.rb │ ├── challenge.rb │ ├── claimable.rb │ ├── consumable.rb │ ├── container.rb │ ├── crafter.rb │ ├── daily_bonus.rb │ ├── directive.rb │ ├── dynamic_message.rb │ ├── exploder.rb │ ├── fertilizer.rb │ ├── guard.rb │ ├── landmark.rb │ ├── message_sign.rb │ ├── meta_change.rb │ ├── minigame.rb │ ├── moderation.rb │ ├── note.rb │ ├── owner.rb │ ├── quipper.rb │ ├── recycler.rb │ ├── relay.rb │ ├── reset.rb │ ├── spawn_teleport.rb │ ├── spawner.rb │ ├── switch.rb │ ├── switchable.rb │ ├── target_teleport.rb │ ├── timer.rb │ ├── transmitter.rb │ ├── trigger.rb │ ├── turret.rb │ ├── wine.rb │ └── world_machines │ │ ├── base.rb │ │ ├── spawner.rb │ │ └── teleport.rb ├── landmark.rb ├── meta_block.rb ├── minigame_record.rb ├── minigames │ ├── base.rb │ ├── custom.rb │ ├── deathmatch.rb │ ├── event_scoring.rb │ ├── leaderboard.rb │ ├── minefield.rb │ ├── pandora.rb │ ├── pandora.yml │ └── participant.rb ├── missive.rb ├── npcs │ ├── behavior │ │ ├── behavior.rb │ │ ├── composed │ │ │ ├── butler.rb │ │ │ ├── crawler.rb │ │ │ ├── digger.rb │ │ │ ├── flocker.rb │ │ │ ├── flyer.rb │ │ │ ├── quester.rb │ │ │ └── walker.rb │ │ └── parts │ │ │ ├── attacks │ │ │ ├── eruption_attack.rb │ │ │ └── spawn_attack.rb │ │ │ ├── conditional │ │ │ ├── equality.rb │ │ │ └── inequality.rb │ │ │ ├── defense │ │ │ ├── shielder.rb │ │ │ └── unblock.rb │ │ │ ├── info │ │ │ └── reporter.rb │ │ │ ├── interaction │ │ │ ├── chatter.rb │ │ │ ├── dialoguer.rb │ │ │ └── pet.rb │ │ │ ├── movement │ │ │ ├── animate.rb │ │ │ ├── aquatic.rb │ │ │ ├── bob.rb │ │ │ ├── climb.rb │ │ │ ├── dig.rb │ │ │ ├── directed_fly.rb │ │ │ ├── fall.rb │ │ │ ├── flock.rb │ │ │ ├── fly.rb │ │ │ ├── fly_seek.rb │ │ │ ├── fly_toward.rb │ │ │ ├── follow.rb │ │ │ ├── idle.rb │ │ │ ├── jump.rb │ │ │ ├── land.rb │ │ │ ├── stuck.rb │ │ │ ├── turn.rb │ │ │ └── walk.rb │ │ │ ├── servant │ │ │ ├── servant_blast.rb │ │ │ ├── servant_drain.rb │ │ │ ├── servant_dump.rb │ │ │ ├── servant_excavate.rb │ │ │ ├── servant_fill.rb │ │ │ ├── servant_mine.rb │ │ │ ├── servant_place.rb │ │ │ └── servant_teleport.rb │ │ │ └── targeting │ │ │ ├── directed_target.rb │ │ │ ├── owner_target.rb │ │ │ ├── randomly_target.rb │ │ │ ├── retailiatory_target.rb │ │ │ └── target_helpers.rb │ ├── npc.rb │ ├── spawner.rb │ └── spawning.yml ├── order_membership.rb ├── player.rb ├── player_inventory.rb ├── player_report.rb ├── players │ ├── achievements.rb │ ├── admin.rb │ ├── appearance.rb │ ├── breath.rb │ ├── chat.rb │ ├── cold.rb │ ├── daily_item.rb │ ├── dialogs.rb │ ├── facebook.rb │ ├── family_name.rb │ ├── guild.rb │ ├── happenings.rb │ ├── heat.rb │ ├── invite.rb │ ├── jail.rb │ ├── karma.rb │ ├── karma.yml │ ├── menu.rb │ ├── notifications.rb │ ├── obscenity.rb │ ├── orders.rb │ ├── password.rb │ ├── placements.rb │ ├── quests.rb │ ├── registration.rb │ ├── reporting.rb │ ├── sales.rb │ ├── segments.rb │ ├── skill_upgrade.rb │ ├── skills.rb │ ├── social.rb │ ├── support.rb │ ├── suppression.rb │ ├── visibility.rb │ └── xp.rb ├── post.rb ├── prefab.rb ├── product.rb ├── push_notification.rb ├── quests │ └── quests.yml ├── redemption_code.rb ├── rewards │ ├── loot.rb │ └── loot.yml ├── scenarios │ ├── base.rb │ ├── beginner.rb │ ├── capture_the_flag.rb │ ├── guild_wars.rb │ ├── home_world.rb │ ├── market.rb │ ├── minefield.rb │ ├── team_pvp.rb │ ├── tutorial.rb │ └── tutorial_gift_home_world.rb ├── schedule │ └── manager.rb ├── server.rb ├── server_log.rb ├── session.rb ├── static_zone.rb ├── teleportation.rb ├── trade.rb ├── transaction.rb ├── zone.rb ├── zone_searcher.rb └── zones │ ├── banning.rb │ ├── digging.rb │ ├── exploration.rb │ ├── explosions.rb │ ├── machines.rb │ ├── meta_blocks.rb │ ├── persistence.rb │ ├── protection.rb │ ├── responders │ └── kill_responder.rb │ ├── stats.rb │ └── timers.rb ├── readme.md ├── release └── upstart │ ├── deepworld-game-x.conf │ ├── deepworld-gameservers.conf │ ├── deepworld-monitor.conf │ ├── deepworld-stats.conf │ └── deepworld.conf ├── script ├── bootstrap.rb ├── console.rb ├── deep_stats │ ├── Gemfile │ ├── Gemfile.lock │ ├── deep_stats.rb │ ├── os.rb │ ├── plugins │ │ ├── mpstat.rb │ │ ├── pids.rb │ │ └── top.rb │ ├── sinks │ │ └── mongo_stats_sink.rb │ └── stats_collector.rb ├── git_update.sh ├── monitor │ ├── Gemfile │ ├── Gemfile.lock │ ├── machine.rb │ └── monitor.rb ├── msgpack_error_test.rb └── simulator │ ├── Gemfile │ ├── Gemfile.lock │ ├── ext │ ├── Makefile │ ├── cpu_usage │ └── cpu_usage.c │ ├── gateway.rb │ ├── sim_cycle.rb │ ├── sim_player.rb │ └── simulator.rb ├── server ├── chunk.rb ├── commands │ ├── admin │ │ ├── admin_command.rb │ │ ├── chop_command.rb │ │ ├── day_command.rb │ │ ├── kick_command.rb │ │ ├── kill_command.rb │ │ ├── rain_command.rb │ │ ├── restart_command.rb │ │ ├── spawn_command.rb │ │ └── stat_command.rb │ ├── authenticate_command.rb │ ├── base_command.rb │ ├── block_direct_command.rb │ ├── block_mine_command.rb │ ├── block_place_command.rb │ ├── block_use_command.rb │ ├── blocks_ignore_command.rb │ ├── blocks_request_command.rb │ ├── bookmark_command.rb │ ├── change_appearance_command.rb │ ├── change_password_command.rb │ ├── chat_command.rb │ ├── command_directory.rb │ ├── console │ │ ├── console_command.rb │ │ ├── construct_command.rb │ │ ├── count_command.rb │ │ ├── despam_command.rb │ │ ├── drain_command.rb │ │ ├── entry_command.rb │ │ ├── evoke_command.rb │ │ ├── exo_command.rb │ │ ├── freeze_command.rb │ │ ├── guild_command_helpers.rb │ │ ├── guild_help_command.rb │ │ ├── guild_info_command.rb │ │ ├── guild_invite_command.rb │ │ ├── guild_leader_command.rb │ │ ├── guild_quit_command.rb │ │ ├── guild_remove_command.rb │ │ ├── help_command.rb │ │ ├── meta_command.rb │ │ ├── mute_command.rb │ │ ├── mutex_command.rb │ │ ├── nearest_command.rb │ │ ├── order_command.rb │ │ ├── private_message_command.rb │ │ ├── register_command.rb │ │ ├── report_command.rb │ │ ├── skip_tutorial_command.rb │ │ ├── summon_command.rb │ │ ├── team_command.rb │ │ ├── teleport_command.rb │ │ ├── trading_command.rb │ │ ├── unmute_command.rb │ │ ├── world_add_command.rb │ │ ├── world_ban_command.rb │ │ ├── world_command_helpers.rb │ │ ├── world_enter_command.rb │ │ ├── world_help_command.rb │ │ ├── world_info_command.rb │ │ ├── world_mute_command.rb │ │ ├── world_protected_command.rb │ │ ├── world_public_command.rb │ │ ├── world_pvp_command.rb │ │ ├── world_recode_command.rb │ │ ├── world_remove_command.rb │ │ ├── world_rename_command.rb │ │ └── world_unban_command.rb │ ├── craft_command.rb │ ├── dialog_command.rb │ ├── effect_command.rb │ ├── entities_request_command.rb │ ├── entity_use_command.rb │ ├── event_command.rb │ ├── facebook_command.rb │ ├── follow_command.rb │ ├── give_command.rb │ ├── health_command.rb │ ├── heartbeat_command.rb │ ├── hint_command.rb │ ├── inventory_move_command.rb │ ├── inventory_use_command.rb │ ├── missive_command.rb │ ├── move_command.rb │ ├── quest_command.rb │ ├── redeem_command.rb │ ├── respawn_command.rb │ ├── say_command.rb │ ├── serendipity_command.rb │ ├── setting_command.rb │ ├── skill_command.rb │ ├── status_command.rb │ ├── think_command.rb │ ├── transaction_command.rb │ ├── transaction_refresh_command.rb │ ├── upload_command.rb │ ├── zone_change_command.rb │ ├── zone_entry_command.rb │ └── zone_search_command.rb ├── connection.rb ├── dispatch │ ├── dispatcher.rb │ └── scheduled_event.rb ├── game_server.rb └── messages │ ├── achievement_message.rb │ ├── achievement_progress_message.rb │ ├── base_message.rb │ ├── block_change_message.rb │ ├── block_meta_message.rb │ ├── blocks_message.rb │ ├── chat_message.rb │ ├── client_configuration_message.rb │ ├── dialog_message.rb │ ├── effect_message.rb │ ├── entity_change_message.rb │ ├── entity_item_use_message.rb │ ├── entity_message_helper.rb │ ├── entity_position_message.rb │ ├── entity_status_message.rb │ ├── event_message.rb │ ├── follow_message.rb │ ├── health_message.rb │ ├── heartbeat_message.rb │ ├── hint_message.rb │ ├── inventory_message.rb │ ├── kick_message.rb │ ├── level_message.rb │ ├── light_message.rb │ ├── minigame_message.rb │ ├── missive_info_message.rb │ ├── missive_message.rb │ ├── notification_message.rb │ ├── player_online_message.rb │ ├── player_position_message.rb │ ├── quest_message.rb │ ├── skill_message.rb │ ├── stat_message.rb │ ├── teleport_message.rb │ ├── upload_message.rb │ ├── wardrobe_message.rb │ ├── waypoint_message.rb │ ├── xp_message.rb │ ├── zone_explored_message.rb │ ├── zone_search_message.rb │ └── zone_status_message.rb ├── spec ├── achievements │ ├── age_achievement_spec.rb │ ├── architect_achievement_spec.rb │ ├── base_achievement_spec.rb │ ├── crafting_achievement_spec.rb │ ├── discovery_achievement_spec.rb │ ├── explorer_achievement_spec.rb │ ├── hunting_achievement_spec.rb │ ├── killer_achievement_spec.rb │ ├── mining_achievement_spec.rb │ ├── position_achievement_spec.rb │ ├── scavenging_achievement_spec.rb │ ├── sidekick_achievement_spec.rb │ ├── trapping_achievement_spec.rb │ └── undertaker_achievement_spec.rb ├── bugs │ └── inventory_dupe_spec.rb ├── commands │ ├── admin │ │ └── chop_command_spec.rb │ ├── authenticate_command_spec.rb │ ├── base_command_spec.rb │ ├── block_ignore_command_spec.rb │ ├── block_mine_command_spec.rb │ ├── block_place_command_spec.rb │ ├── block_use_command_spec.rb │ ├── blocks_request_command_spec.rb │ ├── change_appearance_command_spec.rb │ ├── change_password_command_spec.rb │ ├── chat_command_spec.rb │ ├── craft_command_spec.rb │ ├── entity_use_command_spec.rb │ ├── follow_command_spec.rb │ ├── give_command_spec.rb │ ├── health_command_spec.rb │ ├── heartbeat_command_spec.rb │ ├── inventory_move_command_spec.rb │ ├── inventory_use_command_spec.rb │ ├── missive_command_spec.rb │ ├── move_command_spec.rb │ ├── mute_command_spec.rb │ ├── private_message_command_spec.rb │ ├── redeem_command_spec.rb │ ├── setting_command_spec.rb │ ├── skill_command_spec.rb │ ├── stat_command_spec.rb │ ├── transaction_command_spec.rb │ ├── unmute_command_spec.rb │ ├── world_commands_spec.rb │ ├── zone_change_command_spec.rb │ ├── zone_entry_command_spec.rb │ └── zone_search_command_spec.rb ├── data │ ├── npcs.yaml │ └── test_notifications.rb ├── dynamics │ ├── dungeon_spec.rb │ ├── growth_spec.rb │ ├── happenings_spec.rb │ ├── switching_spec.rb │ └── weather_spec.rb ├── foundries │ ├── access_code_foundry.rb │ ├── base_foundry.rb │ ├── campaign_foundry.rb │ ├── competition_foundry.rb │ ├── configuration_foundry.rb │ ├── guild_foundry.rb │ ├── minigame_record_foundry.rb │ ├── missive_foundry.rb │ ├── player_foundry.rb │ ├── product_foundry.rb │ ├── redemption_code_foundry.rb │ ├── server_foundry.rb │ └── zone_foundry.rb ├── items │ ├── consumable_spec.rb │ ├── crafter_spec.rb │ ├── daily_bonus_spec.rb │ ├── landmark_spec.rb │ ├── meta_change_spec.rb │ ├── recycler_spec.rb │ └── world_machine_spec.rb ├── lib │ ├── cache_spec.rb │ ├── localization_spec.rb │ ├── mongo_model_spec.rb │ ├── obscenity_spec.rb │ ├── rect_spec.rb │ └── spatial_hash_spec.rb ├── messages │ ├── achivement_message_spec.rb │ ├── entity_item_message_spec.rb │ ├── entity_position_message_spec.rb │ ├── entity_status_message_spec.rb │ ├── follow_message_spec.rb │ ├── kick_message_spec.rb │ ├── light_message_spec.rb │ └── zone_explored_message_spec.rb ├── models │ ├── alert_spec.rb │ ├── behavior │ │ ├── attack_spec.rb │ │ ├── shielder_spec.rb │ │ └── terrapus_spec.rb │ ├── campaign_spec.rb │ ├── competition_spec.rb │ ├── ecosystem_spec.rb │ ├── game_configuration_spec.rb │ ├── gen │ │ └── compound_spec.rb │ ├── guild_spec.rb │ ├── light_spec.rb │ ├── liquid_spec.rb │ ├── migrator_spec.rb │ ├── minigames │ │ ├── custom_minigame_spec.rb │ │ ├── deathmatch_spec.rb │ │ └── pandora_spec.rb │ ├── npcs │ │ ├── character_spec.rb │ │ ├── npcs_spec.rb │ │ ├── servant_spec.rb │ │ └── spawner_spec.rb │ ├── player_inventory_spec.rb │ ├── player_spec.rb │ ├── players │ │ ├── daily_item_spec.rb │ │ ├── facebook_spec.rb │ │ ├── invite_spec.rb │ │ ├── karma_spec.rb │ │ ├── orders_spec.rb │ │ ├── quests_spec.rb │ │ ├── sales_spec.rb │ │ ├── skill_upgrade_spec.rb │ │ └── xp_spec.rb │ ├── push_notification_spec.rb │ ├── redemption_code_spec.rb │ ├── rewards │ │ └── loot_spec.rb │ ├── scenarios │ │ ├── team_pvp_spec.rb │ │ └── tutorial_gift_home_world_spec.rb │ ├── schedule │ │ └── schedule_spec.rb │ ├── session_spec.rb │ ├── static_zone_spec.rb │ ├── steam_spec.rb │ ├── transaction_spec.rb │ ├── zone_searcher_spec.rb │ └── zone_spec.rb ├── performance │ └── math_spec.rb ├── server │ ├── connection_spec.rb │ ├── game_server_spec.rb │ ├── memory_spec.rb │ ├── settings_spec.rb │ ├── stress_spec.rb │ └── zone_kernel_spec.rb ├── spec_helper.rb └── support │ ├── array_additions.rb │ ├── base_message_additions.rb │ ├── block_helpers.rb │ ├── dialog_helpers.rb │ ├── entity_helpers.rb │ ├── message.rb │ └── test_helpers.rb ├── tasks ├── build.rake └── test.rake ├── trace.md └── vendor └── rubyhave ├── .gitignore ├── Gemfile ├── README.md ├── Rakefile ├── lib ├── rubyhave.rb └── rubyhave │ ├── behavior.rb │ ├── behavior_tree.rb │ ├── composite.rb │ ├── selector.rb │ ├── sequence.rb │ └── version.rb └── rubyhave.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: ruby deepworld.rb -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.56 2 | -------------------------------------------------------------------------------- /config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/config/application.yml -------------------------------------------------------------------------------- /config/blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/config/blacklist.txt -------------------------------------------------------------------------------- /config/chat_characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/config/chat_characters.txt -------------------------------------------------------------------------------- /config/fake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/config/fake.yml -------------------------------------------------------------------------------- /config/initializers/additions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/config/initializers/additions.rb -------------------------------------------------------------------------------- /config/initializers/array_additions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/config/initializers/array_additions.rb -------------------------------------------------------------------------------- /config/initializers/load_paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/config/initializers/load_paths.rb -------------------------------------------------------------------------------- /config/initializers/localization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/config/initializers/localization.rb -------------------------------------------------------------------------------- /config/initializers/mongo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/config/initializers/mongo.rb -------------------------------------------------------------------------------- /config/initializers/object_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/config/initializers/object_id.rb -------------------------------------------------------------------------------- /config/initializers/settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/config/initializers/settings.rb -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- 1 | --- 2 | de: 3 | test: Deutsche %{param} Test! 4 | -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- 1 | --- 2 | en: 3 | test: English %{param} Test! 4 | -------------------------------------------------------------------------------- /config/rubyhave.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/config/rubyhave.yml -------------------------------------------------------------------------------- /config/static_item_limits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/config/static_item_limits.yml -------------------------------------------------------------------------------- /console.sh: -------------------------------------------------------------------------------- 1 | bundle exec irb -r ./script/console.rb -------------------------------------------------------------------------------- /deepworld.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/deepworld.rb -------------------------------------------------------------------------------- /docs/plain_vs_deep_block_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/docs/plain_vs_deep_block_data.txt -------------------------------------------------------------------------------- /docs/xp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/docs/xp.rb -------------------------------------------------------------------------------- /ext/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/include/config.h -------------------------------------------------------------------------------- /ext/include/configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/include/configuration.hpp -------------------------------------------------------------------------------- /ext/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/include/debug.h -------------------------------------------------------------------------------- /ext/include/growth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/include/growth.h -------------------------------------------------------------------------------- /ext/include/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/include/helpers.h -------------------------------------------------------------------------------- /ext/include/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/include/light.h -------------------------------------------------------------------------------- /ext/include/liquid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/include/liquid.h -------------------------------------------------------------------------------- /ext/include/steam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/include/steam.h -------------------------------------------------------------------------------- /ext/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/include/util.h -------------------------------------------------------------------------------- /ext/include/zone_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/include/zone_kernel.h -------------------------------------------------------------------------------- /ext/lib/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/lib/config.c -------------------------------------------------------------------------------- /ext/lib/configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/lib/configuration.cpp -------------------------------------------------------------------------------- /ext/lib/growth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/lib/growth.c -------------------------------------------------------------------------------- /ext/lib/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/lib/helpers.c -------------------------------------------------------------------------------- /ext/lib/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/lib/light.c -------------------------------------------------------------------------------- /ext/lib/liquid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/lib/liquid.c -------------------------------------------------------------------------------- /ext/lib/steam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/lib/steam.c -------------------------------------------------------------------------------- /ext/lib/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/lib/util.c -------------------------------------------------------------------------------- /ext/lib/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/lib/zone.c -------------------------------------------------------------------------------- /ext/msgpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack.h -------------------------------------------------------------------------------- /ext/msgpack/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/object.h -------------------------------------------------------------------------------- /ext/msgpack/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/object.hpp -------------------------------------------------------------------------------- /ext/msgpack/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/pack.h -------------------------------------------------------------------------------- /ext/msgpack/pack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/pack.hpp -------------------------------------------------------------------------------- /ext/msgpack/pack_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/pack_define.h -------------------------------------------------------------------------------- /ext/msgpack/pack_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/pack_template.h -------------------------------------------------------------------------------- /ext/msgpack/sbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/sbuffer.h -------------------------------------------------------------------------------- /ext/msgpack/sbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/sbuffer.hpp -------------------------------------------------------------------------------- /ext/msgpack/sysdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/sysdep.h -------------------------------------------------------------------------------- /ext/msgpack/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/bool.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/define.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/define.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/deque.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/fixint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/fixint.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/float.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/int.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/list.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/map.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/nil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/nil.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/pair.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/raw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/raw.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/set.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/string.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/tr1/unordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/tr1/unordered_map.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/tr1/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/tr1/unordered_set.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/tuple.hpp -------------------------------------------------------------------------------- /ext/msgpack/type/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/type/vector.hpp -------------------------------------------------------------------------------- /ext/msgpack/unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/unpack.h -------------------------------------------------------------------------------- /ext/msgpack/unpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/unpack.hpp -------------------------------------------------------------------------------- /ext/msgpack/unpack_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/unpack_define.h -------------------------------------------------------------------------------- /ext/msgpack/unpack_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/unpack_template.h -------------------------------------------------------------------------------- /ext/msgpack/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/version.h -------------------------------------------------------------------------------- /ext/msgpack/vrefbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/vrefbuffer.h -------------------------------------------------------------------------------- /ext/msgpack/vrefbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/vrefbuffer.hpp -------------------------------------------------------------------------------- /ext/msgpack/zbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/zbuffer.h -------------------------------------------------------------------------------- /ext/msgpack/zbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/zbuffer.hpp -------------------------------------------------------------------------------- /ext/msgpack/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/zone.h -------------------------------------------------------------------------------- /ext/msgpack/zone.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/msgpack/zone.hpp -------------------------------------------------------------------------------- /ext/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/notes.txt -------------------------------------------------------------------------------- /ext/zone_kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/zone_kernel.c -------------------------------------------------------------------------------- /ext/zone_kernel2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/zone_kernel2.cpp -------------------------------------------------------------------------------- /ext/zone_kernel2_extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/zone_kernel2_extconf.rb -------------------------------------------------------------------------------- /ext/zone_kernel_extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/ext/zone_kernel_extconf.rb -------------------------------------------------------------------------------- /lib/additions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/additions.rb -------------------------------------------------------------------------------- /lib/async_s3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/async_s3.rb -------------------------------------------------------------------------------- /lib/cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/cache.rb -------------------------------------------------------------------------------- /lib/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/constants.rb -------------------------------------------------------------------------------- /lib/criteria.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/criteria.rb -------------------------------------------------------------------------------- /lib/emext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/emext.rb -------------------------------------------------------------------------------- /lib/eventually.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/eventually.rb -------------------------------------------------------------------------------- /lib/funky.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/funky.rb -------------------------------------------------------------------------------- /lib/ip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/ip.rb -------------------------------------------------------------------------------- /lib/localization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/localization.rb -------------------------------------------------------------------------------- /lib/mongo_model/connection_pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/mongo_model/connection_pool.rb -------------------------------------------------------------------------------- /lib/mongo_model/criteria.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/mongo_model/criteria.rb -------------------------------------------------------------------------------- /lib/mongo_model/em_mongo_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/mongo_model/em_mongo_extensions.rb -------------------------------------------------------------------------------- /lib/mongo_model/mongo_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/mongo_model/mongo_model.rb -------------------------------------------------------------------------------- /lib/obscenity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/obscenity.rb -------------------------------------------------------------------------------- /lib/rect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/rect.rb -------------------------------------------------------------------------------- /lib/spatial_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/spatial_hash.rb -------------------------------------------------------------------------------- /lib/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/text.rb -------------------------------------------------------------------------------- /lib/vector2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/lib/vector2.rb -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migrations/migration_0004.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/migrations/migration_0004.rb -------------------------------------------------------------------------------- /migrations/migration_0005.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/migrations/migration_0005.rb -------------------------------------------------------------------------------- /migrations/migration_0006.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/migrations/migration_0006.rb -------------------------------------------------------------------------------- /migrations/migration_0010.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/migrations/migration_0010.rb -------------------------------------------------------------------------------- /migrations/migration_0013.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/migrations/migration_0013.rb -------------------------------------------------------------------------------- /migrations/migration_0014.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/migrations/migration_0014.rb -------------------------------------------------------------------------------- /migrations/migration_0018.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/migrations/migration_0018.rb -------------------------------------------------------------------------------- /migrations/migrator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/migrations/migrator.rb -------------------------------------------------------------------------------- /models/access_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/access_code.rb -------------------------------------------------------------------------------- /models/achievements/age_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/age_achievement.rb -------------------------------------------------------------------------------- /models/achievements/architect_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/architect_achievement.rb -------------------------------------------------------------------------------- /models/achievements/base_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/base_achievement.rb -------------------------------------------------------------------------------- /models/achievements/crafting_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/crafting_achievement.rb -------------------------------------------------------------------------------- /models/achievements/deliverance_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/deliverance_achievement.rb -------------------------------------------------------------------------------- /models/achievements/discovery_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/discovery_achievement.rb -------------------------------------------------------------------------------- /models/achievements/explorer_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/explorer_achievement.rb -------------------------------------------------------------------------------- /models/achievements/hunting_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/hunting_achievement.rb -------------------------------------------------------------------------------- /models/achievements/insurrection_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/insurrection_achievement.rb -------------------------------------------------------------------------------- /models/achievements/killer_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/killer_achievement.rb -------------------------------------------------------------------------------- /models/achievements/looter_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/looter_achievement.rb -------------------------------------------------------------------------------- /models/achievements/mining_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/mining_achievement.rb -------------------------------------------------------------------------------- /models/achievements/position_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/position_achievement.rb -------------------------------------------------------------------------------- /models/achievements/raider_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/raider_achievement.rb -------------------------------------------------------------------------------- /models/achievements/scavenging_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/scavenging_achievement.rb -------------------------------------------------------------------------------- /models/achievements/sidekick_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/sidekick_achievement.rb -------------------------------------------------------------------------------- /models/achievements/spawner_stoppage_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/spawner_stoppage_achievement.rb -------------------------------------------------------------------------------- /models/achievements/trading_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/trading_achievement.rb -------------------------------------------------------------------------------- /models/achievements/trapping_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/trapping_achievement.rb -------------------------------------------------------------------------------- /models/achievements/undertaker_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/undertaker_achievement.rb -------------------------------------------------------------------------------- /models/achievements/voting_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/achievements/voting_achievement.rb -------------------------------------------------------------------------------- /models/alert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/alert.rb -------------------------------------------------------------------------------- /models/analytics/analytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/analytics/analytics.rb -------------------------------------------------------------------------------- /models/biomes/arctic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/biomes/arctic.rb -------------------------------------------------------------------------------- /models/biomes/brain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/biomes/brain.rb -------------------------------------------------------------------------------- /models/biomes/deep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/biomes/deep.rb -------------------------------------------------------------------------------- /models/biomes/space.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/biomes/space.rb -------------------------------------------------------------------------------- /models/campaign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/campaign.rb -------------------------------------------------------------------------------- /models/challenge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/challenge.rb -------------------------------------------------------------------------------- /models/character.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/character.rb -------------------------------------------------------------------------------- /models/chat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/chat.rb -------------------------------------------------------------------------------- /models/competition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/competition.rb -------------------------------------------------------------------------------- /models/configuration.rb: -------------------------------------------------------------------------------- 1 | class Configuration < MongoModel 2 | fields [:key, :type, :data] 3 | end -------------------------------------------------------------------------------- /models/dialog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/dialog.rb -------------------------------------------------------------------------------- /models/dynamics/cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/dynamics/cleaner.rb -------------------------------------------------------------------------------- /models/dynamics/dungeon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/dynamics/dungeon.rb -------------------------------------------------------------------------------- /models/dynamics/growth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/dynamics/growth.rb -------------------------------------------------------------------------------- /models/dynamics/growth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/dynamics/growth.yml -------------------------------------------------------------------------------- /models/dynamics/happenings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/dynamics/happenings.rb -------------------------------------------------------------------------------- /models/dynamics/invasion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/dynamics/invasion.rb -------------------------------------------------------------------------------- /models/dynamics/science.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/dynamics/science.rb -------------------------------------------------------------------------------- /models/dynamics/seismic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/dynamics/seismic.rb -------------------------------------------------------------------------------- /models/dynamics/weather.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/dynamics/weather.rb -------------------------------------------------------------------------------- /models/ecosystem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/ecosystem.rb -------------------------------------------------------------------------------- /models/entities/effect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/entities/effect.rb -------------------------------------------------------------------------------- /models/entities/effectable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/entities/effectable.rb -------------------------------------------------------------------------------- /models/entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/entity.rb -------------------------------------------------------------------------------- /models/flag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/flag.rb -------------------------------------------------------------------------------- /models/form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/form.rb -------------------------------------------------------------------------------- /models/game_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/game_configuration.rb -------------------------------------------------------------------------------- /models/game_stat.rb: -------------------------------------------------------------------------------- 1 | class GameStat < MongoModel 2 | fields [:key, :data] 3 | end -------------------------------------------------------------------------------- /models/gen/compound.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/gen/compound.rb -------------------------------------------------------------------------------- /models/guild.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/guild.rb -------------------------------------------------------------------------------- /models/helpers/zone_chop_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/helpers/zone_chop_serializer.rb -------------------------------------------------------------------------------- /models/inventory_change.rb: -------------------------------------------------------------------------------- 1 | class InventoryChange < MongoModel 2 | end -------------------------------------------------------------------------------- /models/invite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/invite.rb -------------------------------------------------------------------------------- /models/items/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/base.rb -------------------------------------------------------------------------------- /models/items/burst.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/burst.rb -------------------------------------------------------------------------------- /models/items/challenge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/challenge.rb -------------------------------------------------------------------------------- /models/items/claimable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/claimable.rb -------------------------------------------------------------------------------- /models/items/consumable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/consumable.rb -------------------------------------------------------------------------------- /models/items/container.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/container.rb -------------------------------------------------------------------------------- /models/items/crafter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/crafter.rb -------------------------------------------------------------------------------- /models/items/daily_bonus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/daily_bonus.rb -------------------------------------------------------------------------------- /models/items/directive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/directive.rb -------------------------------------------------------------------------------- /models/items/dynamic_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/dynamic_message.rb -------------------------------------------------------------------------------- /models/items/exploder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/exploder.rb -------------------------------------------------------------------------------- /models/items/fertilizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/fertilizer.rb -------------------------------------------------------------------------------- /models/items/guard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/guard.rb -------------------------------------------------------------------------------- /models/items/landmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/landmark.rb -------------------------------------------------------------------------------- /models/items/message_sign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/message_sign.rb -------------------------------------------------------------------------------- /models/items/meta_change.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/meta_change.rb -------------------------------------------------------------------------------- /models/items/minigame.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/minigame.rb -------------------------------------------------------------------------------- /models/items/moderation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/moderation.rb -------------------------------------------------------------------------------- /models/items/note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/note.rb -------------------------------------------------------------------------------- /models/items/owner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/owner.rb -------------------------------------------------------------------------------- /models/items/quipper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/quipper.rb -------------------------------------------------------------------------------- /models/items/recycler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/recycler.rb -------------------------------------------------------------------------------- /models/items/relay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/relay.rb -------------------------------------------------------------------------------- /models/items/reset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/reset.rb -------------------------------------------------------------------------------- /models/items/spawn_teleport.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/spawn_teleport.rb -------------------------------------------------------------------------------- /models/items/spawner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/spawner.rb -------------------------------------------------------------------------------- /models/items/switch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/switch.rb -------------------------------------------------------------------------------- /models/items/switchable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/switchable.rb -------------------------------------------------------------------------------- /models/items/target_teleport.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/target_teleport.rb -------------------------------------------------------------------------------- /models/items/timer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/timer.rb -------------------------------------------------------------------------------- /models/items/transmitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/transmitter.rb -------------------------------------------------------------------------------- /models/items/trigger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/trigger.rb -------------------------------------------------------------------------------- /models/items/turret.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/turret.rb -------------------------------------------------------------------------------- /models/items/wine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/wine.rb -------------------------------------------------------------------------------- /models/items/world_machines/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/world_machines/base.rb -------------------------------------------------------------------------------- /models/items/world_machines/spawner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/world_machines/spawner.rb -------------------------------------------------------------------------------- /models/items/world_machines/teleport.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/items/world_machines/teleport.rb -------------------------------------------------------------------------------- /models/landmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/landmark.rb -------------------------------------------------------------------------------- /models/meta_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/meta_block.rb -------------------------------------------------------------------------------- /models/minigame_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/minigame_record.rb -------------------------------------------------------------------------------- /models/minigames/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/minigames/base.rb -------------------------------------------------------------------------------- /models/minigames/custom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/minigames/custom.rb -------------------------------------------------------------------------------- /models/minigames/deathmatch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/minigames/deathmatch.rb -------------------------------------------------------------------------------- /models/minigames/event_scoring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/minigames/event_scoring.rb -------------------------------------------------------------------------------- /models/minigames/leaderboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/minigames/leaderboard.rb -------------------------------------------------------------------------------- /models/minigames/minefield.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/minigames/minefield.rb -------------------------------------------------------------------------------- /models/minigames/pandora.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/minigames/pandora.rb -------------------------------------------------------------------------------- /models/minigames/pandora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/minigames/pandora.yml -------------------------------------------------------------------------------- /models/minigames/participant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/minigames/participant.rb -------------------------------------------------------------------------------- /models/missive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/missive.rb -------------------------------------------------------------------------------- /models/npcs/behavior/behavior.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/behavior.rb -------------------------------------------------------------------------------- /models/npcs/behavior/composed/butler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/composed/butler.rb -------------------------------------------------------------------------------- /models/npcs/behavior/composed/crawler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/composed/crawler.rb -------------------------------------------------------------------------------- /models/npcs/behavior/composed/digger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/composed/digger.rb -------------------------------------------------------------------------------- /models/npcs/behavior/composed/flocker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/composed/flocker.rb -------------------------------------------------------------------------------- /models/npcs/behavior/composed/flyer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/composed/flyer.rb -------------------------------------------------------------------------------- /models/npcs/behavior/composed/quester.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/composed/quester.rb -------------------------------------------------------------------------------- /models/npcs/behavior/composed/walker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/composed/walker.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/attacks/eruption_attack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/attacks/eruption_attack.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/attacks/spawn_attack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/attacks/spawn_attack.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/conditional/equality.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/conditional/equality.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/conditional/inequality.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/conditional/inequality.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/defense/shielder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/defense/shielder.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/defense/unblock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/defense/unblock.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/info/reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/info/reporter.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/interaction/chatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/interaction/chatter.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/interaction/dialoguer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/interaction/dialoguer.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/interaction/pet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/interaction/pet.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/animate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/animate.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/aquatic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/aquatic.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/bob.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/bob.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/climb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/climb.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/dig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/dig.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/directed_fly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/directed_fly.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/fall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/fall.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/flock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/flock.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/fly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/fly.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/fly_seek.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/fly_seek.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/fly_toward.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/fly_toward.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/follow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/follow.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/idle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/idle.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/jump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/jump.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/land.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/land.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/stuck.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/stuck.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/turn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/turn.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/movement/walk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/movement/walk.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/servant/servant_blast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/servant/servant_blast.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/servant/servant_drain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/servant/servant_drain.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/servant/servant_dump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/servant/servant_dump.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/servant/servant_excavate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/servant/servant_excavate.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/servant/servant_fill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/servant/servant_fill.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/servant/servant_mine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/servant/servant_mine.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/servant/servant_place.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/servant/servant_place.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/servant/servant_teleport.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/servant/servant_teleport.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/targeting/directed_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/targeting/directed_target.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/targeting/owner_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/targeting/owner_target.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/targeting/randomly_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/targeting/randomly_target.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/targeting/retailiatory_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/targeting/retailiatory_target.rb -------------------------------------------------------------------------------- /models/npcs/behavior/parts/targeting/target_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/behavior/parts/targeting/target_helpers.rb -------------------------------------------------------------------------------- /models/npcs/npc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/npc.rb -------------------------------------------------------------------------------- /models/npcs/spawner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/spawner.rb -------------------------------------------------------------------------------- /models/npcs/spawning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/npcs/spawning.yml -------------------------------------------------------------------------------- /models/order_membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/order_membership.rb -------------------------------------------------------------------------------- /models/player.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/player.rb -------------------------------------------------------------------------------- /models/player_inventory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/player_inventory.rb -------------------------------------------------------------------------------- /models/player_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/player_report.rb -------------------------------------------------------------------------------- /models/players/achievements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/achievements.rb -------------------------------------------------------------------------------- /models/players/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/admin.rb -------------------------------------------------------------------------------- /models/players/appearance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/appearance.rb -------------------------------------------------------------------------------- /models/players/breath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/breath.rb -------------------------------------------------------------------------------- /models/players/chat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/chat.rb -------------------------------------------------------------------------------- /models/players/cold.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/cold.rb -------------------------------------------------------------------------------- /models/players/daily_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/daily_item.rb -------------------------------------------------------------------------------- /models/players/dialogs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/dialogs.rb -------------------------------------------------------------------------------- /models/players/facebook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/facebook.rb -------------------------------------------------------------------------------- /models/players/family_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/family_name.rb -------------------------------------------------------------------------------- /models/players/guild.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/guild.rb -------------------------------------------------------------------------------- /models/players/happenings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/happenings.rb -------------------------------------------------------------------------------- /models/players/heat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/heat.rb -------------------------------------------------------------------------------- /models/players/invite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/invite.rb -------------------------------------------------------------------------------- /models/players/jail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/jail.rb -------------------------------------------------------------------------------- /models/players/karma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/karma.rb -------------------------------------------------------------------------------- /models/players/karma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/karma.yml -------------------------------------------------------------------------------- /models/players/menu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/menu.rb -------------------------------------------------------------------------------- /models/players/notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/notifications.rb -------------------------------------------------------------------------------- /models/players/obscenity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/obscenity.rb -------------------------------------------------------------------------------- /models/players/orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/orders.rb -------------------------------------------------------------------------------- /models/players/password.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/password.rb -------------------------------------------------------------------------------- /models/players/placements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/placements.rb -------------------------------------------------------------------------------- /models/players/quests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/quests.rb -------------------------------------------------------------------------------- /models/players/registration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/registration.rb -------------------------------------------------------------------------------- /models/players/reporting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/reporting.rb -------------------------------------------------------------------------------- /models/players/sales.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/sales.rb -------------------------------------------------------------------------------- /models/players/segments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/segments.rb -------------------------------------------------------------------------------- /models/players/skill_upgrade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/skill_upgrade.rb -------------------------------------------------------------------------------- /models/players/skills.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/skills.rb -------------------------------------------------------------------------------- /models/players/social.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/social.rb -------------------------------------------------------------------------------- /models/players/support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/support.rb -------------------------------------------------------------------------------- /models/players/suppression.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/suppression.rb -------------------------------------------------------------------------------- /models/players/visibility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/visibility.rb -------------------------------------------------------------------------------- /models/players/xp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/players/xp.rb -------------------------------------------------------------------------------- /models/post.rb: -------------------------------------------------------------------------------- 1 | class Post < MongoModel 2 | fields [:title, :content, :published_at] 3 | end -------------------------------------------------------------------------------- /models/prefab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/prefab.rb -------------------------------------------------------------------------------- /models/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/product.rb -------------------------------------------------------------------------------- /models/push_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/push_notification.rb -------------------------------------------------------------------------------- /models/quests/quests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/quests/quests.yml -------------------------------------------------------------------------------- /models/redemption_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/redemption_code.rb -------------------------------------------------------------------------------- /models/rewards/loot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/rewards/loot.rb -------------------------------------------------------------------------------- /models/rewards/loot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/rewards/loot.yml -------------------------------------------------------------------------------- /models/scenarios/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/scenarios/base.rb -------------------------------------------------------------------------------- /models/scenarios/beginner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/scenarios/beginner.rb -------------------------------------------------------------------------------- /models/scenarios/capture_the_flag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/scenarios/capture_the_flag.rb -------------------------------------------------------------------------------- /models/scenarios/guild_wars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/scenarios/guild_wars.rb -------------------------------------------------------------------------------- /models/scenarios/home_world.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/scenarios/home_world.rb -------------------------------------------------------------------------------- /models/scenarios/market.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/scenarios/market.rb -------------------------------------------------------------------------------- /models/scenarios/minefield.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/scenarios/minefield.rb -------------------------------------------------------------------------------- /models/scenarios/team_pvp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/scenarios/team_pvp.rb -------------------------------------------------------------------------------- /models/scenarios/tutorial.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/scenarios/tutorial.rb -------------------------------------------------------------------------------- /models/scenarios/tutorial_gift_home_world.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/scenarios/tutorial_gift_home_world.rb -------------------------------------------------------------------------------- /models/schedule/manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/schedule/manager.rb -------------------------------------------------------------------------------- /models/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/server.rb -------------------------------------------------------------------------------- /models/server_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/server_log.rb -------------------------------------------------------------------------------- /models/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/session.rb -------------------------------------------------------------------------------- /models/static_zone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/static_zone.rb -------------------------------------------------------------------------------- /models/teleportation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/teleportation.rb -------------------------------------------------------------------------------- /models/trade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/trade.rb -------------------------------------------------------------------------------- /models/transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/transaction.rb -------------------------------------------------------------------------------- /models/zone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/zone.rb -------------------------------------------------------------------------------- /models/zone_searcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/zone_searcher.rb -------------------------------------------------------------------------------- /models/zones/banning.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/zones/banning.rb -------------------------------------------------------------------------------- /models/zones/digging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/zones/digging.rb -------------------------------------------------------------------------------- /models/zones/exploration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/zones/exploration.rb -------------------------------------------------------------------------------- /models/zones/explosions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/zones/explosions.rb -------------------------------------------------------------------------------- /models/zones/machines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/zones/machines.rb -------------------------------------------------------------------------------- /models/zones/meta_blocks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/zones/meta_blocks.rb -------------------------------------------------------------------------------- /models/zones/persistence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/zones/persistence.rb -------------------------------------------------------------------------------- /models/zones/protection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/zones/protection.rb -------------------------------------------------------------------------------- /models/zones/responders/kill_responder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/zones/responders/kill_responder.rb -------------------------------------------------------------------------------- /models/zones/stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/zones/stats.rb -------------------------------------------------------------------------------- /models/zones/timers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/models/zones/timers.rb -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/readme.md -------------------------------------------------------------------------------- /release/upstart/deepworld-game-x.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/release/upstart/deepworld-game-x.conf -------------------------------------------------------------------------------- /release/upstart/deepworld-gameservers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/release/upstart/deepworld-gameservers.conf -------------------------------------------------------------------------------- /release/upstart/deepworld-monitor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/release/upstart/deepworld-monitor.conf -------------------------------------------------------------------------------- /release/upstart/deepworld-stats.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/release/upstart/deepworld-stats.conf -------------------------------------------------------------------------------- /release/upstart/deepworld.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/release/upstart/deepworld.conf -------------------------------------------------------------------------------- /script/bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/bootstrap.rb -------------------------------------------------------------------------------- /script/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/console.rb -------------------------------------------------------------------------------- /script/deep_stats/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/deep_stats/Gemfile -------------------------------------------------------------------------------- /script/deep_stats/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/deep_stats/Gemfile.lock -------------------------------------------------------------------------------- /script/deep_stats/deep_stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/deep_stats/deep_stats.rb -------------------------------------------------------------------------------- /script/deep_stats/os.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/deep_stats/os.rb -------------------------------------------------------------------------------- /script/deep_stats/plugins/mpstat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/deep_stats/plugins/mpstat.rb -------------------------------------------------------------------------------- /script/deep_stats/plugins/pids.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/deep_stats/plugins/pids.rb -------------------------------------------------------------------------------- /script/deep_stats/plugins/top.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/deep_stats/plugins/top.rb -------------------------------------------------------------------------------- /script/deep_stats/sinks/mongo_stats_sink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/deep_stats/sinks/mongo_stats_sink.rb -------------------------------------------------------------------------------- /script/deep_stats/stats_collector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/deep_stats/stats_collector.rb -------------------------------------------------------------------------------- /script/git_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/git_update.sh -------------------------------------------------------------------------------- /script/monitor/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/monitor/Gemfile -------------------------------------------------------------------------------- /script/monitor/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/monitor/Gemfile.lock -------------------------------------------------------------------------------- /script/monitor/machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/monitor/machine.rb -------------------------------------------------------------------------------- /script/monitor/monitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/monitor/monitor.rb -------------------------------------------------------------------------------- /script/msgpack_error_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/msgpack_error_test.rb -------------------------------------------------------------------------------- /script/simulator/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/simulator/Gemfile -------------------------------------------------------------------------------- /script/simulator/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/simulator/Gemfile.lock -------------------------------------------------------------------------------- /script/simulator/ext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/simulator/ext/Makefile -------------------------------------------------------------------------------- /script/simulator/ext/cpu_usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/simulator/ext/cpu_usage -------------------------------------------------------------------------------- /script/simulator/ext/cpu_usage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/simulator/ext/cpu_usage.c -------------------------------------------------------------------------------- /script/simulator/gateway.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/simulator/gateway.rb -------------------------------------------------------------------------------- /script/simulator/sim_cycle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/simulator/sim_cycle.rb -------------------------------------------------------------------------------- /script/simulator/sim_player.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/simulator/sim_player.rb -------------------------------------------------------------------------------- /script/simulator/simulator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/script/simulator/simulator.rb -------------------------------------------------------------------------------- /server/chunk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/chunk.rb -------------------------------------------------------------------------------- /server/commands/admin/admin_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/admin/admin_command.rb -------------------------------------------------------------------------------- /server/commands/admin/chop_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/admin/chop_command.rb -------------------------------------------------------------------------------- /server/commands/admin/day_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/admin/day_command.rb -------------------------------------------------------------------------------- /server/commands/admin/kick_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/admin/kick_command.rb -------------------------------------------------------------------------------- /server/commands/admin/kill_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/admin/kill_command.rb -------------------------------------------------------------------------------- /server/commands/admin/rain_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/admin/rain_command.rb -------------------------------------------------------------------------------- /server/commands/admin/restart_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/admin/restart_command.rb -------------------------------------------------------------------------------- /server/commands/admin/spawn_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/admin/spawn_command.rb -------------------------------------------------------------------------------- /server/commands/admin/stat_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/admin/stat_command.rb -------------------------------------------------------------------------------- /server/commands/authenticate_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/authenticate_command.rb -------------------------------------------------------------------------------- /server/commands/base_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/base_command.rb -------------------------------------------------------------------------------- /server/commands/block_direct_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/block_direct_command.rb -------------------------------------------------------------------------------- /server/commands/block_mine_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/block_mine_command.rb -------------------------------------------------------------------------------- /server/commands/block_place_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/block_place_command.rb -------------------------------------------------------------------------------- /server/commands/block_use_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/block_use_command.rb -------------------------------------------------------------------------------- /server/commands/blocks_ignore_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/blocks_ignore_command.rb -------------------------------------------------------------------------------- /server/commands/blocks_request_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/blocks_request_command.rb -------------------------------------------------------------------------------- /server/commands/bookmark_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/bookmark_command.rb -------------------------------------------------------------------------------- /server/commands/change_appearance_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/change_appearance_command.rb -------------------------------------------------------------------------------- /server/commands/change_password_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/change_password_command.rb -------------------------------------------------------------------------------- /server/commands/chat_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/chat_command.rb -------------------------------------------------------------------------------- /server/commands/command_directory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/command_directory.rb -------------------------------------------------------------------------------- /server/commands/console/console_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/console_command.rb -------------------------------------------------------------------------------- /server/commands/console/construct_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/construct_command.rb -------------------------------------------------------------------------------- /server/commands/console/count_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/count_command.rb -------------------------------------------------------------------------------- /server/commands/console/despam_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/despam_command.rb -------------------------------------------------------------------------------- /server/commands/console/drain_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/drain_command.rb -------------------------------------------------------------------------------- /server/commands/console/entry_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/entry_command.rb -------------------------------------------------------------------------------- /server/commands/console/evoke_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/evoke_command.rb -------------------------------------------------------------------------------- /server/commands/console/exo_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/exo_command.rb -------------------------------------------------------------------------------- /server/commands/console/freeze_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/freeze_command.rb -------------------------------------------------------------------------------- /server/commands/console/guild_command_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/guild_command_helpers.rb -------------------------------------------------------------------------------- /server/commands/console/guild_help_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/guild_help_command.rb -------------------------------------------------------------------------------- /server/commands/console/guild_info_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/guild_info_command.rb -------------------------------------------------------------------------------- /server/commands/console/guild_invite_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/guild_invite_command.rb -------------------------------------------------------------------------------- /server/commands/console/guild_leader_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/guild_leader_command.rb -------------------------------------------------------------------------------- /server/commands/console/guild_quit_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/guild_quit_command.rb -------------------------------------------------------------------------------- /server/commands/console/guild_remove_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/guild_remove_command.rb -------------------------------------------------------------------------------- /server/commands/console/help_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/help_command.rb -------------------------------------------------------------------------------- /server/commands/console/meta_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/meta_command.rb -------------------------------------------------------------------------------- /server/commands/console/mute_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/mute_command.rb -------------------------------------------------------------------------------- /server/commands/console/mutex_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/mutex_command.rb -------------------------------------------------------------------------------- /server/commands/console/nearest_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/nearest_command.rb -------------------------------------------------------------------------------- /server/commands/console/order_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/order_command.rb -------------------------------------------------------------------------------- /server/commands/console/private_message_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/private_message_command.rb -------------------------------------------------------------------------------- /server/commands/console/register_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/register_command.rb -------------------------------------------------------------------------------- /server/commands/console/report_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/report_command.rb -------------------------------------------------------------------------------- /server/commands/console/skip_tutorial_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/skip_tutorial_command.rb -------------------------------------------------------------------------------- /server/commands/console/summon_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/summon_command.rb -------------------------------------------------------------------------------- /server/commands/console/team_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/team_command.rb -------------------------------------------------------------------------------- /server/commands/console/teleport_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/teleport_command.rb -------------------------------------------------------------------------------- /server/commands/console/trading_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/trading_command.rb -------------------------------------------------------------------------------- /server/commands/console/unmute_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/unmute_command.rb -------------------------------------------------------------------------------- /server/commands/console/world_add_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/world_add_command.rb -------------------------------------------------------------------------------- /server/commands/console/world_ban_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/world_ban_command.rb -------------------------------------------------------------------------------- /server/commands/console/world_command_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/world_command_helpers.rb -------------------------------------------------------------------------------- /server/commands/console/world_enter_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/world_enter_command.rb -------------------------------------------------------------------------------- /server/commands/console/world_help_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/world_help_command.rb -------------------------------------------------------------------------------- /server/commands/console/world_info_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/world_info_command.rb -------------------------------------------------------------------------------- /server/commands/console/world_mute_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/world_mute_command.rb -------------------------------------------------------------------------------- /server/commands/console/world_protected_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/world_protected_command.rb -------------------------------------------------------------------------------- /server/commands/console/world_public_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/world_public_command.rb -------------------------------------------------------------------------------- /server/commands/console/world_pvp_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/world_pvp_command.rb -------------------------------------------------------------------------------- /server/commands/console/world_recode_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/world_recode_command.rb -------------------------------------------------------------------------------- /server/commands/console/world_remove_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/world_remove_command.rb -------------------------------------------------------------------------------- /server/commands/console/world_rename_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/world_rename_command.rb -------------------------------------------------------------------------------- /server/commands/console/world_unban_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/console/world_unban_command.rb -------------------------------------------------------------------------------- /server/commands/craft_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/craft_command.rb -------------------------------------------------------------------------------- /server/commands/dialog_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/dialog_command.rb -------------------------------------------------------------------------------- /server/commands/effect_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/effect_command.rb -------------------------------------------------------------------------------- /server/commands/entities_request_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/entities_request_command.rb -------------------------------------------------------------------------------- /server/commands/entity_use_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/entity_use_command.rb -------------------------------------------------------------------------------- /server/commands/event_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/event_command.rb -------------------------------------------------------------------------------- /server/commands/facebook_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/facebook_command.rb -------------------------------------------------------------------------------- /server/commands/follow_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/follow_command.rb -------------------------------------------------------------------------------- /server/commands/give_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/give_command.rb -------------------------------------------------------------------------------- /server/commands/health_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/health_command.rb -------------------------------------------------------------------------------- /server/commands/heartbeat_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/heartbeat_command.rb -------------------------------------------------------------------------------- /server/commands/hint_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/hint_command.rb -------------------------------------------------------------------------------- /server/commands/inventory_move_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/inventory_move_command.rb -------------------------------------------------------------------------------- /server/commands/inventory_use_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/inventory_use_command.rb -------------------------------------------------------------------------------- /server/commands/missive_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/missive_command.rb -------------------------------------------------------------------------------- /server/commands/move_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/move_command.rb -------------------------------------------------------------------------------- /server/commands/quest_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/quest_command.rb -------------------------------------------------------------------------------- /server/commands/redeem_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/redeem_command.rb -------------------------------------------------------------------------------- /server/commands/respawn_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/respawn_command.rb -------------------------------------------------------------------------------- /server/commands/say_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/say_command.rb -------------------------------------------------------------------------------- /server/commands/serendipity_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/serendipity_command.rb -------------------------------------------------------------------------------- /server/commands/setting_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/setting_command.rb -------------------------------------------------------------------------------- /server/commands/skill_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/skill_command.rb -------------------------------------------------------------------------------- /server/commands/status_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/status_command.rb -------------------------------------------------------------------------------- /server/commands/think_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/think_command.rb -------------------------------------------------------------------------------- /server/commands/transaction_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/transaction_command.rb -------------------------------------------------------------------------------- /server/commands/transaction_refresh_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/transaction_refresh_command.rb -------------------------------------------------------------------------------- /server/commands/upload_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/upload_command.rb -------------------------------------------------------------------------------- /server/commands/zone_change_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/zone_change_command.rb -------------------------------------------------------------------------------- /server/commands/zone_entry_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/zone_entry_command.rb -------------------------------------------------------------------------------- /server/commands/zone_search_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/commands/zone_search_command.rb -------------------------------------------------------------------------------- /server/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/connection.rb -------------------------------------------------------------------------------- /server/dispatch/dispatcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/dispatch/dispatcher.rb -------------------------------------------------------------------------------- /server/dispatch/scheduled_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/dispatch/scheduled_event.rb -------------------------------------------------------------------------------- /server/game_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/game_server.rb -------------------------------------------------------------------------------- /server/messages/achievement_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/achievement_message.rb -------------------------------------------------------------------------------- /server/messages/achievement_progress_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/achievement_progress_message.rb -------------------------------------------------------------------------------- /server/messages/base_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/base_message.rb -------------------------------------------------------------------------------- /server/messages/block_change_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/block_change_message.rb -------------------------------------------------------------------------------- /server/messages/block_meta_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/block_meta_message.rb -------------------------------------------------------------------------------- /server/messages/blocks_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/blocks_message.rb -------------------------------------------------------------------------------- /server/messages/chat_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/chat_message.rb -------------------------------------------------------------------------------- /server/messages/client_configuration_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/client_configuration_message.rb -------------------------------------------------------------------------------- /server/messages/dialog_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/dialog_message.rb -------------------------------------------------------------------------------- /server/messages/effect_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/effect_message.rb -------------------------------------------------------------------------------- /server/messages/entity_change_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/entity_change_message.rb -------------------------------------------------------------------------------- /server/messages/entity_item_use_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/entity_item_use_message.rb -------------------------------------------------------------------------------- /server/messages/entity_message_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/entity_message_helper.rb -------------------------------------------------------------------------------- /server/messages/entity_position_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/entity_position_message.rb -------------------------------------------------------------------------------- /server/messages/entity_status_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/entity_status_message.rb -------------------------------------------------------------------------------- /server/messages/event_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/event_message.rb -------------------------------------------------------------------------------- /server/messages/follow_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/follow_message.rb -------------------------------------------------------------------------------- /server/messages/health_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/health_message.rb -------------------------------------------------------------------------------- /server/messages/heartbeat_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/heartbeat_message.rb -------------------------------------------------------------------------------- /server/messages/hint_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/hint_message.rb -------------------------------------------------------------------------------- /server/messages/inventory_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/inventory_message.rb -------------------------------------------------------------------------------- /server/messages/kick_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/kick_message.rb -------------------------------------------------------------------------------- /server/messages/level_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/level_message.rb -------------------------------------------------------------------------------- /server/messages/light_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/light_message.rb -------------------------------------------------------------------------------- /server/messages/minigame_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/minigame_message.rb -------------------------------------------------------------------------------- /server/messages/missive_info_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/missive_info_message.rb -------------------------------------------------------------------------------- /server/messages/missive_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/missive_message.rb -------------------------------------------------------------------------------- /server/messages/notification_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/notification_message.rb -------------------------------------------------------------------------------- /server/messages/player_online_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/player_online_message.rb -------------------------------------------------------------------------------- /server/messages/player_position_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/player_position_message.rb -------------------------------------------------------------------------------- /server/messages/quest_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/quest_message.rb -------------------------------------------------------------------------------- /server/messages/skill_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/skill_message.rb -------------------------------------------------------------------------------- /server/messages/stat_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/stat_message.rb -------------------------------------------------------------------------------- /server/messages/teleport_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/teleport_message.rb -------------------------------------------------------------------------------- /server/messages/upload_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/upload_message.rb -------------------------------------------------------------------------------- /server/messages/wardrobe_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/wardrobe_message.rb -------------------------------------------------------------------------------- /server/messages/waypoint_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/waypoint_message.rb -------------------------------------------------------------------------------- /server/messages/xp_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/xp_message.rb -------------------------------------------------------------------------------- /server/messages/zone_explored_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/zone_explored_message.rb -------------------------------------------------------------------------------- /server/messages/zone_search_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/zone_search_message.rb -------------------------------------------------------------------------------- /server/messages/zone_status_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/server/messages/zone_status_message.rb -------------------------------------------------------------------------------- /spec/achievements/age_achievement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/achievements/age_achievement_spec.rb -------------------------------------------------------------------------------- /spec/achievements/architect_achievement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/achievements/architect_achievement_spec.rb -------------------------------------------------------------------------------- /spec/achievements/base_achievement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/achievements/base_achievement_spec.rb -------------------------------------------------------------------------------- /spec/achievements/crafting_achievement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/achievements/crafting_achievement_spec.rb -------------------------------------------------------------------------------- /spec/achievements/discovery_achievement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/achievements/discovery_achievement_spec.rb -------------------------------------------------------------------------------- /spec/achievements/explorer_achievement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/achievements/explorer_achievement_spec.rb -------------------------------------------------------------------------------- /spec/achievements/hunting_achievement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/achievements/hunting_achievement_spec.rb -------------------------------------------------------------------------------- /spec/achievements/killer_achievement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/achievements/killer_achievement_spec.rb -------------------------------------------------------------------------------- /spec/achievements/mining_achievement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/achievements/mining_achievement_spec.rb -------------------------------------------------------------------------------- /spec/achievements/position_achievement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/achievements/position_achievement_spec.rb -------------------------------------------------------------------------------- /spec/achievements/scavenging_achievement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/achievements/scavenging_achievement_spec.rb -------------------------------------------------------------------------------- /spec/achievements/sidekick_achievement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/achievements/sidekick_achievement_spec.rb -------------------------------------------------------------------------------- /spec/achievements/trapping_achievement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/achievements/trapping_achievement_spec.rb -------------------------------------------------------------------------------- /spec/achievements/undertaker_achievement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/achievements/undertaker_achievement_spec.rb -------------------------------------------------------------------------------- /spec/bugs/inventory_dupe_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/bugs/inventory_dupe_spec.rb -------------------------------------------------------------------------------- /spec/commands/admin/chop_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/admin/chop_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/authenticate_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/authenticate_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/base_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/base_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/block_ignore_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/block_ignore_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/block_mine_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/block_mine_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/block_place_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/block_place_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/block_use_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/block_use_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/blocks_request_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/blocks_request_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/change_appearance_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/change_appearance_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/change_password_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/change_password_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/chat_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/chat_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/craft_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/craft_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/entity_use_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/entity_use_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/follow_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/follow_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/give_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/give_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/health_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/health_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/heartbeat_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/heartbeat_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/inventory_move_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/inventory_move_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/inventory_use_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/inventory_use_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/missive_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/missive_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/move_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/move_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/mute_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/mute_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/private_message_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/private_message_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/redeem_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/redeem_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/setting_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/setting_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/skill_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/skill_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/stat_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/stat_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/transaction_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/transaction_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/unmute_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/unmute_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/world_commands_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/world_commands_spec.rb -------------------------------------------------------------------------------- /spec/commands/zone_change_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/zone_change_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/zone_entry_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/zone_entry_command_spec.rb -------------------------------------------------------------------------------- /spec/commands/zone_search_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/commands/zone_search_command_spec.rb -------------------------------------------------------------------------------- /spec/data/npcs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/data/npcs.yaml -------------------------------------------------------------------------------- /spec/data/test_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/data/test_notifications.rb -------------------------------------------------------------------------------- /spec/dynamics/dungeon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/dynamics/dungeon_spec.rb -------------------------------------------------------------------------------- /spec/dynamics/growth_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/dynamics/growth_spec.rb -------------------------------------------------------------------------------- /spec/dynamics/happenings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/dynamics/happenings_spec.rb -------------------------------------------------------------------------------- /spec/dynamics/switching_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/dynamics/switching_spec.rb -------------------------------------------------------------------------------- /spec/dynamics/weather_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/dynamics/weather_spec.rb -------------------------------------------------------------------------------- /spec/foundries/access_code_foundry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/foundries/access_code_foundry.rb -------------------------------------------------------------------------------- /spec/foundries/base_foundry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/foundries/base_foundry.rb -------------------------------------------------------------------------------- /spec/foundries/campaign_foundry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/foundries/campaign_foundry.rb -------------------------------------------------------------------------------- /spec/foundries/competition_foundry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/foundries/competition_foundry.rb -------------------------------------------------------------------------------- /spec/foundries/configuration_foundry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/foundries/configuration_foundry.rb -------------------------------------------------------------------------------- /spec/foundries/guild_foundry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/foundries/guild_foundry.rb -------------------------------------------------------------------------------- /spec/foundries/minigame_record_foundry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/foundries/minigame_record_foundry.rb -------------------------------------------------------------------------------- /spec/foundries/missive_foundry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/foundries/missive_foundry.rb -------------------------------------------------------------------------------- /spec/foundries/player_foundry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/foundries/player_foundry.rb -------------------------------------------------------------------------------- /spec/foundries/product_foundry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/foundries/product_foundry.rb -------------------------------------------------------------------------------- /spec/foundries/redemption_code_foundry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/foundries/redemption_code_foundry.rb -------------------------------------------------------------------------------- /spec/foundries/server_foundry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/foundries/server_foundry.rb -------------------------------------------------------------------------------- /spec/foundries/zone_foundry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/foundries/zone_foundry.rb -------------------------------------------------------------------------------- /spec/items/consumable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/items/consumable_spec.rb -------------------------------------------------------------------------------- /spec/items/crafter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/items/crafter_spec.rb -------------------------------------------------------------------------------- /spec/items/daily_bonus_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/items/daily_bonus_spec.rb -------------------------------------------------------------------------------- /spec/items/landmark_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/items/landmark_spec.rb -------------------------------------------------------------------------------- /spec/items/meta_change_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/items/meta_change_spec.rb -------------------------------------------------------------------------------- /spec/items/recycler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/items/recycler_spec.rb -------------------------------------------------------------------------------- /spec/items/world_machine_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/items/world_machine_spec.rb -------------------------------------------------------------------------------- /spec/lib/cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/lib/cache_spec.rb -------------------------------------------------------------------------------- /spec/lib/localization_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/lib/localization_spec.rb -------------------------------------------------------------------------------- /spec/lib/mongo_model_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/lib/mongo_model_spec.rb -------------------------------------------------------------------------------- /spec/lib/obscenity_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/lib/obscenity_spec.rb -------------------------------------------------------------------------------- /spec/lib/rect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/lib/rect_spec.rb -------------------------------------------------------------------------------- /spec/lib/spatial_hash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/lib/spatial_hash_spec.rb -------------------------------------------------------------------------------- /spec/messages/achivement_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/messages/achivement_message_spec.rb -------------------------------------------------------------------------------- /spec/messages/entity_item_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/messages/entity_item_message_spec.rb -------------------------------------------------------------------------------- /spec/messages/entity_position_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/messages/entity_position_message_spec.rb -------------------------------------------------------------------------------- /spec/messages/entity_status_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/messages/entity_status_message_spec.rb -------------------------------------------------------------------------------- /spec/messages/follow_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/messages/follow_message_spec.rb -------------------------------------------------------------------------------- /spec/messages/kick_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/messages/kick_message_spec.rb -------------------------------------------------------------------------------- /spec/messages/light_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/messages/light_message_spec.rb -------------------------------------------------------------------------------- /spec/messages/zone_explored_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/messages/zone_explored_message_spec.rb -------------------------------------------------------------------------------- /spec/models/alert_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/alert_spec.rb -------------------------------------------------------------------------------- /spec/models/behavior/attack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/behavior/attack_spec.rb -------------------------------------------------------------------------------- /spec/models/behavior/shielder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/behavior/shielder_spec.rb -------------------------------------------------------------------------------- /spec/models/behavior/terrapus_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/behavior/terrapus_spec.rb -------------------------------------------------------------------------------- /spec/models/campaign_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/campaign_spec.rb -------------------------------------------------------------------------------- /spec/models/competition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/competition_spec.rb -------------------------------------------------------------------------------- /spec/models/ecosystem_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/ecosystem_spec.rb -------------------------------------------------------------------------------- /spec/models/game_configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/game_configuration_spec.rb -------------------------------------------------------------------------------- /spec/models/gen/compound_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/gen/compound_spec.rb -------------------------------------------------------------------------------- /spec/models/guild_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/guild_spec.rb -------------------------------------------------------------------------------- /spec/models/light_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/light_spec.rb -------------------------------------------------------------------------------- /spec/models/liquid_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/liquid_spec.rb -------------------------------------------------------------------------------- /spec/models/migrator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/migrator_spec.rb -------------------------------------------------------------------------------- /spec/models/minigames/custom_minigame_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/minigames/custom_minigame_spec.rb -------------------------------------------------------------------------------- /spec/models/minigames/deathmatch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/minigames/deathmatch_spec.rb -------------------------------------------------------------------------------- /spec/models/minigames/pandora_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/minigames/pandora_spec.rb -------------------------------------------------------------------------------- /spec/models/npcs/character_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/npcs/character_spec.rb -------------------------------------------------------------------------------- /spec/models/npcs/npcs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/npcs/npcs_spec.rb -------------------------------------------------------------------------------- /spec/models/npcs/servant_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/npcs/servant_spec.rb -------------------------------------------------------------------------------- /spec/models/npcs/spawner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/npcs/spawner_spec.rb -------------------------------------------------------------------------------- /spec/models/player_inventory_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/player_inventory_spec.rb -------------------------------------------------------------------------------- /spec/models/player_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/player_spec.rb -------------------------------------------------------------------------------- /spec/models/players/daily_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/players/daily_item_spec.rb -------------------------------------------------------------------------------- /spec/models/players/facebook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/players/facebook_spec.rb -------------------------------------------------------------------------------- /spec/models/players/invite_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/players/invite_spec.rb -------------------------------------------------------------------------------- /spec/models/players/karma_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/players/karma_spec.rb -------------------------------------------------------------------------------- /spec/models/players/orders_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/players/orders_spec.rb -------------------------------------------------------------------------------- /spec/models/players/quests_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/players/quests_spec.rb -------------------------------------------------------------------------------- /spec/models/players/sales_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/players/sales_spec.rb -------------------------------------------------------------------------------- /spec/models/players/skill_upgrade_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/players/skill_upgrade_spec.rb -------------------------------------------------------------------------------- /spec/models/players/xp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/players/xp_spec.rb -------------------------------------------------------------------------------- /spec/models/push_notification_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/push_notification_spec.rb -------------------------------------------------------------------------------- /spec/models/redemption_code_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/redemption_code_spec.rb -------------------------------------------------------------------------------- /spec/models/rewards/loot_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/rewards/loot_spec.rb -------------------------------------------------------------------------------- /spec/models/scenarios/team_pvp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/scenarios/team_pvp_spec.rb -------------------------------------------------------------------------------- /spec/models/scenarios/tutorial_gift_home_world_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/scenarios/tutorial_gift_home_world_spec.rb -------------------------------------------------------------------------------- /spec/models/schedule/schedule_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/schedule/schedule_spec.rb -------------------------------------------------------------------------------- /spec/models/session_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/session_spec.rb -------------------------------------------------------------------------------- /spec/models/static_zone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/static_zone_spec.rb -------------------------------------------------------------------------------- /spec/models/steam_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/steam_spec.rb -------------------------------------------------------------------------------- /spec/models/transaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/transaction_spec.rb -------------------------------------------------------------------------------- /spec/models/zone_searcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/zone_searcher_spec.rb -------------------------------------------------------------------------------- /spec/models/zone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/models/zone_spec.rb -------------------------------------------------------------------------------- /spec/performance/math_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/performance/math_spec.rb -------------------------------------------------------------------------------- /spec/server/connection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/server/connection_spec.rb -------------------------------------------------------------------------------- /spec/server/game_server_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/server/game_server_spec.rb -------------------------------------------------------------------------------- /spec/server/memory_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/server/memory_spec.rb -------------------------------------------------------------------------------- /spec/server/settings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/server/settings_spec.rb -------------------------------------------------------------------------------- /spec/server/stress_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/server/stress_spec.rb -------------------------------------------------------------------------------- /spec/server/zone_kernel_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/server/zone_kernel_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/array_additions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/support/array_additions.rb -------------------------------------------------------------------------------- /spec/support/base_message_additions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/support/base_message_additions.rb -------------------------------------------------------------------------------- /spec/support/block_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/support/block_helpers.rb -------------------------------------------------------------------------------- /spec/support/dialog_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/support/dialog_helpers.rb -------------------------------------------------------------------------------- /spec/support/entity_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/support/entity_helpers.rb -------------------------------------------------------------------------------- /spec/support/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/support/message.rb -------------------------------------------------------------------------------- /spec/support/test_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/spec/support/test_helpers.rb -------------------------------------------------------------------------------- /tasks/build.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/tasks/build.rake -------------------------------------------------------------------------------- /tasks/test.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/tasks/test.rake -------------------------------------------------------------------------------- /trace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/trace.md -------------------------------------------------------------------------------- /vendor/rubyhave/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/vendor/rubyhave/.gitignore -------------------------------------------------------------------------------- /vendor/rubyhave/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/vendor/rubyhave/Gemfile -------------------------------------------------------------------------------- /vendor/rubyhave/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/vendor/rubyhave/README.md -------------------------------------------------------------------------------- /vendor/rubyhave/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /vendor/rubyhave/lib/rubyhave.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/vendor/rubyhave/lib/rubyhave.rb -------------------------------------------------------------------------------- /vendor/rubyhave/lib/rubyhave/behavior.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/vendor/rubyhave/lib/rubyhave/behavior.rb -------------------------------------------------------------------------------- /vendor/rubyhave/lib/rubyhave/behavior_tree.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/vendor/rubyhave/lib/rubyhave/behavior_tree.rb -------------------------------------------------------------------------------- /vendor/rubyhave/lib/rubyhave/composite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/vendor/rubyhave/lib/rubyhave/composite.rb -------------------------------------------------------------------------------- /vendor/rubyhave/lib/rubyhave/selector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/vendor/rubyhave/lib/rubyhave/selector.rb -------------------------------------------------------------------------------- /vendor/rubyhave/lib/rubyhave/sequence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/vendor/rubyhave/lib/rubyhave/sequence.rb -------------------------------------------------------------------------------- /vendor/rubyhave/lib/rubyhave/version.rb: -------------------------------------------------------------------------------- 1 | module Rubyhave 2 | VERSION = "0.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /vendor/rubyhave/rubyhave.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebin/deepworld-gameserver/HEAD/vendor/rubyhave/rubyhave.gemspec --------------------------------------------------------------------------------