Compare commits

...

6 Commits

Author SHA1 Message Date
Alex
d2ccf04e03
Merge a648d09b1b5fd5304f70d756a672de2295c427b6 into 9b3f9f356db1ed29ca8a098cad3682d041b0c5fd 2025-12-09 05:30:39 +00:00
KimLS
a648d09b1b Add uuid to unix builds 2025-12-08 21:30:30 -08:00
KimLS
408bd653bc convert find 2025-12-08 20:56:28 -08:00
KimLS
d378f8b107 Convert show 2025-12-08 20:10:10 -08:00
KimLS
daa9102cc6 Move set out of a giant cpp file include. 2025-12-08 20:00:04 -08:00
dependabot[bot]
9b3f9f356d
Bump golang.org/x/crypto in /utils/scripts/build/should-release (#5032)
Some checks failed
Build / Linux (push) Has been cancelled
Build / Windows (push) Has been cancelled
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.36.0 to 0.45.0.
- [Commits](https://github.com/golang/crypto/compare/v0.36.0...v0.45.0)

---
updated-dependencies:
- dependency-name: golang.org/x/crypto
  dependency-version: 0.45.0
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-20 19:44:17 +01:00
141 changed files with 595 additions and 151 deletions

View File

@ -1293,6 +1293,7 @@ if(${OPENSSL_VERSION} VERSION_GREATER_EQUAL "1.1.1")
endif() endif()
if(UNIX) if(UNIX)
target_link_libraries(common PUBLIC uuid)
set_source_files_properties("SocketLib/Mime.cpp" PROPERTY COMPILE_FLAGS -Wno-unused-result) set_source_files_properties("SocketLib/Mime.cpp" PROPERTY COMPILE_FLAGS -Wno-unused-result)
set_source_files_properties("patches/sod.cpp" "patches/sof.cpp" "patches/rof.cpp" "patches/rof2.cpp" "patches/uf.cpp" PROPERTIES COMPILE_FLAGS -O0) set_source_files_properties("patches/sod.cpp" "patches/sof.cpp" "patches/rof.cpp" "patches/rof2.cpp" "patches/uf.cpp" PROPERTIES COMPILE_FLAGS -O0)
endif() endif()

View File

@ -1,8 +1,6 @@
module should-release module should-release
go 1.23.0 go 1.24.0
toolchain go1.23.5
require ( require (
github.com/google/go-github/v41 v41.0.0 github.com/google/go-github/v41 v41.0.0
@ -11,5 +9,5 @@ require (
require ( require (
github.com/google/go-querystring v1.1.0 // indirect github.com/google/go-querystring v1.1.0 // indirect
golang.org/x/crypto v0.36.0 // indirect golang.org/x/crypto v0.45.0 // indirect
) )

View File

@ -10,8 +10,8 @@ github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
golang.org/x/crypto v0.36.0 h1:AnAEvhDddvBdpY+uR+MyHmuZzzNqXSe/GvuDeob5L34= golang.org/x/crypto v0.45.0 h1:jMBrvKuj23MTlT0bQEOBcAE0mjg8mK9RXFhRH6nyF3Q=
golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc= golang.org/x/crypto v0.45.0/go.mod h1:XTGrrkGJve7CYK7J8PEww4aY7gM3qMCElcJQ8n8JdX4=
golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=

View File

@ -354,6 +354,31 @@ set(gm_command_sources
gm_commands/evolving_items.cpp gm_commands/evolving_items.cpp
gm_commands/feature.cpp gm_commands/feature.cpp
gm_commands/find.cpp gm_commands/find.cpp
gm_commands/find/find_aa.cpp
gm_commands/find/find_account.cpp
gm_commands/find/find_body_type.cpp
gm_commands/find/find_bot.cpp
gm_commands/find/find_bug_category.cpp
gm_commands/find/find_character.cpp
gm_commands/find/find_class.cpp
gm_commands/find/find_comparison_type.cpp
gm_commands/find/find_currency.cpp
gm_commands/find/find_deity.cpp
gm_commands/find/find_emote.cpp
gm_commands/find/find_faction.cpp
gm_commands/find/find_item.cpp
gm_commands/find/find_language.cpp
gm_commands/find/find_ldon_theme.cpp
gm_commands/find/find_npctype.cpp
gm_commands/find/find_object_type.cpp
gm_commands/find/find_race.cpp
gm_commands/find/find_recipe.cpp
gm_commands/find/find_skill.cpp
gm_commands/find/find_special_ability.cpp
gm_commands/find/find_spell.cpp
gm_commands/find/find_stance.cpp
gm_commands/find/find_task.cpp
gm_commands/find/find_zone.cpp
gm_commands/fish.cpp gm_commands/fish.cpp
gm_commands/fixmob.cpp gm_commands/fixmob.cpp
gm_commands/flagedit.cpp gm_commands/flagedit.cpp
@ -432,7 +457,115 @@ set(gm_command_sources
gm_commands/sensetrap.cpp gm_commands/sensetrap.cpp
gm_commands/serverrules.cpp gm_commands/serverrules.cpp
gm_commands/set.cpp gm_commands/set.cpp
gm_commands/set/set_aa_exp.cpp
gm_commands/set/set_aa_points.cpp
gm_commands/set/set_adventure_points.cpp
gm_commands/set/set_alternate_currency.cpp
gm_commands/set/set_animation.cpp
gm_commands/set/set_anon.cpp
gm_commands/set/set_auto_login.cpp
gm_commands/set/set_bind_point.cpp
gm_commands/set/set_checksum.cpp
gm_commands/set/set_class_permanent.cpp
gm_commands/set/set_crystals.cpp
gm_commands/set/set_date.cpp
gm_commands/set/set_endurance.cpp
gm_commands/set/set_endurance_full.cpp
gm_commands/set/set_exp.cpp
gm_commands/set/set_flymode.cpp
gm_commands/set/set_frozen.cpp
gm_commands/set/set_gender.cpp
gm_commands/set/set_gender_permanent.cpp
gm_commands/set/set_gm.cpp
gm_commands/set/set_gm_speed.cpp
gm_commands/set/set_gm_status.cpp
gm_commands/set/set_god_mode.cpp
gm_commands/set/set_haste.cpp
gm_commands/set/set_hero_model.cpp
gm_commands/set/set_hide_me.cpp
gm_commands/set/set_hp.cpp
gm_commands/set/set_hp_full.cpp
gm_commands/set/set_invulnerable.cpp
gm_commands/set/set_language.cpp
gm_commands/set/set_last_name.cpp
gm_commands/set/set_level.cpp
gm_commands/set/set_loginserver_info.cpp
gm_commands/set/set_mana.cpp
gm_commands/set/set_mana_full.cpp
gm_commands/set/set_motd.cpp
gm_commands/set/set_name.cpp
gm_commands/set/set_ooc_mute.cpp
gm_commands/set/set_password.cpp
gm_commands/set/set_pvp.cpp
gm_commands/set/set_pvp_points.cpp
gm_commands/set/set_race.cpp
gm_commands/set/set_race_permanent.cpp
gm_commands/set/set_server_locked.cpp
gm_commands/set/set_skill.cpp
gm_commands/set/set_skill_all.cpp
gm_commands/set/set_skill_all_max.cpp
gm_commands/set/set_start_zone.cpp
gm_commands/set/set_temporary_name.cpp
gm_commands/set/set_texture.cpp
gm_commands/set/set_time.cpp
gm_commands/set/set_time_zone.cpp
gm_commands/set/set_title.cpp
gm_commands/set/set_title_suffix.cpp
gm_commands/set/set_weather.cpp
gm_commands/set/set_zone.cpp
gm_commands/show.cpp gm_commands/show.cpp
gm_commands/show/show_aas.cpp
gm_commands/show/show_aa_points.cpp
gm_commands/show/show_aggro.cpp
gm_commands/show/show_auto_login.cpp
gm_commands/show/show_buffs.cpp
gm_commands/show/show_buried_corpse_count.cpp
gm_commands/show/show_client_version_summary.cpp
gm_commands/show/show_content_flags.cpp
gm_commands/show/show_currencies.cpp
gm_commands/show/show_distance.cpp
gm_commands/show/show_emotes.cpp
gm_commands/show/show_field_of_view.cpp
gm_commands/show/show_flags.cpp
gm_commands/show/show_group_info.cpp
gm_commands/show/show_hatelist.cpp
gm_commands/show/show_inventory.cpp
gm_commands/show/show_ip_lookup.cpp
gm_commands/show/show_keyring.cpp
gm_commands/show/show_line_of_sight.cpp
gm_commands/show/show_network.cpp
gm_commands/show/show_network_stats.cpp
gm_commands/show/show_npc_global_loot.cpp
gm_commands/show/show_npc_stats.cpp
gm_commands/show/show_npc_type.cpp
gm_commands/show/show_peqzone_flags.cpp
gm_commands/show/show_petition.cpp
gm_commands/show/show_petition_info.cpp
gm_commands/show/show_proximity.cpp
gm_commands/show/show_quest_errors.cpp
gm_commands/show/show_quest_globals.cpp
gm_commands/show/show_recipe.cpp
gm_commands/show/show_server_info.cpp
gm_commands/show/show_skills.cpp
gm_commands/show/show_spawn_status.cpp
gm_commands/show/show_special_abilities.cpp
gm_commands/show/show_spells.cpp
gm_commands/show/show_spells_list.cpp
gm_commands/show/show_stats.cpp
gm_commands/show/show_timers.cpp
gm_commands/show/show_traps.cpp
gm_commands/show/show_uptime.cpp
gm_commands/show/show_variable.cpp
gm_commands/show/show_version.cpp
gm_commands/show/show_waypoints.cpp
gm_commands/show/show_who.cpp
gm_commands/show/show_xtargets.cpp
gm_commands/show/show_zone_data.cpp
gm_commands/show/show_zone_global_loot.cpp
gm_commands/show/show_zone_loot.cpp
gm_commands/show/show_zone_points.cpp
gm_commands/show/show_zone_status.cpp
gm_commands/show/show_zone_variables.cpp
gm_commands/shutdown.cpp gm_commands/shutdown.cpp
gm_commands/spawn.cpp gm_commands/spawn.cpp
gm_commands/spawneditmass.cpp gm_commands/spawneditmass.cpp
@ -469,6 +602,146 @@ set(gm_command_sources
gm_commands/zsave.cpp gm_commands/zsave.cpp
) )
source_group(find FILES
gm_commands/find/find_aa.cpp
gm_commands/find/find_account.cpp
gm_commands/find/find_body_type.cpp
gm_commands/find/find_bot.cpp
gm_commands/find/find_bug_category.cpp
gm_commands/find/find_character.cpp
gm_commands/find/find_class.cpp
gm_commands/find/find_comparison_type.cpp
gm_commands/find/find_currency.cpp
gm_commands/find/find_deity.cpp
gm_commands/find/find_emote.cpp
gm_commands/find/find_faction.cpp
gm_commands/find/find_item.cpp
gm_commands/find/find_language.cpp
gm_commands/find/find_ldon_theme.cpp
gm_commands/find/find_npctype.cpp
gm_commands/find/find_object_type.cpp
gm_commands/find/find_race.cpp
gm_commands/find/find_recipe.cpp
gm_commands/find/find_skill.cpp
gm_commands/find/find_special_ability.cpp
gm_commands/find/find_spell.cpp
gm_commands/find/find_stance.cpp
gm_commands/find/find_task.cpp
gm_commands/find/find_zone.cpp
)
source_group(set FILES
gm_commands/set/set_aa_exp.cpp
gm_commands/set/set_aa_points.cpp
gm_commands/set/set_adventure_points.cpp
gm_commands/set/set_alternate_currency.cpp
gm_commands/set/set_animation.cpp
gm_commands/set/set_anon.cpp
gm_commands/set/set_auto_login.cpp
gm_commands/set/set_bind_point.cpp
gm_commands/set/set_checksum.cpp
gm_commands/set/set_class_permanent.cpp
gm_commands/set/set_crystals.cpp
gm_commands/set/set_date.cpp
gm_commands/set/set_endurance.cpp
gm_commands/set/set_endurance_full.cpp
gm_commands/set/set_exp.cpp
gm_commands/set/set_flymode.cpp
gm_commands/set/set_frozen.cpp
gm_commands/set/set_gender.cpp
gm_commands/set/set_gender_permanent.cpp
gm_commands/set/set_gm.cpp
gm_commands/set/set_gm_speed.cpp
gm_commands/set/set_gm_status.cpp
gm_commands/set/set_god_mode.cpp
gm_commands/set/set_haste.cpp
gm_commands/set/set_hero_model.cpp
gm_commands/set/set_hide_me.cpp
gm_commands/set/set_hp.cpp
gm_commands/set/set_hp_full.cpp
gm_commands/set/set_invulnerable.cpp
gm_commands/set/set_language.cpp
gm_commands/set/set_last_name.cpp
gm_commands/set/set_level.cpp
gm_commands/set/set_loginserver_info.cpp
gm_commands/set/set_mana.cpp
gm_commands/set/set_mana_full.cpp
gm_commands/set/set_motd.cpp
gm_commands/set/set_name.cpp
gm_commands/set/set_ooc_mute.cpp
gm_commands/set/set_password.cpp
gm_commands/set/set_pvp.cpp
gm_commands/set/set_pvp_points.cpp
gm_commands/set/set_race.cpp
gm_commands/set/set_race_permanent.cpp
gm_commands/set/set_server_locked.cpp
gm_commands/set/set_skill.cpp
gm_commands/set/set_skill_all.cpp
gm_commands/set/set_skill_all_max.cpp
gm_commands/set/set_start_zone.cpp
gm_commands/set/set_temporary_name.cpp
gm_commands/set/set_texture.cpp
gm_commands/set/set_time.cpp
gm_commands/set/set_time_zone.cpp
gm_commands/set/set_title.cpp
gm_commands/set/set_title_suffix.cpp
gm_commands/set/set_weather.cpp
gm_commands/set/set_zone.cpp)
source_group(show FILES
gm_commands/show/show_aas.cpp
gm_commands/show/show_aa_points.cpp
gm_commands/show/show_aggro.cpp
gm_commands/show/show_auto_login.cpp
gm_commands/show/show_buffs.cpp
gm_commands/show/show_buried_corpse_count.cpp
gm_commands/show/show_client_version_summary.cpp
gm_commands/show/show_content_flags.cpp
gm_commands/show/show_currencies.cpp
gm_commands/show/show_distance.cpp
gm_commands/show/show_emotes.cpp
gm_commands/show/show_field_of_view.cpp
gm_commands/show/show_flags.cpp
gm_commands/show/show_group_info.cpp
gm_commands/show/show_hatelist.cpp
gm_commands/show/show_inventory.cpp
gm_commands/show/show_ip_lookup.cpp
gm_commands/show/show_keyring.cpp
gm_commands/show/show_line_of_sight.cpp
gm_commands/show/show_network.cpp
gm_commands/show/show_network_stats.cpp
gm_commands/show/show_npc_global_loot.cpp
gm_commands/show/show_npc_stats.cpp
gm_commands/show/show_npc_type.cpp
gm_commands/show/show_peqzone_flags.cpp
gm_commands/show/show_petition.cpp
gm_commands/show/show_petition_info.cpp
gm_commands/show/show_proximity.cpp
gm_commands/show/show_quest_errors.cpp
gm_commands/show/show_quest_globals.cpp
gm_commands/show/show_recipe.cpp
gm_commands/show/show_server_info.cpp
gm_commands/show/show_skills.cpp
gm_commands/show/show_spawn_status.cpp
gm_commands/show/show_special_abilities.cpp
gm_commands/show/show_spells.cpp
gm_commands/show/show_spells_list.cpp
gm_commands/show/show_stats.cpp
gm_commands/show/show_timers.cpp
gm_commands/show/show_traps.cpp
gm_commands/show/show_uptime.cpp
gm_commands/show/show_variable.cpp
gm_commands/show/show_version.cpp
gm_commands/show/show_waypoints.cpp
gm_commands/show/show_who.cpp
gm_commands/show/show_xtargets.cpp
gm_commands/show/show_zone_data.cpp
gm_commands/show/show_zone_global_loot.cpp
gm_commands/show/show_zone_loot.cpp
gm_commands/show/show_zone_points.cpp
gm_commands/show/show_zone_status.cpp
gm_commands/show/show_zone_variables.cpp)
add_library(gm_commands_zone STATIC ${gm_command_sources}) add_library(gm_commands_zone STATIC ${gm_command_sources})
target_link_libraries(gm_commands_zone PRIVATE cereal::cereal fmt::fmt $<IF:$<TARGET_EXISTS:libuv::uv_a>,libuv::uv_a,libuv::uv> unofficial::libmariadb) target_link_libraries(gm_commands_zone PRIVATE cereal::cereal fmt::fmt $<IF:$<TARGET_EXISTS:libuv::uv_a>,libuv::uv_a,libuv::uv> unofficial::libmariadb)
set_target_properties(gm_commands_zone PROPERTIES UNITY_BUILD ON UNITY_BUILD_BATCH_SIZE 32) set_target_properties(gm_commands_zone PROPERTIES UNITY_BUILD ON UNITY_BUILD_BATCH_SIZE 32)

View File

@ -0,0 +1,169 @@
cmake_minimum_required(VERSION 3.20)
# gm commands
set(gm_command_sources
command.cpp
bot_command.cpp
gm_commands/acceptrules.cpp
gm_commands/advnpcspawn.cpp
gm_commands/aggrozone.cpp
gm_commands/ai.cpp
gm_commands/appearance.cpp
gm_commands/appearanceeffects.cpp
gm_commands/attack.cpp
gm_commands/augmentitem.cpp
gm_commands/ban.cpp
gm_commands/bugs.cpp
gm_commands/camerashake.cpp
gm_commands/castspell.cpp
gm_commands/chat.cpp
gm_commands/clearxtargets.cpp
gm_commands/copycharacter.cpp
gm_commands/corpse.cpp
gm_commands/corpsefix.cpp
gm_commands/countitem.cpp
gm_commands/damage.cpp
gm_commands/databuckets.cpp
gm_commands/dbspawn2.cpp
gm_commands/delacct.cpp
gm_commands/delpetition.cpp
gm_commands/depop.cpp
gm_commands/depopzone.cpp
gm_commands/devtools.cpp
gm_commands/disablerecipe.cpp
gm_commands/disarmtrap.cpp
gm_commands/doanim.cpp
gm_commands/door.cpp
gm_commands/door_manipulation.cpp
gm_commands/dye.cpp
gm_commands/dz.cpp
gm_commands/dzkickplayers.cpp
gm_commands/editmassrespawn.cpp
gm_commands/emote.cpp
gm_commands/emptyinventory.cpp
gm_commands/enablerecipe.cpp
gm_commands/entityvariable.cpp
gm_commands/exptoggle.cpp
gm_commands/faction.cpp
gm_commands/evolving_items.cpp
gm_commands/feature.cpp
gm_commands/find.cpp
gm_commands/fish.cpp
gm_commands/fixmob.cpp
gm_commands/flagedit.cpp
gm_commands/fleeinfo.cpp
gm_commands/forage.cpp
gm_commands/gearup.cpp
gm_commands/giveitem.cpp
gm_commands/givemoney.cpp
gm_commands/gmzone.cpp
gm_commands/goto.cpp
gm_commands/grantaa.cpp
gm_commands/grid.cpp
gm_commands/guild.cpp
gm_commands/hp.cpp
gm_commands/illusion_block.cpp
gm_commands/instance.cpp
gm_commands/interrogateinv.cpp
gm_commands/interrupt.cpp
gm_commands/invsnapshot.cpp
gm_commands/ipban.cpp
gm_commands/kick.cpp
gm_commands/kill.cpp
gm_commands/killallnpcs.cpp
gm_commands/list.cpp
gm_commands/lootsim.cpp
gm_commands/loc.cpp
gm_commands/logs.cpp
gm_commands/makepet.cpp
gm_commands/memspell.cpp
gm_commands/merchantshop.cpp
gm_commands/modifynpcstat.cpp
gm_commands/movechar.cpp
gm_commands/movement.cpp
gm_commands/myskills.cpp
gm_commands/mysql.cpp
gm_commands/mystats.cpp
gm_commands/npccast.cpp
gm_commands/npcedit.cpp
gm_commands/npceditmass.cpp
gm_commands/npcemote.cpp
gm_commands/npcloot.cpp
gm_commands/npcsay.cpp
gm_commands/npcshout.cpp
gm_commands/npcspawn.cpp
gm_commands/npctypespawn.cpp
gm_commands/nudge.cpp
gm_commands/nukebuffs.cpp
gm_commands/nukeitem.cpp
gm_commands/object.cpp
gm_commands/object_manipulation.cpp
gm_commands/parcels.cpp
gm_commands/path.cpp
gm_commands/peqzone.cpp
gm_commands/petitems.cpp
gm_commands/petname.cpp
gm_commands/picklock.cpp
gm_commands/profanity.cpp
gm_commands/push.cpp
gm_commands/raidloot.cpp
gm_commands/randomfeatures.cpp
gm_commands/refreshgroup.cpp
gm_commands/reload.cpp
gm_commands/removeitem.cpp
gm_commands/repop.cpp
gm_commands/resetaa.cpp
gm_commands/resetaa_timer.cpp
gm_commands/resetdisc_timer.cpp
gm_commands/revoke.cpp
gm_commands/roambox.cpp
gm_commands/rules.cpp
gm_commands/save.cpp
gm_commands/scale.cpp
gm_commands/scribespell.cpp
gm_commands/scribespells.cpp
gm_commands/sendzonespawns.cpp
gm_commands/sensetrap.cpp
gm_commands/serverrules.cpp
gm_commands/set.cpp
gm_commands/show.cpp
gm_commands/shutdown.cpp
gm_commands/spawn.cpp
gm_commands/spawneditmass.cpp
gm_commands/spawnfix.cpp
gm_commands/faction_association.cpp
gm_commands/stun.cpp
gm_commands/summon.cpp
gm_commands/summonburiedplayercorpse.cpp
gm_commands/summonitem.cpp
gm_commands/suspend.cpp
gm_commands/suspendmulti.cpp
gm_commands/takeplatinum.cpp
gm_commands/task.cpp
gm_commands/traindisc.cpp
gm_commands/tune.cpp
gm_commands/undye.cpp
gm_commands/unmemspell.cpp
gm_commands/unmemspells.cpp
gm_commands/unscribespell.cpp
gm_commands/unscribespells.cpp
gm_commands/untraindisc.cpp
gm_commands/untraindiscs.cpp
gm_commands/wc.cpp
gm_commands/worldshutdown.cpp
gm_commands/worldwide.cpp
gm_commands/wp.cpp
gm_commands/wpadd.cpp
gm_commands/zone.cpp
gm_commands/zonebootup.cpp
gm_commands/zoneshutdown.cpp
gm_commands/zonevariable.cpp
gm_commands/zone_instance.cpp
gm_commands/zone_shard.cpp
gm_commands/zsave.cpp
)
add_library(gm_commands_zone STATIC ${gm_command_sources})
target_link_libraries(gm_commands_zone PRIVATE common)
set_target_properties(gm_commands_zone PROPERTIES UNITY_BUILD ON UNITY_BUILD_BATCH_SIZE 32)

View File

@ -1,29 +1,30 @@
#include "../client.h" #include "../client.h"
#include "find/aa.cpp"
#include "find/account.cpp" void FindAA(Client* c, const Seperator* sep);
#include "find/body_type.cpp" void FindAccount(Client* c, const Seperator* sep);
#include "find/bot.cpp" void FindBodyType(Client* c, const Seperator* sep);
#include "find/bug_category.cpp" void FindBot(Client* c, const Seperator* sep);
#include "find/character.cpp" void FindBugCategory(Client* c, const Seperator* sep);
#include "find/class.cpp" void FindCharacter(Client* c, const Seperator* sep);
#include "find/comparison_type.cpp" void FindClass(Client* c, const Seperator* sep);
#include "find/currency.cpp" void FindComparisonType(Client* c, const Seperator* sep);
#include "find/deity.cpp" void FindCurrency(Client* c, const Seperator* sep);
#include "find/emote.cpp" void FindDeity(Client* c, const Seperator* sep);
#include "find/faction.cpp" void FindEmote(Client* c, const Seperator* sep);
#include "find/item.cpp" void FindFaction(Client* c, const Seperator* sep);
#include "find/language.cpp" void FindItem(Client* c, const Seperator* sep);
#include "find/ldon_theme.cpp" void FindLanguage(Client* c, const Seperator* sep);
#include "find/npctype.cpp" void FindLDoNTheme(Client* c, const Seperator* sep);
#include "find/object_type.cpp" void FindNPCType(Client* c, const Seperator* sep);
#include "find/race.cpp" void FindObjectType(Client* c, const Seperator* sep);
#include "find/recipe.cpp" void FindRace(Client* c, const Seperator* sep);
#include "find/skill.cpp" void FindRecipe(Client* c, const Seperator* sep);
#include "find/stance.cpp" void FindSkill(Client* c, const Seperator* sep);
#include "find/spell.cpp" void FindSpecialAbility(Client* c, const Seperator* sep);
#include "find/special_ability.cpp" void FindStance(Client* c, const Seperator* sep);
#include "find/task.cpp" void FindSpell(Client* c, const Seperator* sep);
#include "find/zone.cpp" void FindTask(Client* c, const Seperator* sep);
void FindZone(Client* c, const Seperator* sep);
void command_find(Client *c, const Seperator *sep) void command_find(Client *c, const Seperator *sep)
{ {

View File

@ -1,5 +1,5 @@
#include "../../client.h" #include "../../client.h"
#include "../../common/repositories/account_repository.h" #include "../../../common/repositories/account_repository.h"
void FindAccount(Client *c, const Seperator *sep) void FindAccount(Client *c, const Seperator *sep)
{ {

View File

@ -1,5 +1,5 @@
#include "../../client.h" #include "../../client.h"
#include "../../common/repositories/bot_data_repository.h" #include "../../../common/repositories/bot_data_repository.h"
void FindBot(Client *c, const Seperator *sep) void FindBot(Client *c, const Seperator *sep)
{ {

View File

@ -1,5 +1,5 @@
#include "../../client.h" #include "../../client.h"
#include "../../common/repositories/character_data_repository.h" #include "../../../common/repositories/character_data_repository.h"
void FindCharacter(Client *c, const Seperator *sep) void FindCharacter(Client *c, const Seperator *sep)
{ {

View File

@ -1,5 +1,5 @@
#include "../../client.h" #include "../../client.h"
#include "../../common/repositories/items_repository.h" #include "../../../common/repositories/items_repository.h"
void FindItem(Client *c, const Seperator *sep) void FindItem(Client *c, const Seperator *sep)
{ {

View File

@ -1,6 +1,6 @@
#include "../../client.h" #include "../../client.h"
#include "../../command.h" #include "../../command.h"
#include "../../common/repositories/tradeskill_recipe_repository.h" #include "../../../common/repositories/tradeskill_recipe_repository.h"
void FindRecipe(Client *c, const Seperator *sep) void FindRecipe(Client *c, const Seperator *sep)
{ {

View File

@ -1,5 +1,5 @@
#include "../../client.h" #include "../../client.h"
#include "../../common/content/world_content_service.h" #include "../../../common/content/world_content_service.h"
void FindZone(Client* c, const Seperator* sep) void FindZone(Client* c, const Seperator* sep)
{ {

View File

@ -1,60 +1,61 @@
#include "../client.h" #include "../client.h"
#include "set/aa_exp.cpp"
#include "set/aa_points.cpp" void SetAAEXP(Client *c, const Seperator *sep);
#include "set/adventure_points.cpp" void SetAAPoints(Client *c, const Seperator *sep);
#include "set/alternate_currency.cpp" void SetAdventurePoints(Client *c, const Seperator *sep);
#include "set/animation.cpp" void SetAlternateCurrency(Client *c, const Seperator *sep);
#include "set/anon.cpp" void SetAnimation(Client *c, const Seperator *sep);
#include "set/auto_login.cpp" void SetAnon(Client *c, const Seperator *sep);
#include "set/bind_point.cpp" void SetAutoLogin(Client *c, const Seperator *sep);
#include "set/checksum.cpp" void SetBindPoint(Client *c, const Seperator *sep);
#include "set/class_permanent.cpp" void SetChecksum(Client *c, const Seperator *sep);
#include "set/crystals.cpp" void SetClassPermanent(Client *c, const Seperator *sep);
#include "set/date.cpp" void SetCrystals(Client *c, const Seperator *sep);
#include "set/endurance.cpp" void SetDate(Client *c, const Seperator *sep);
#include "set/endurance_full.cpp" void SetEndurance(Client *c, const Seperator *sep);
#include "set/exp.cpp" void SetEnduranceFull(Client *c, const Seperator *sep);
#include "set/flymode.cpp" void SetEXP(Client *c, const Seperator *sep);
#include "set/frozen.cpp" void SetFlymode(Client *c, const Seperator *sep);
#include "set/gender.cpp" void SetFrozen(Client *c, const Seperator *sep);
#include "set/gender_permanent.cpp" void SetGender(Client *c, const Seperator *sep);
#include "set/gm.cpp" void SetGenderPermanent(Client *c, const Seperator *sep);
#include "set/gm_speed.cpp" void SetGM(Client *c, const Seperator *sep);
#include "set/gm_status.cpp" void SetGMSpeed(Client *c, const Seperator *sep);
#include "set/god_mode.cpp" void SetGMStatus(Client *c, const Seperator *sep);
#include "set/haste.cpp" void SetGodMode(Client *c, const Seperator *sep);
#include "set/hero_model.cpp" void SetHaste(Client *c, const Seperator *sep);
#include "set/hide_me.cpp" void SetHideMe(Client *c, const Seperator *sep);
#include "set/hp.cpp" void SetHeroModel(Client *c, const Seperator *sep);
#include "set/hp_full.cpp" void SetHP(Client *c, const Seperator *sep);
#include "set/invulnerable.cpp" void SetHPFull(Client *c, const Seperator *sep);
#include "set/language.cpp" void SetInvulnerable(Client *c, const Seperator *sep);
#include "set/last_name.cpp" void SetLanguage(Client *c, const Seperator *sep);
#include "set/level.cpp" void SetLastName(Client *c, const Seperator *sep);
#include "set/loginserver_info.cpp" void SetLevel(Client *c, const Seperator *sep);
#include "set/mana.cpp" void SetLoginserverInfo(Client *c, const Seperator *sep);
#include "set/mana_full.cpp" void SetMana(Client *c, const Seperator *sep);
#include "set/motd.cpp" void SetManaFull(Client *c, const Seperator *sep);
#include "set/name.cpp" void SetMOTD(Client *c, const Seperator *sep);
#include "set/ooc_mute.cpp" void SetName(Client *c, const Seperator *sep);
#include "set/password.cpp" void SetOOCMute(Client *c, const Seperator *sep);
#include "set/pvp.cpp" void SetPassword(Client *c, const Seperator *sep);
#include "set/pvp_points.cpp" void SetPVP(Client *c, const Seperator *sep);
#include "set/race.cpp" void SetPVPPoints(Client *c, const Seperator *sep);
#include "set/race_permanent.cpp" void SetRace(Client *c, const Seperator *sep);
#include "set/server_locked.cpp" void SetRacePermanent(Client *c, const Seperator *sep);
#include "set/skill.cpp" void SetServerLocked(Client *c, const Seperator *sep);
#include "set/skill_all.cpp" void SetSkill(Client *c, const Seperator *sep);
#include "set/skill_all_max.cpp" void SetSkillAll(Client *c, const Seperator *sep);
#include "set/start_zone.cpp" void SetSkillAllMax(Client *c, const Seperator *sep);
#include "set/temporary_name.cpp" void SetStartZone(Client *c, const Seperator *sep);
#include "set/texture.cpp" void SetTemporaryName(Client *c, const Seperator *sep);
#include "set/time.cpp" void SetTexture(Client *c, const Seperator *sep);
#include "set/time_zone.cpp" void SetTime(Client *c, const Seperator *sep);
#include "set/title.cpp" void SetTimeZone(Client *c, const Seperator *sep);
#include "set/title_suffix.cpp" void SetTitle(Client *c, const Seperator *sep);
#include "set/weather.cpp" void SetTitleSuffix(Client *c, const Seperator *sep);
#include "set/zone.cpp" void SetWeather(Client *c, const Seperator *sep);
void SetZoneData(Client *c, const Seperator *sep);
void command_set(Client *c, const Seperator *sep) void command_set(Client *c, const Seperator *sep)
{ {

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

@ -1,56 +1,57 @@
#include "../client.h" #include "../client.h"
#include "show/aas.cpp"
#include "show/aa_points.cpp" void ShowAAs(Client* c, const Seperator* sep);
#include "show/aggro.cpp" void ShowAAPoints(Client* c, const Seperator* sep);
#include "show/auto_login.cpp" void ShowAggro(Client* c, const Seperator* sep);
#include "show/buffs.cpp" void ShowAutoLogin(Client* c, const Seperator* sep);
#include "show/buried_corpse_count.cpp" void ShowBuffs(Client* c, const Seperator* sep);
#include "show/client_version_summary.cpp" void ShowBuriedCorpseCount(Client* c, const Seperator* sep);
#include "show/content_flags.cpp" void ShowClientVersionSummary(Client* c, const Seperator* sep);
#include "show/currencies.cpp" void ShowContentFlags(Client* c, const Seperator* sep);
#include "show/distance.cpp" void ShowCurrencies(Client* c, const Seperator* sep);
#include "show/emotes.cpp" void ShowDistance(Client* c, const Seperator* sep);
#include "show/field_of_view.cpp" void ShowEmotes(Client* c, const Seperator* sep);
#include "show/flags.cpp" void ShowFieldOfView(Client* c, const Seperator* sep);
#include "show/group_info.cpp" void ShowFlags(Client* c, const Seperator* sep);
#include "show/hatelist.cpp" void ShowGroupInfo(Client* c, const Seperator* sep);
#include "show/inventory.cpp" void ShowHateList(Client* c, const Seperator* sep);
#include "show/keyring.cpp" void ShowInventory(Client* c, const Seperator* sep);
#include "show/ip_lookup.cpp" void ShowIPLookup(Client* c, const Seperator* sep);
#include "show/line_of_sight.cpp" void ShowKeyring(Client* c, const Seperator* sep);
#include "show/network.cpp" void ShowLineOfSight(Client* c, const Seperator* sep);
#include "show/network_stats.cpp" void ShowNetwork(Client* c, const Seperator* sep);
#include "show/npc_global_loot.cpp" void ShowNetworkStats(Client* c, const Seperator* sep);
#include "show/npc_stats.cpp" void ShowNPCGlobalLoot(Client* c, const Seperator* sep);
#include "show/npc_type.cpp" void ShowNPCStats(Client* c, const Seperator* sep);
#include "show/peqzone_flags.cpp" void ShowNPCType(Client* c, const Seperator* sep);
#include "show/petition.cpp" void ShowPEQZoneFlags(Client* c, const Seperator* sep);
#include "show/petition_info.cpp" void ShowPetition(Client* c, const Seperator* sep);
#include "show/proximity.cpp" void ShowPetitionInfo(Client* c, const Seperator* sep);
#include "show/quest_errors.cpp" void ShowProximity(Client* c, const Seperator* sep);
#include "show/quest_globals.cpp" void ShowQuestErrors(Client* c, const Seperator* sep);
#include "show/recipe.cpp" void ShowQuestGlobals(Client* c, const Seperator* sep);
#include "show/server_info.cpp" void ShowRecipe(Client* c, const Seperator* sep);
#include "show/skills.cpp" void ShowServerInfo(Client* c, const Seperator* sep);
#include "show/spawn_status.cpp" void ShowSkills(Client* c, const Seperator* sep);
#include "show/special_abilities.cpp" void ShowSpawnStatus(Client* c, const Seperator* sep);
#include "show/spells.cpp" void ShowSpecialAbilities(Client* c, const Seperator* sep);
#include "show/spells_list.cpp" void ShowSpells(Client* c, const Seperator* sep);
#include "show/stats.cpp" void ShowSpellsList(Client* c, const Seperator* sep);
#include "show/timers.cpp" void ShowStats(Client* c, const Seperator* sep);
#include "show/traps.cpp" void ShowTimers(Client* c, const Seperator* sep);
#include "show/uptime.cpp" void ShowTraps(Client* c, const Seperator* sep);
#include "show/variable.cpp" void ShowUptime(Client* c, const Seperator* sep);
#include "show/version.cpp" void ShowVariable(Client* c, const Seperator* sep);
#include "show/waypoints.cpp" void ShowVersion(Client* c, const Seperator* sep);
#include "show/who.cpp" void ShowWaypoints(Client* c, const Seperator* sep);
#include "show/xtargets.cpp" void ShowWho(Client* c, const Seperator* sep);
#include "show/zone_data.cpp" void ShowXTargets(Client* c, const Seperator* sep);
#include "show/zone_global_loot.cpp" void ShowZoneData(Client* c, const Seperator* sep);
#include "show/zone_loot.cpp" void ShowZoneGlobalLoot(Client* c, const Seperator* sep);
#include "show/zone_points.cpp" void ShowZoneLoot(Client* c, const Seperator* sep);
#include "show/zone_status.cpp" void ShowZonePoints(Client* c, const Seperator* sep);
#include "show/zone_variables.cpp" void ShowZoneStatus(Client* c, const Seperator* sep);
void ShowZoneVariables(Client* c, const Seperator* sep);
void command_show(Client *c, const Seperator *sep) void command_show(Client *c, const Seperator *sep)
{ {

Some files were not shown because too many files have changed in this diff Show More