Benevolence Posted August 29, 2011 Share Posted August 29, 2011 I want to know what steps I must take specifically. I heard something about having to re-organize my resources? Link to comment
darkdreamingdan Posted August 30, 2011 Share Posted August 30, 2011 Delete any default MTA resources you have, and install the resources for 1.1. Note, if you've made any modifications to a default MTA resource, be sure to keep that resource. MTA 1.1 now allows for resource subdirectories in the format of [resourceSubdirectory]. E.g. server/mods/deathmatch/[gamemodes]/race This means you need to be careful to ensure you don't have two lots of the same resource, so delete any old ones you may have. Link to comment
Benevolence Posted August 30, 2011 Author Share Posted August 30, 2011 Delete any default MTA resources you have, and install the resources for 1.1.Note, if you've made any modifications to a default MTA resource, be sure to keep that resource. MTA 1.1 now allows for resource subdirectories in the format of [resourceSubdirectory]. E.g. server/mods/deathmatch/[gamemodes]/race This means you need to be careful to ensure you don't have two lots of the same resource, so delete any old ones you may have. I don't want the default Resources MTA 1.1 brings, I have my own. What must I do to update my server fully? Link to comment
MTA Team jhxp Posted August 31, 2011 MTA Team Share Posted August 31, 2011 1. Turn off the server. 2. Update the binary files. http://linux.multitheftauto.com/dl/110/multithef ... 1.1.tar.gz or http://www.mtasa.com 3. Update configuration files (mtaserver.conf and acl.xml). Save the previous ones and re-add your changes to the new ones afterwards. http://linux.multitheftauto.com/dl/110/baseconfig.tar.gz 4. If you use any of the standard resources (like resourcemanager, admin and others), you will have to update them manually, similarly to what Talidan said. http://code.google.com/p/mtasa-resource ... =label:1.1 5. Start the server again. Link to comment
Phat Looser Posted August 31, 2011 Share Posted August 31, 2011 #!/bin/bash MTA_VERSION="1.1" TARGET_FOLDER="./" SERVER_NAME="mta-server" mkdir $MTA_VERSION cd $MTA_VERSION wget "http://linux.multitheftauto.com/dl/110/multitheftauto_linux-$MTA_VERSION.tar.gz" tar xfvz "multitheftauto_linux-$MTA_VERSION.tar.gz" aArray=$(ls | grep -i "multitheftauto_linux-$MTA_VERSION") for currID in `echo $aArray` do echo "$currID" | grep -i ".tar.gz" if [ $? -eq 1 ] then FOLDERNAME=$currID fi done echo "------------" echo "$FOLDERNAME" echo "------------" cp -ruf "$FOLDERNAME"/* ./ rm -rf "multitheftauto_linux"* cd .. cp -ruf ./$MTA_VERSION/* ./ #mv -fu mta-server $SERVER_NAME rm -rf ./$MTA_VERSION Script to automatically download and update MTA 1.1 for linux. Link to comment
Benevolence Posted August 31, 2011 Author Share Posted August 31, 2011 Thanks but I won't try it now as serverFFS is having issues hosting MTA:SA 1.1 Read more here: http://forum.serverffs.com/viewtopic.php?f=14&t=427 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now