From 89a60b61e3ddcba49109a293e1a5806b7e150c7d Mon Sep 17 00:00:00 2001 From: bash Date: Mon, 29 Jul 2024 15:09:32 +0000 Subject: [PATCH] testing --- 6_server-start.sh | 14 ++++++-------- sql/update_ahbot_config.sql | 3 +++ sql/update_realm_ip.sql | 3 +++ sql/update_realm_name.sql | 3 +++ 4 files changed, 15 insertions(+), 8 deletions(-) create mode 100644 sql/update_ahbot_config.sql create mode 100644 sql/update_realm_ip.sql create mode 100644 sql/update_realm_name.sql diff --git a/6_server-start.sh b/6_server-start.sh index 6c40bfc..acbf17f 100755 --- a/6_server-start.sh +++ b/6_server-start.sh @@ -62,12 +62,10 @@ fi echo " " echo "###########################################################################################" -echo "Word of advice:" -echo "## 1. -------------------------------------------------------------------------------------" -echo "After (re)starting the server and logging in with the client wait 5-10m so the bots can" -echo "settle abit; getting an assigned level and teleport to an area for that level" -echo "## 2. -------------------------------------------------------------------------------------" -echo "If you wanna type alot of commands in the world-server session you might want to disable" -echo "## the playerbots mod through the playerbot config, since the playerbots generates alot of" -echo "## output which disrupts the command line typing :) When done enable again ./config/module" +echo "# type in terminal: " +echo "# - 'wow' : for the worlds-server session" +echo "# - 'auth' : for the auth-server session" +echo "# - 'ctrl+b then d' : detach from session (if not working use ctrl-z)" +echo "# - 'stop' : the kill the world and auth -server sessions" +echo "# - 'update' : echo "###########################################################################################" diff --git a/sql/update_ahbot_config.sql b/sql/update_ahbot_config.sql new file mode 100644 index 0000000..d0f45c9 --- /dev/null +++ b/sql/update_ahbot_config.sql @@ -0,0 +1,3 @@ +USE acore_world; +UPDATE mod_auctionhousebot +SET minitems = 30000, maxitems = 40000; diff --git a/sql/update_realm_ip.sql b/sql/update_realm_ip.sql new file mode 100644 index 0000000..403b041 --- /dev/null +++ b/sql/update_realm_ip.sql @@ -0,0 +1,3 @@ +USE acore_auth; +SELECT * FROM realmlist; +UPDATE realmlist SET address='192.168.178.185'; diff --git a/sql/update_realm_name.sql b/sql/update_realm_name.sql new file mode 100644 index 0000000..f4923e3 --- /dev/null +++ b/sql/update_realm_name.sql @@ -0,0 +1,3 @@ +USE acore_auth; +SELECT * FROM realmlist; +UPDATE realmlist SET name='azerothcore.org';