Пікірлер
@atxluxury
@atxluxury 12 сағат бұрын
I think this is not working on aarch64 i get lots of errors i have post them in the pcata preserv proj discord
@GabrielRodrigues-nr6wc
@GabrielRodrigues-nr6wc 15 сағат бұрын
I pulled the thumb driver after concluding the installation, just as you said... Laptop immediately turned down and won't recognize the thumb drive as bootable media
@Digital-Scriptorium
@Digital-Scriptorium 11 сағат бұрын
Hmmm, how old is your computer?
@Ioanit
@Ioanit Күн бұрын
Where is the video about WOD? We've been waiting for a year now :)
@Digital-Scriptorium
@Digital-Scriptorium Күн бұрын
It's tricky finding a project on that which isn't a complete mess :(
@Gxnners
@Gxnners Күн бұрын
Will they always be available ? And whats the difference betweene classic and anaversary
@Digital-Scriptorium
@Digital-Scriptorium Күн бұрын
That's a good question. It's going into TBC content next fall. This is really just fresh servers with all the classic content.
@bdbch
@bdbch Күн бұрын
quick note: You don't need to use PUTTY as Windows nowadays has native SSH support in the terminal now.
@Digital-Scriptorium
@Digital-Scriptorium Күн бұрын
This is true!
@jakeaquilina505
@jakeaquilina505 Күн бұрын
im trying to install this on an ubuntu server 20.04 bvut seem to run into an error when tryingto install it with cmake? krazor@rbuntu:~/cmangos/build$ cmake ../mangos -CMAKE_INSTALL_PREFIX=~/cmangos/run -DPCH=1 -DDEBUG=0 -DBUILD_AHBOT=ON loading initial cache file MAKE_INSTALL_PREFIX=~/cmangos/run CMake Error: Error processing file: /home/krazor/cmangos/build/MAKE_INSTALL_PREFIX=~/cmangos/run -- This script builds the MaNGOS server. Options that can be used in order to configure the process: CMAKE_INSTALL_PREFIX Path where the server should be installed to PCH Use precompiled headers DEBUG Include additional debug-code in core WARNINGS Show all warnings during compile POSTGRESQL Use PostgreSQL instead of mysql BUILD_GAME_SERVER Build game server (core server) BUILD_LOGIN_SERVER Build login server (auth server) BUILD_EXTRACTORS Build map/dbc/vmap/mmap extractor BUILD_PLAYERBOTS Build Playerbots mod BUILD_AHBOT Build Auction House Bot mod BUILD_METRICS Build Metrics, generate data for Grafana BUILD_RECASTDEMOMOD Build map/vmap/mmap viewer BUILD_GIT_ID Build git_id BUILD_DOCS Build documentation with doxygen CMAKE_INTERPROCEDURAL_OPTIMIZATION Enable link-time optimizations BUILD_DEPRECATED_PLAYERBOT Build Playerbot mod (deprecated) BUILD_SCRIPTDEV Build scriptdev. (Disable it to speedup build in dev mode by not including scripts) DEV_BINARY_DIR Target directory for executables on Windows only To set an option simply type -D<OPTION>=<VALUE> after 'cmake <srcs>'. Also, you can specify the generator with -G. see 'cmake --help' for more details For example: Build server cmake -DCMAKE_INSTALL_PREFIX=../opt/cmangos .. Build full server with extractor cmake -DCMAKE_INSTALL_PREFIX=../opt/cmangos -DBUILD_EXTRACTORS=ON .. Build only server without scripts and extractors and in debug mode cmake -DCMAKE_INSTALL_PREFIX=../opt/cmangos -DDEBUG=ON -DBUILD_ALL_SCRIPTS=OFF .. Build only login server cmake -DCMAKE_INSTALL_PREFIX=../opt/cmangos -DBUILD_GAME_SERVER=OFF .. -- Detected 64-bit platform -- UNIX: Configuring uninstall target -- UNIX: Created uninstall target -- UNIX: Detected compiler: /usr/bin/cc -- GCC: SFMT enabled, SSE2 flags forced -- cotire 1.7.6 loaded. -- Using mysql-config: /usr/bin/mysql_config -- Found MySQL library: /usr/lib/x86_64-linux-gnu/libmariadb.so -- Found MySQL headers: /usr/include/mariadb -- Found OpenSSL libraries: /usr/lib/x86_64-linux-gnu/libssl.so;/usr/lib/x86_64-linux-gnu/libcrypto.so CMake Error at CMakeLists.txt:264 (message): OpenSSL: This project requires OpenSSL version 3.0 or higher -- CMaNGOS-Core revision : 9a2af04753f270687bc42689fa29cdd53112497c -- Revision time stamp : "2024-11-27T08:06:15+01:00" -- Install server to : /home/krazor/cmangos/run -- Use PCH : Yes (default) -- Build in debug-mode : No (default) -- Build game server : Yes (default) -- Build login server : Yes (default) -- Build ScriptDev : Yes (default) -- Build AHBot : Yes -- Build METRICs : No (default) -- Build OLD Playerbot : No (default) -- Build Playerbots : No (default) -- Build extractors : No (default) -- Build RecastDemoMod : No (default) -- Build git_id : No (default) -- Link-time optimizations : No (default) -- Target directory for dev binaries(DEV_BINARY_DIR) = /home/krazor/cmangos/build -- Setting up zlib ... -- zlib 1.2.13 successfully installed! -- Configuring incomplete, errors occurred! See also "/home/krazor/cmangos/build/CMakeFiles/CMakeOutput.log". See also "/home/krazor/cmangos/build/CMakeFiles/CMakeError.log".
@xiMr-i3b
@xiMr-i3b Күн бұрын
about the database,may i use the the official img of mariadb for vm db or i must use your img?
@Digital-Scriptorium
@Digital-Scriptorium Күн бұрын
For the docker image you will want to keep it as is.
@xiMr-i3b
@xiMr-i3b Күн бұрын
@@Digital-Scriptorium ok,thanks for your answer
@Digital-Scriptorium
@Digital-Scriptorium Күн бұрын
@@xiMr-i3b no problem!
@lowack
@lowack Күн бұрын
so nice <3 love it
@Digital-Scriptorium
@Digital-Scriptorium Күн бұрын
It's nice to relieve memories of old multiplayer games. :)
@lowack
@lowack Күн бұрын
I tried to do a prviate classic server with cmangos, but i get only error on the following part: We will now configure the compilation to tell cmake we want to install CMaNGOS server into the server directory we created earlier: $mkdir build && cd build $cmake .. -DCMAKE_INSTALL_PREFIX=~/mangos/run -DCMAKE_C_COMPILER=~/toolchains/gcc-4.8.5/bin/gcc -DCMAKE_CXX_COMPILER=~/toolchains/gcc-4.8.5/bin/g++ -DBOOST_INCLUDEDIR=/usr/local/boost/include If everything is OK, we can compile: $make Note: If your computer's CPU is multicore, you can instead type $make -jN where N is your number of cores. For instance, compiling on a 4 cores CPU: $make -j4 You can use the same command option everytime you will see $make in this tutorial. If everything went OK, we can install the compiled files: $make install Finally, we will create the config files from their template files. $cd ~/mangos/run/etc/ $cp realmd.conf.dist realmd.conf $cp mangosd.conf.dist mangosd.conf $cp scriptdev2.conf.dist scriptdev2.conf I dont get any ../etc or any other files in my mangos/run... idk. It said 10minutes to get own server: Im on it like 2 days and 15 hours
@whiro638
@whiro638 Күн бұрын
Can I also apply the tutorial to an Intel NUC with Proxmox?
@Digital-Scriptorium
@Digital-Scriptorium Күн бұрын
Absolutely!
@whiro638
@whiro638 Күн бұрын
@@Digital-Scriptorium Thank you for your quick response. I'll try it in a few days.
@Digital-Scriptorium
@Digital-Scriptorium Күн бұрын
@@whiro638 no problem and enjoy! :)
@1337kaas
@1337kaas 2 күн бұрын
I couldnt get the playerbots module to work, because the SQL files couldn't get imported. After watching your video i found out i need to mount the module directory in the conpose file as bindmount. Will try compiling again today
@Digital-Scriptorium
@Digital-Scriptorium 2 күн бұрын
You got this! :)
@willkydd
@willkydd 2 күн бұрын
Something like an M710q is about the same price and power draw as a raspberry pi (when idle) but packs A LOT more power.
@Digital-Scriptorium
@Digital-Scriptorium 2 күн бұрын
This is true! I personally use my m720q's
@charlesasio9325
@charlesasio9325 2 күн бұрын
What will i do if its says error grub cant install, lenovo ideapad 320 14iap
@Digital-Scriptorium
@Digital-Scriptorium 2 күн бұрын
Does it give an option to attempt to reinstall it?
@Jack10Boom
@Jack10Boom 2 күн бұрын
I'm hoping you can help me troubleshoot this issue. I am not a Docker expert nor Mysql expert. When I paste line 77, docker exec -it 9401b6180684 mysql -uroot -p (Acccount: root) (Password: password) I get this issue "-bash: syntax error near unexpected token `(' " I checked online and informed that I needed to "escape" the pararens by using "\" so that the line looked like: docker exec -it 9401b6180684 mysql -uroot -p \(Acccount: root\) \(Password: password\). What is get is "Usage: mysql [OPTIONS] [database]". I am lost at this point.
@Jack10Boom
@Jack10Boom 2 күн бұрын
Found my error. I used ChatGPT and changed 'docker exec -it 9401b6180684 mysql -uroot -p \(Acccount: root\) \(Password: password\)' to 'docker exec -it 9401b6180684 mysql -uroot -ppassword'. Works great now. Thank you for the video.
@DnBComplex
@DnBComplex 4 күн бұрын
"failed to unmount partitions" maann... This is driving me crazy.
@Digital-Scriptorium
@Digital-Scriptorium 4 күн бұрын
Was this during the installation of the OS or making the thumb drive boot media?
@xiMr-i3b
@xiMr-i3b 4 күн бұрын
your img support robots,i can create a team to play,but they’re so silly
@Digital-Scriptorium
@Digital-Scriptorium 4 күн бұрын
Yes indeed! :)
@GAiYAshaN
@GAiYAshaN 4 күн бұрын
This method works 100%. Today i installed windows 11 to my old laptop.Setup registered i have a Win.11 home key. I just unplugged internet and did the bypass. And i was able to make a local account successfully. Thank you so much. You are a lifesaver❤.
@Digital-Scriptorium
@Digital-Scriptorium 4 күн бұрын
No problem and good to hear it all worked! Enjoy! :)
@danielfelixmodesto
@danielfelixmodesto 4 күн бұрын
Hello! Great explanatory video about creating the classic server; it will definitely help many people just as it helped me. Please make a part two of this video teaching how to install a web page for player registration. I have been testing several methods but am having some difficulty. I even downloaded XAMPP and changed it to port 3307 due to port conflicts. If you could make a video explaining it, I would sincerely appreciate it. God bless you.
@Digital-Scriptorium
@Digital-Scriptorium 4 күн бұрын
It's certainly in my queue to do :)
@rynsmnsmovies
@rynsmnsmovies 4 күн бұрын
Thanks for this! It was a fun project to tackle this weekend and learn a bunch about Docker, Portainer, MySQL, and AzerothCore. I get nostalgic for wow sometimes and having my own server to putter around in with GM commands will scratch that itch. Your written instructions are well done and even show how to play with modules since they include how to install the player bots module. I used ChatGPT to fill in the blanks.
@Digital-Scriptorium
@Digital-Scriptorium 4 күн бұрын
No problem and glad it's helping people! Enjoy! :)
@Pentlochnap
@Pentlochnap 4 күн бұрын
Is there a way to play it with friends (2) online ? btw it doesnt work for me, everything went smooth I got the IP but when I turn on WOW and login it can see the world but it will not connect me I can only cancel...
@Digital-Scriptorium
@Digital-Scriptorium 4 күн бұрын
Yes, you can play online with others if you make the firewall rule adjustments on your router which you can find info on the projects wiki. Double check your realmlist SQL table IP is proper and your clients wtf file. Your router needs to support loopback as well. Most do these days and should work out of the box
@Pentlochnap
@Pentlochnap 3 күн бұрын
@@Digital-Scriptorium thank you for answer, so I assume the IP should be the global one ? And lets say I dont want to change router rules, it should work with hamachi too ? If yes what IP I should use than, if you dont know answer I will try it at friday, if I dont forget I will post it here (I think with hamachi it would be the easiest way to do it with friends).
@Digital-Scriptorium
@Digital-Scriptorium 3 күн бұрын
@@Pentlochnap no problem! Hamachi I believe should still be the global IP
@sabbirrahman7744
@sabbirrahman7744 5 күн бұрын
thanks so much buddy
@Digital-Scriptorium
@Digital-Scriptorium 5 күн бұрын
No problem! Enjoy! :)
@720zone
@720zone 5 күн бұрын
Good to see you playing!
@Digital-Scriptorium
@Digital-Scriptorium 5 күн бұрын
Absolutely! I was contemplating PvE or PVP but then decided I don't have time to be camped anymore. :)
@blinky042002
@blinky042002 5 күн бұрын
Looks like trinity core moved this to data_classic branch. Wonder if it uses new cata classic client
@Digital-Scriptorium
@Digital-Scriptorium 5 күн бұрын
This one has been archived now. The "new" TrinityCore version does use the new classic client but it's currently not considered stable.
@stephenmccollum1218
@stephenmccollum1218 5 күн бұрын
Plan on going ret or prot to level ?
@Digital-Scriptorium
@Digital-Scriptorium 5 күн бұрын
I'm going to plan on healing up a storm :)
@alittledarling9729
@alittledarling9729 6 күн бұрын
5 hours, 11 level, slacker ;) :P
@Digital-Scriptorium
@Digital-Scriptorium 6 күн бұрын
Haha the downside to fighting for mobs in the beginning...
@8DarthGhost8
@8DarthGhost8 6 күн бұрын
it doesnt let me create an HDD file for some reason. im using the latest build of pcsx2
@Digital-Scriptorium
@Digital-Scriptorium 6 күн бұрын
I need to test this all on the latest version as it sounds like things have changed. I should put a fresh coat of paint on the video after I run through that stuff
@arcadeinsertcoin4391
@arcadeinsertcoin4391 6 күн бұрын
Hi ty very much for this :-) when setup this are you alone on the game? if yes how to setup bots to clean all raids?
@Digital-Scriptorium
@Digital-Scriptorium 6 күн бұрын
You are alone but others could connect in if you configure it. As for bots you might need to check out the projects discord for that as things I believe have changed.
@eduardotelles2325
@eduardotelles2325 6 күн бұрын
Amazing tutorial. Could you make a video teaching us how to install modules on the server?
@Digital-Scriptorium
@Digital-Scriptorium 6 күн бұрын
You should be able to basically repeat what the playerbot portion is. If you don't use playerbots then just pull from the normal github source.
@sirflimflam
@sirflimflam 6 күн бұрын
I've been kind of confused by the alpha project... Is it a fan made best guess at what the FAF alpha was like, or were they able to obtain actual data for spawns and such?
@Digital-Scriptorium
@Digital-Scriptorium 6 күн бұрын
It has base data that was leaked before launch and then pieced together by tens of thousands of screenshots, development notes, and emails. Missing data is then brought in from the VMangos project until proven otherwise.
@sirflimflam
@sirflimflam 6 күн бұрын
@@Digital-Scriptorium That's sick. I remember playing on an emulated server build that was just the empty world back in like 2007 or something exploring all the weird differences. Gonna have to play with this. Cheers
@Digital-Scriptorium
@Digital-Scriptorium 6 күн бұрын
@sirflimflam enjoy! :)
@ulvfdfgtmk
@ulvfdfgtmk 7 күн бұрын
Kinda funny, I specifically searched for a guide on YT on how to install this beast with playerbots and your video didnt show up. Then I go to bed to chill and watch some random crap ans I get this in my recommended 😂 From watching your other guides already I know this will help me, so thank you for making this already :)
@Digital-Scriptorium
@Digital-Scriptorium 7 күн бұрын
Haha o that KZbin.... This should for sure get the job done! Enjoy! :)
@andreialcaza
@andreialcaza 7 күн бұрын
👍
@Digital-Scriptorium
@Digital-Scriptorium 7 күн бұрын
:)
@FeedehC
@FeedehC 7 күн бұрын
This alpha version is awesome, probably developed in 2002 or so
@Digital-Scriptorium
@Digital-Scriptorium 7 күн бұрын
2003 :)
@fixitman2174
@fixitman2174 7 күн бұрын
I see you've found a way to set the time zone properly. My method of changing the symbolic link was way more difficult. I'm going to add your method to my Azerothcore Docker command file. Thanks!
@Digital-Scriptorium
@Digital-Scriptorium 7 күн бұрын
No problem :)
@fixitman2174
@fixitman2174 6 күн бұрын
@@Digital-Scriptorium This isn't going to work after all for the Azerothcore docker-compose. Once I opened the file, I remembered I already tried this. Great video regardless :)
@Digital-Scriptorium
@Digital-Scriptorium 6 күн бұрын
@@fixitman2174 it was worth trying :)
@hungryOrb
@hungryOrb 7 күн бұрын
Very cool! Might want to try this on a desktop.
@Digital-Scriptorium
@Digital-Scriptorium 7 күн бұрын
Absolutely! :)
@caffeinedelusions
@caffeinedelusions 7 күн бұрын
The idea of delving into a WoW alpha build is wild… I don’t know that I’d want to build one, but I’d love to play and explore it, if only to see the framework and explore the creative development process.
@Digital-Scriptorium
@Digital-Scriptorium 7 күн бұрын
It is very interesting to explore for sure!
@VincentADK
@VincentADK 7 күн бұрын
Solid guide, as always!
@Digital-Scriptorium
@Digital-Scriptorium 7 күн бұрын
Thank you! :)
@alittledarling9729
@alittledarling9729 7 күн бұрын
like and commented, even though i have no rasberry pi :)
@Digital-Scriptorium
@Digital-Scriptorium 7 күн бұрын
Haha thank you! :)
@kittymoonszz
@kittymoonszz 7 күн бұрын
Hello!! If I have multiple disks, I have to select all? Or just the one I want to install fedora on, and format the other ones later?
@Digital-Scriptorium
@Digital-Scriptorium 7 күн бұрын
Yeah, just the one you want to install it on. Then you can format the other after.
@kittymoonszz
@kittymoonszz 7 күн бұрын
@Digital-Scriptorium thanks 🙏🏻
@Digital-Scriptorium
@Digital-Scriptorium 7 күн бұрын
@@kittymoonszz no problem! Enjoy! :)
@Sheikhm007
@Sheikhm007 8 күн бұрын
Will fedora be good for doing online classes, watching recordings, and KZbin videos, and also sometimes browsing. Pls recommend me something I have a 8gb i5 6th gen laptop and windows runs fine but it is kind of slow.
@Digital-Scriptorium
@Digital-Scriptorium 7 күн бұрын
It's certainly a good option. You can also use Debian or Ubuntu as well. Those are great choices too. Debian is my favorite.
@Sheikhm007
@Sheikhm007 7 күн бұрын
@@Digital-Scriptorium I am thinking about trying out Zorin os first, will it be a good decision?
@Digital-Scriptorium
@Digital-Scriptorium 7 күн бұрын
@@Sheikhm007 I would go with the ones I recommended over Zorin but that is just my personal opinion.
@JujaPro
@JujaPro 8 күн бұрын
I did everything but when I tried to run authserver.exe it gives me and error (0xc000007b). I googled for the solution but none of them worked. Ran it as an administrator as well, didn't do it.. Do you have any tips on that? A great guide, keep them going!
@Digital-Scriptorium
@Digital-Scriptorium 4 күн бұрын
Sorry KZbin decided to not notify me of your comment. Is the error in the terminal when you run it or some Microsoft error?
@JujaPro
@JujaPro 4 күн бұрын
@@Digital-Scriptorium I got it running, did Cmake and rebuild on VS again and got it running. Thanks anyway!
@Digital-Scriptorium
@Digital-Scriptorium 3 күн бұрын
Glad to hear all is well! Enjoy! :)
@colong1158
@colong1158 8 күн бұрын
The software app is stuck on refresh. CAN YOU HELP?
@Digital-Scriptorium
@Digital-Scriptorium 8 күн бұрын
Hmmm, it might be worth trying to do updates via terminal first. Then see if it helps the stability.
@Eduardo-o4o
@Eduardo-o4o 9 күн бұрын
Hey, my CMake is giving the following error: MYSQL_EXECUTABLE-NOTFOUND. Any idea how to fix it?
@Digital-Scriptorium
@Digital-Scriptorium 9 күн бұрын
What version of MySQL did you install?
@Eduardo-o4o
@Eduardo-o4o 9 күн бұрын
@@Digital-Scriptorium I already fixed it, thanks for the fast replay
@Digital-Scriptorium
@Digital-Scriptorium 9 күн бұрын
@@Eduardo-o4o nice! Enjoy! :)
@boomerbarry8004
@boomerbarry8004 9 күн бұрын
I'm here from the future... I don't see the installer for MySQL 5.7.39 - am I blind?
@Digital-Scriptorium
@Digital-Scriptorium 9 күн бұрын
O yup...I just got a warning from KZbin a few minutes ago saying they removed the link on me. Even though it's from my own repository.... I'll update it when I get home tonight.
@codejoy-w1e
@codejoy-w1e 10 күн бұрын
am stuck at boot loader after i hit 100%, it show me fedora install to hard drive is not responding at 10:53??any help
@Digital-Scriptorium
@Digital-Scriptorium 10 күн бұрын
Hmmm, does it eventually work if you give it time?
@jeffersonvitor9297
@jeffersonvitor9297 11 күн бұрын
thanks!
@Digital-Scriptorium
@Digital-Scriptorium 10 күн бұрын
No problem! :)
@user-qy9tf2im7f
@user-qy9tf2im7f 11 күн бұрын
Worked like a champ!!!!!!!!! Thanks.
@Digital-Scriptorium
@Digital-Scriptorium 11 күн бұрын
No problem! Enjoy! :)
@Cheetofrags
@Cheetofrags 12 күн бұрын
Awesome video, didn’t struggle following along at all! You should do one of compiling normal modules
@Digital-Scriptorium
@Digital-Scriptorium 12 күн бұрын
Glad to hear it :)
@Cheetofrags
@Cheetofrags 11 күн бұрын
@ what is your discord?
@Digital-Scriptorium
@Digital-Scriptorium 11 күн бұрын
@@Cheetofrags I don't have a discord channel. I just hang out in the different project discords.
@Cheetofrags
@Cheetofrags 10 күн бұрын
@ the only thing I’m having trouble with is rated arena and BG, almost like no bots are queuing for bf or rated arena, I made a team but no Que ever pops. Skirms work
@Digital-Scriptorium
@Digital-Scriptorium 10 күн бұрын
@@Cheetofrags hmmm that's a good question and something I haven't tried. I would say the best place to check is the projects discord.
@xruXax
@xruXax 12 күн бұрын
What do you have to do if you want to install multiple modules on one server?
@Digital-Scriptorium
@Digital-Scriptorium 12 күн бұрын
You should be able to git clone them in also and compile. If two modules require two separate projects forks though then they might not work.
@xruXax
@xruXax 12 күн бұрын
@Digital-Scriptorium ok Thx :)
@Digital-Scriptorium
@Digital-Scriptorium 12 күн бұрын
Np! :)
@AudioCraZ
@AudioCraZ 12 күн бұрын
followed your previous video, and I have a windows computer up and running with AC/WotLK. When I right click and go to "Get Extensions" the only option I get is "Settings". How did you get yours to populate with all settings including Pull?
@Digital-Scriptorium
@Digital-Scriptorium 12 күн бұрын
Are you right clicking on the exact folder it was originally cloned on? If you are on Windows 11 you might need to show more options at the bottom. Or shift + right click.
@AudioCraZ
@AudioCraZ 12 күн бұрын
@@Digital-Scriptorium Windows 10 Pro 22H2. AzerothCore is running on a Intel NUC (dedicated system, nothing else on it, i7 8th gen with 16GB ram). 4 of us been using it (me local, friends coming through firewall) GitEx Clone still shows from when I cloned the repository, but Get Extensions only shows "Settings" option. Under "Setting Checklist" show "Get is found" but, the next 3 options are red "configure a username and password" "configure merge tool" and "configure a different tool" all else are green. Do I need to specify a Merge tool or Diff tool? If so, which ones are best for this application?
@Digital-Scriptorium
@Digital-Scriptorium 12 күн бұрын
@@AudioCraZ you can try it with the basic "GIT bash here" option as well.
@AudioCraZ
@AudioCraZ 12 күн бұрын
@@Digital-Scriptorium There is no "GIT bash here" option. I am wondering if something happened with my GIT install.... My only options are "GitExt Clone..." "GitExt Create new Repository" and "Git Extensions" (which only shows SETTINGS as an option).
@Digital-Scriptorium
@Digital-Scriptorium 12 күн бұрын
@@AudioCraZ hmmm, very odd.
@TheState597
@TheState597 12 күн бұрын
Hey man thanks for the video. I keep getting SQL Error (1045): Access denied for user when I try to execute the query on heidisql. Know whats going on there?
@TheState597
@TheState597 12 күн бұрын
Found out the error and made it all the way to the end but my worldserver crashes instantly.
@Digital-Scriptorium
@Digital-Scriptorium 12 күн бұрын
If you can open command prompt and run the world server in that it should show the error. I would double check the server map configuration as that usually is what causes it to crash.