mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
Move set out of a giant cpp file include.
This commit is contained in:
parent
04d947a40e
commit
daa9102cc6
@ -432,6 +432,62 @@ set(gm_command_sources
|
||||
gm_commands/sensetrap.cpp
|
||||
gm_commands/serverrules.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/shutdown.cpp
|
||||
gm_commands/spawn.cpp
|
||||
@ -469,6 +525,64 @@ set(gm_command_sources
|
||||
gm_commands/zsave.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)
|
||||
|
||||
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)
|
||||
set_target_properties(gm_commands_zone PROPERTIES UNITY_BUILD ON UNITY_BUILD_BATCH_SIZE 32)
|
||||
|
||||
169
zone/gm_commands/CMakeLists.txt
Normal file
169
zone/gm_commands/CMakeLists.txt
Normal 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)
|
||||
|
||||
@ -1,60 +1,61 @@
|
||||
#include "../client.h"
|
||||
#include "set/aa_exp.cpp"
|
||||
#include "set/aa_points.cpp"
|
||||
#include "set/adventure_points.cpp"
|
||||
#include "set/alternate_currency.cpp"
|
||||
#include "set/animation.cpp"
|
||||
#include "set/anon.cpp"
|
||||
#include "set/auto_login.cpp"
|
||||
#include "set/bind_point.cpp"
|
||||
#include "set/checksum.cpp"
|
||||
#include "set/class_permanent.cpp"
|
||||
#include "set/crystals.cpp"
|
||||
#include "set/date.cpp"
|
||||
#include "set/endurance.cpp"
|
||||
#include "set/endurance_full.cpp"
|
||||
#include "set/exp.cpp"
|
||||
#include "set/flymode.cpp"
|
||||
#include "set/frozen.cpp"
|
||||
#include "set/gender.cpp"
|
||||
#include "set/gender_permanent.cpp"
|
||||
#include "set/gm.cpp"
|
||||
#include "set/gm_speed.cpp"
|
||||
#include "set/gm_status.cpp"
|
||||
#include "set/god_mode.cpp"
|
||||
#include "set/haste.cpp"
|
||||
#include "set/hero_model.cpp"
|
||||
#include "set/hide_me.cpp"
|
||||
#include "set/hp.cpp"
|
||||
#include "set/hp_full.cpp"
|
||||
#include "set/invulnerable.cpp"
|
||||
#include "set/language.cpp"
|
||||
#include "set/last_name.cpp"
|
||||
#include "set/level.cpp"
|
||||
#include "set/loginserver_info.cpp"
|
||||
#include "set/mana.cpp"
|
||||
#include "set/mana_full.cpp"
|
||||
#include "set/motd.cpp"
|
||||
#include "set/name.cpp"
|
||||
#include "set/ooc_mute.cpp"
|
||||
#include "set/password.cpp"
|
||||
#include "set/pvp.cpp"
|
||||
#include "set/pvp_points.cpp"
|
||||
#include "set/race.cpp"
|
||||
#include "set/race_permanent.cpp"
|
||||
#include "set/server_locked.cpp"
|
||||
#include "set/skill.cpp"
|
||||
#include "set/skill_all.cpp"
|
||||
#include "set/skill_all_max.cpp"
|
||||
#include "set/start_zone.cpp"
|
||||
#include "set/temporary_name.cpp"
|
||||
#include "set/texture.cpp"
|
||||
#include "set/time.cpp"
|
||||
#include "set/time_zone.cpp"
|
||||
#include "set/title.cpp"
|
||||
#include "set/title_suffix.cpp"
|
||||
#include "set/weather.cpp"
|
||||
#include "set/zone.cpp"
|
||||
|
||||
void SetAAEXP(Client *c, const Seperator *sep);
|
||||
void SetAAPoints(Client *c, const Seperator *sep);
|
||||
void SetAdventurePoints(Client *c, const Seperator *sep);
|
||||
void SetAlternateCurrency(Client *c, const Seperator *sep);
|
||||
void SetAnimation(Client *c, const Seperator *sep);
|
||||
void SetAnon(Client *c, const Seperator *sep);
|
||||
void SetAutoLogin(Client *c, const Seperator *sep);
|
||||
void SetBindPoint(Client *c, const Seperator *sep);
|
||||
void SetChecksum(Client *c, const Seperator *sep);
|
||||
void SetClassPermanent(Client *c, const Seperator *sep);
|
||||
void SetCrystals(Client *c, const Seperator *sep);
|
||||
void SetDate(Client *c, const Seperator *sep);
|
||||
void SetEndurance(Client *c, const Seperator *sep);
|
||||
void SetEnduranceFull(Client *c, const Seperator *sep);
|
||||
void SetEXP(Client *c, const Seperator *sep);
|
||||
void SetFlymode(Client *c, const Seperator *sep);
|
||||
void SetFrozen(Client *c, const Seperator *sep);
|
||||
void SetGender(Client *c, const Seperator *sep);
|
||||
void SetGenderPermanent(Client *c, const Seperator *sep);
|
||||
void SetGM(Client *c, const Seperator *sep);
|
||||
void SetGMSpeed(Client *c, const Seperator *sep);
|
||||
void SetGMStatus(Client *c, const Seperator *sep);
|
||||
void SetGodMode(Client *c, const Seperator *sep);
|
||||
void SetHaste(Client *c, const Seperator *sep);
|
||||
void SetHideMe(Client *c, const Seperator *sep);
|
||||
void SetHeroModel(Client *c, const Seperator *sep);
|
||||
void SetHP(Client *c, const Seperator *sep);
|
||||
void SetHPFull(Client *c, const Seperator *sep);
|
||||
void SetInvulnerable(Client *c, const Seperator *sep);
|
||||
void SetLanguage(Client *c, const Seperator *sep);
|
||||
void SetLastName(Client *c, const Seperator *sep);
|
||||
void SetLevel(Client *c, const Seperator *sep);
|
||||
void SetLoginserverInfo(Client *c, const Seperator *sep);
|
||||
void SetMana(Client *c, const Seperator *sep);
|
||||
void SetManaFull(Client *c, const Seperator *sep);
|
||||
void SetMOTD(Client *c, const Seperator *sep);
|
||||
void SetName(Client *c, const Seperator *sep);
|
||||
void SetOOCMute(Client *c, const Seperator *sep);
|
||||
void SetPassword(Client *c, const Seperator *sep);
|
||||
void SetPVP(Client *c, const Seperator *sep);
|
||||
void SetPVPPoints(Client *c, const Seperator *sep);
|
||||
void SetRace(Client *c, const Seperator *sep);
|
||||
void SetRacePermanent(Client *c, const Seperator *sep);
|
||||
void SetServerLocked(Client *c, const Seperator *sep);
|
||||
void SetSkill(Client *c, const Seperator *sep);
|
||||
void SetSkillAll(Client *c, const Seperator *sep);
|
||||
void SetSkillAllMax(Client *c, const Seperator *sep);
|
||||
void SetStartZone(Client *c, const Seperator *sep);
|
||||
void SetTemporaryName(Client *c, const Seperator *sep);
|
||||
void SetTexture(Client *c, const Seperator *sep);
|
||||
void SetTime(Client *c, const Seperator *sep);
|
||||
void SetTimeZone(Client *c, const Seperator *sep);
|
||||
void SetTitle(Client *c, const Seperator *sep);
|
||||
void SetTitleSuffix(Client *c, const Seperator *sep);
|
||||
void SetWeather(Client *c, const Seperator *sep);
|
||||
void SetZoneData(Client *c, const Seperator *sep);
|
||||
|
||||
void command_set(Client *c, const Seperator *sep)
|
||||
{
|
||||
|
||||
0
zone/gm_commands/set/aa_exp.cpp → zone/gm_commands/set/set_aa_exp.cpp
Executable file → Normal file
0
zone/gm_commands/set/aa_exp.cpp → zone/gm_commands/set/set_aa_exp.cpp
Executable file → Normal file
0
zone/gm_commands/set/aa_points.cpp → zone/gm_commands/set/set_aa_points.cpp
Executable file → Normal file
0
zone/gm_commands/set/aa_points.cpp → zone/gm_commands/set/set_aa_points.cpp
Executable file → Normal file
0
zone/gm_commands/set/adventure_points.cpp → zone/gm_commands/set/set_adventure_points.cpp
Executable file → Normal file
0
zone/gm_commands/set/adventure_points.cpp → zone/gm_commands/set/set_adventure_points.cpp
Executable file → Normal file
0
zone/gm_commands/set/animation.cpp → zone/gm_commands/set/set_animation.cpp
Executable file → Normal file
0
zone/gm_commands/set/animation.cpp → zone/gm_commands/set/set_animation.cpp
Executable file → Normal file
0
zone/gm_commands/set/anon.cpp → zone/gm_commands/set/set_anon.cpp
Executable file → Normal file
0
zone/gm_commands/set/anon.cpp → zone/gm_commands/set/set_anon.cpp
Executable file → Normal file
0
zone/gm_commands/set/auto_login.cpp → zone/gm_commands/set/set_auto_login.cpp
Executable file → Normal file
0
zone/gm_commands/set/auto_login.cpp → zone/gm_commands/set/set_auto_login.cpp
Executable file → Normal file
0
zone/gm_commands/set/bind_point.cpp → zone/gm_commands/set/set_bind_point.cpp
Executable file → Normal file
0
zone/gm_commands/set/bind_point.cpp → zone/gm_commands/set/set_bind_point.cpp
Executable file → Normal file
0
zone/gm_commands/set/checksum.cpp → zone/gm_commands/set/set_checksum.cpp
Executable file → Normal file
0
zone/gm_commands/set/checksum.cpp → zone/gm_commands/set/set_checksum.cpp
Executable file → Normal file
0
zone/gm_commands/set/class_permanent.cpp → zone/gm_commands/set/set_class_permanent.cpp
Executable file → Normal file
0
zone/gm_commands/set/class_permanent.cpp → zone/gm_commands/set/set_class_permanent.cpp
Executable file → Normal file
0
zone/gm_commands/set/crystals.cpp → zone/gm_commands/set/set_crystals.cpp
Executable file → Normal file
0
zone/gm_commands/set/crystals.cpp → zone/gm_commands/set/set_crystals.cpp
Executable file → Normal file
0
zone/gm_commands/set/date.cpp → zone/gm_commands/set/set_date.cpp
Executable file → Normal file
0
zone/gm_commands/set/date.cpp → zone/gm_commands/set/set_date.cpp
Executable file → Normal file
0
zone/gm_commands/set/endurance_full.cpp → zone/gm_commands/set/set_endurance_full.cpp
Executable file → Normal file
0
zone/gm_commands/set/endurance_full.cpp → zone/gm_commands/set/set_endurance_full.cpp
Executable file → Normal file
0
zone/gm_commands/set/exp.cpp → zone/gm_commands/set/set_exp.cpp
Executable file → Normal file
0
zone/gm_commands/set/exp.cpp → zone/gm_commands/set/set_exp.cpp
Executable file → Normal file
0
zone/gm_commands/set/flymode.cpp → zone/gm_commands/set/set_flymode.cpp
Executable file → Normal file
0
zone/gm_commands/set/flymode.cpp → zone/gm_commands/set/set_flymode.cpp
Executable file → Normal file
0
zone/gm_commands/set/frozen.cpp → zone/gm_commands/set/set_frozen.cpp
Executable file → Normal file
0
zone/gm_commands/set/frozen.cpp → zone/gm_commands/set/set_frozen.cpp
Executable file → Normal file
0
zone/gm_commands/set/gender.cpp → zone/gm_commands/set/set_gender.cpp
Executable file → Normal file
0
zone/gm_commands/set/gender.cpp → zone/gm_commands/set/set_gender.cpp
Executable file → Normal file
0
zone/gm_commands/set/gender_permanent.cpp → zone/gm_commands/set/set_gender_permanent.cpp
Executable file → Normal file
0
zone/gm_commands/set/gender_permanent.cpp → zone/gm_commands/set/set_gender_permanent.cpp
Executable file → Normal file
0
zone/gm_commands/set/gm.cpp → zone/gm_commands/set/set_gm.cpp
Executable file → Normal file
0
zone/gm_commands/set/gm.cpp → zone/gm_commands/set/set_gm.cpp
Executable file → Normal file
0
zone/gm_commands/set/gm_speed.cpp → zone/gm_commands/set/set_gm_speed.cpp
Executable file → Normal file
0
zone/gm_commands/set/gm_speed.cpp → zone/gm_commands/set/set_gm_speed.cpp
Executable file → Normal file
0
zone/gm_commands/set/hero_model.cpp → zone/gm_commands/set/set_hero_model.cpp
Executable file → Normal file
0
zone/gm_commands/set/hero_model.cpp → zone/gm_commands/set/set_hero_model.cpp
Executable file → Normal file
0
zone/gm_commands/set/hide_me.cpp → zone/gm_commands/set/set_hide_me.cpp
Executable file → Normal file
0
zone/gm_commands/set/hide_me.cpp → zone/gm_commands/set/set_hide_me.cpp
Executable file → Normal file
0
zone/gm_commands/set/hp_full.cpp → zone/gm_commands/set/set_hp_full.cpp
Executable file → Normal file
0
zone/gm_commands/set/hp_full.cpp → zone/gm_commands/set/set_hp_full.cpp
Executable file → Normal file
0
zone/gm_commands/set/invulnerable.cpp → zone/gm_commands/set/set_invulnerable.cpp
Executable file → Normal file
0
zone/gm_commands/set/invulnerable.cpp → zone/gm_commands/set/set_invulnerable.cpp
Executable file → Normal file
0
zone/gm_commands/set/language.cpp → zone/gm_commands/set/set_language.cpp
Executable file → Normal file
0
zone/gm_commands/set/language.cpp → zone/gm_commands/set/set_language.cpp
Executable file → Normal file
0
zone/gm_commands/set/last_name.cpp → zone/gm_commands/set/set_last_name.cpp
Executable file → Normal file
0
zone/gm_commands/set/last_name.cpp → zone/gm_commands/set/set_last_name.cpp
Executable file → Normal file
0
zone/gm_commands/set/loginserver_info.cpp → zone/gm_commands/set/set_loginserver_info.cpp
Executable file → Normal file
0
zone/gm_commands/set/loginserver_info.cpp → zone/gm_commands/set/set_loginserver_info.cpp
Executable file → Normal file
0
zone/gm_commands/set/mana_full.cpp → zone/gm_commands/set/set_mana_full.cpp
Executable file → Normal file
0
zone/gm_commands/set/mana_full.cpp → zone/gm_commands/set/set_mana_full.cpp
Executable file → Normal file
0
zone/gm_commands/set/motd.cpp → zone/gm_commands/set/set_motd.cpp
Executable file → Normal file
0
zone/gm_commands/set/motd.cpp → zone/gm_commands/set/set_motd.cpp
Executable file → Normal file
0
zone/gm_commands/set/name.cpp → zone/gm_commands/set/set_name.cpp
Executable file → Normal file
0
zone/gm_commands/set/name.cpp → zone/gm_commands/set/set_name.cpp
Executable file → Normal file
0
zone/gm_commands/set/ooc_mute.cpp → zone/gm_commands/set/set_ooc_mute.cpp
Executable file → Normal file
0
zone/gm_commands/set/ooc_mute.cpp → zone/gm_commands/set/set_ooc_mute.cpp
Executable file → Normal file
0
zone/gm_commands/set/password.cpp → zone/gm_commands/set/set_password.cpp
Executable file → Normal file
0
zone/gm_commands/set/password.cpp → zone/gm_commands/set/set_password.cpp
Executable file → Normal file
0
zone/gm_commands/set/pvp.cpp → zone/gm_commands/set/set_pvp.cpp
Executable file → Normal file
0
zone/gm_commands/set/pvp.cpp → zone/gm_commands/set/set_pvp.cpp
Executable file → Normal file
0
zone/gm_commands/set/pvp_points.cpp → zone/gm_commands/set/set_pvp_points.cpp
Executable file → Normal file
0
zone/gm_commands/set/pvp_points.cpp → zone/gm_commands/set/set_pvp_points.cpp
Executable file → Normal file
0
zone/gm_commands/set/race.cpp → zone/gm_commands/set/set_race.cpp
Executable file → Normal file
0
zone/gm_commands/set/race.cpp → zone/gm_commands/set/set_race.cpp
Executable file → Normal file
0
zone/gm_commands/set/race_permanent.cpp → zone/gm_commands/set/set_race_permanent.cpp
Executable file → Normal file
0
zone/gm_commands/set/race_permanent.cpp → zone/gm_commands/set/set_race_permanent.cpp
Executable file → Normal file
0
zone/gm_commands/set/skill.cpp → zone/gm_commands/set/set_skill.cpp
Executable file → Normal file
0
zone/gm_commands/set/skill.cpp → zone/gm_commands/set/set_skill.cpp
Executable file → Normal file
0
zone/gm_commands/set/skill_all.cpp → zone/gm_commands/set/set_skill_all.cpp
Executable file → Normal file
0
zone/gm_commands/set/skill_all.cpp → zone/gm_commands/set/set_skill_all.cpp
Executable file → Normal file
0
zone/gm_commands/set/skill_all_max.cpp → zone/gm_commands/set/set_skill_all_max.cpp
Executable file → Normal file
0
zone/gm_commands/set/skill_all_max.cpp → zone/gm_commands/set/set_skill_all_max.cpp
Executable file → Normal file
0
zone/gm_commands/set/start_zone.cpp → zone/gm_commands/set/set_start_zone.cpp
Executable file → Normal file
0
zone/gm_commands/set/start_zone.cpp → zone/gm_commands/set/set_start_zone.cpp
Executable file → Normal file
0
zone/gm_commands/set/temporary_name.cpp → zone/gm_commands/set/set_temporary_name.cpp
Executable file → Normal file
0
zone/gm_commands/set/temporary_name.cpp → zone/gm_commands/set/set_temporary_name.cpp
Executable file → Normal file
0
zone/gm_commands/set/texture.cpp → zone/gm_commands/set/set_texture.cpp
Executable file → Normal file
0
zone/gm_commands/set/texture.cpp → zone/gm_commands/set/set_texture.cpp
Executable file → Normal file
0
zone/gm_commands/set/time.cpp → zone/gm_commands/set/set_time.cpp
Executable file → Normal file
0
zone/gm_commands/set/time.cpp → zone/gm_commands/set/set_time.cpp
Executable file → Normal file
0
zone/gm_commands/set/time_zone.cpp → zone/gm_commands/set/set_time_zone.cpp
Executable file → Normal file
0
zone/gm_commands/set/time_zone.cpp → zone/gm_commands/set/set_time_zone.cpp
Executable file → Normal file
0
zone/gm_commands/set/title.cpp → zone/gm_commands/set/set_title.cpp
Executable file → Normal file
0
zone/gm_commands/set/title.cpp → zone/gm_commands/set/set_title.cpp
Executable file → Normal file
0
zone/gm_commands/set/title_suffix.cpp → zone/gm_commands/set/set_title_suffix.cpp
Executable file → Normal file
0
zone/gm_commands/set/title_suffix.cpp → zone/gm_commands/set/set_title_suffix.cpp
Executable file → Normal file
0
zone/gm_commands/set/weather.cpp → zone/gm_commands/set/set_weather.cpp
Executable file → Normal file
0
zone/gm_commands/set/weather.cpp → zone/gm_commands/set/set_weather.cpp
Executable file → Normal file
0
zone/gm_commands/set/zone.cpp → zone/gm_commands/set/set_zone.cpp
Executable file → Normal file
0
zone/gm_commands/set/zone.cpp → zone/gm_commands/set/set_zone.cpp
Executable file → Normal file
Loading…
x
Reference in New Issue
Block a user