Jump to content

asumos

Members
  • Posts

    36
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by asumos

  1. used too run multiple servers for some1 else but they no longer have it running. so i have just been watching the code evolve and running a local copy for myself for now
  2. yes that will install it to a different dir for example if you used -DPREFIX=/opt/mangos0 on your unmodified copy that is currently running you could try -DPREFIX=/opt/mangos_zero for the new copy or some other clever dir
  3. sd0 is scriptdev for mangos zero which is found here https://github.com/mangos-zero/scriptdev0 sorry in the git pull step try git pull git://github.com/blueboy/portalzero.git master
  4. i personally find this the easiest way ( others may object and have their own way but ) after you clone mangos zero goto the directory just made via clone 'cd server' then just type git pull git://github.com/blueboy/portalzero.git this will download and merge the code into the same branch all at once, when that is complete you can either compile or ad sd0 if you havnt done so already
  5. they should all be there the file is very large and takes some time to import all the information if you are missing data either the transfer was cancelled or timed out you may need to delete the information and try again personally i recommend using the mysql command line instead of things such as phpmyadmin upload the sql file somewhere on the server and while in the same folder as the sql use this line mysql -p'YOUR PASSWORD HERE' mangos < UDB_0.12.2_mangos_11792_SD2_2279.sql
  6. then you do not need to do any updates, the last update sql required for mangos was 11785_01_mangos_instance_encounters.sql so all the errors you have been receiving are because you are using old updates on a newer database
  7. what version of Db are you using? knowing that helps to know which update you need to apply to the db for example UDB Pack 401 ( is mangos 11376 ) so we know that we start patching mangos db in order starting from 11385_01_mangos_creature_template.sql same applies to the characters / realmd db's if you dont know there is a table that shows which version your db was last updated to open table db_version the line that says require_##### is the last update used so move onto the next update and make sure the update sql you are applying is going into the right db
  8. that site has older patches then that, goes all the way back to 1.10, link takes you to a page that separates them all by version you need
  9. that's why i said patch mirrors, you can manually download patches and execute them http://www.fileplanet.com/100462/0/section/Patches i've gotten all mine from there, probably should have been more precise ( my bad )
  10. asumos

    Closed UDB?

    check your httpd logs ( if you have access to them ) it's not parsing properly most likely you will need a fresh install of your forums
  11. you can also download the installer from here http://www.joystiq.com/game/world-of-warcraft/download/world-of-warcraft-full-install-client/ it gives you the option of installing from original wow, Burning Crusade and Wrath. just choose the version you want/need and using patch mirrors you can patch upto the version you want
  12. in your mangos folder browse to src\\bindings\\ScriptDev2\\sql mangos_scriptname_full.sql is the full sql file for the mangos db scriptdev2_script_full.sql is the full sql file for the scriptdev2 db
  13. oh my, i need to get my eyes checked.. thanks
  14. wow, nice work guys. i noticed a few things gone since the update the first was already mentioned, the last thread posted in but also the mark topics read link, comes in handy for threads you are not interested in you can just leave them, read the ones you want to then click mark topics read
  15. use PREFIX=<path> with the cmake command to install mangos to another path where you can launch a second realm
  16. either install ace or change ACE_USE_EXTERNAL=1 to ACE_USE_EXTERNAL=0 ACE_USE_EXTERNAL=1 is only used if you install ACE yourself ( most do not do that as the ACE that comes with mangos source is good enough )
  17. ScriptDev2 has moved to git finally, the svn may be out of date. you can find the repository at https://github.com/scriptdev2/scriptdev2 To proper clone the git repo, you must delete the old ScriptDev2 directory. to clone the ScriptDev2 Repository git://github.com/scriptdev2/scriptdev2.git into the directory ScriptDev2 within <MaNGOS>/src/bindings You can also easily use the Git-bash to do so: Open "Git Bash here" in <MaNGOS>/src/bindings and type $ git clone git://github.com/scriptdev2/scriptdev2.git ScriptDev2
  18. for development purposes i prefer to use windows. however when i go live ( either for open to public or testing phases ) i prefer linux, mainly due to the fact it uses less resources then windows, which in return leaves more resources available to the mangos server
  19. i believe it does, i think all versions use a similar structure for the database ( differences being the expansion )
  20. you need to install wrath of the lich king expansion and then update to 3.3.5a before connecting, the vanilla wow or burning crusade expansion upgraded to 3.3.5a includes some of the things needed for wotlk so players who didnt buy the expansion can still connect but wont be able to make a dk or goto northrend
  21. easiest way of fixing that is opening the realmd database and edit the sql table gmlevel to have a default of 0 that error looks to me to appear because the table does not have a default vale set already, so by setting it to be 0 by default any users created via your website will be normal users and that error should disappear the other option which is not as easy is to open the registration script and add in the information for gmlevel sql upon new account being created
  22. you might also want to check your router configs and make sure its porting the ports required for mangos to your pc's internal ip example being: if your router assigns your pc to ip 192.168.0.101 make sure port forwarding of both mangos realmd and mangosd ports are sent to ip 192.168.0.101 the two ports by default are 3724 and 8085
  23. many distros of linux ( including my fav flavour being centos ) do not include a repo for cmake so for those that dont know how here are the commands to install cmake as of this post the latest is 2.8.4. to get cmake install file wget [url]http://www.cmake.org/files/v2.8/cmake-2.8.4.tar.gz[/url] unzip cmake tar xzf cmake-2.8.4.tar.gz after changing directory there only three commands needed to install cmake, run each line individually ( dont forget the period infront of the bootstrap command ) ./bootstrap make make install
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use