Resource:Admin: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
{{Resource page}}
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
A quick tutorial on how to get admin rights and install admin resource.
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
 
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
<section name="MTA 1.0.0 and lower" class="server" show="false">
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
'''Note:''' Since mta 1.0.5 the accounts.xml file has been removed and replaced by sqlite.
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
 
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
At first, open the '''accounts.xml''' file located in '''server\mods\deathmatch\''' and add a line with your account details, like on the following example.
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
 
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
<syntaxhighlight lang="xml">    <accounts>
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
      <autologin>1</autologin>
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
      <account name="Console" password="" />
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
      <account name="lil_Toady" password="1234" />
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
    </accounts>
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
</syntaxhighlight>
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
</section>
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
 
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
To add an account in '''MTA {{padleft:|3|{{Current Version|full}}}}''' use the following command in the server
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
 
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
'''Note:''' The server needs to run for this action
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
<syntaxhighlight lang="lua">
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
addaccount <username> <password>
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
</syntaxhighlight>
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
 
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
'''Note:''' Server should not be running when you are editing the acl file below
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
 
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
Then you open the '''acl.xml''' file located in the same folder and add yourself as an object to the Admin group by using the 'user.*' syntax, where * would be your account name.
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
 
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
<syntaxhighlight lang="xml">    <!-- The Admin group can do anything -->
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
    <group name="Admin">
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
        <acl name="Moderator" />
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
        <acl name="SuperModerator" />
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
        <acl name="Admin" />
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
        <acl name="RPC" />
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
        <object name="user.lil_Toady" />
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
        <object name="resource.admin" />
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
    </group>
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
</syntaxhighlight>
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
 
Extrem liże hazowi dupsko a Barcioo liże cipsko Trinowi
 
Now open your '''mtaserver.conf''' file and scroll to the bottom, make sure the admin resource is added to the ones that start with the server (note: protected="1" means that it can not be stopped).
 
<syntaxhighlight lang="conf">    <resource src="admin" startup="1" protected="0">  <!-- This is -->
    <resource src="helpmanager" startup="1" protected="0">
    <resource src="mapcycler" startup="1" protected="0">
    <resource src="mapmanager" startup="1" protected="0">
</syntaxhighlight>
 
 
Now that you're done with server files, you can finally start it. Connect to the server itself and login with your account details: use 'login [username] <password>'. If it tells you to press 'p' you have done everything right, congratulations! If not, do this from the very beginning.
[[Category:Scripting Concepts]]
 
[[hu:Resource:Admin]]
[[it:Resource:Admin]]
[[ru:Resource:Admin]]

Revision as of 20:56, 25 December 2018

A quick tutorial on how to get admin rights and install admin resource.

Click to expand [+]
MTA 1.0.0 and lower

To add an account in MTA 1.6 use the following command in the server

Note: The server needs to run for this action

addaccount <username> <password>

Note: Server should not be running when you are editing the acl file below

Then you open the acl.xml file located in the same folder and add yourself as an object to the Admin group by using the 'user.*' syntax, where * would be your account name.

    <!-- The Admin group can do anything --> 
    <group name="Admin">
        <acl name="Moderator" />
        <acl name="SuperModerator" />
        <acl name="Admin" />
        <acl name="RPC" />
        <object name="user.lil_Toady" />
        <object name="resource.admin" />
    </group>


Now open your mtaserver.conf file and scroll to the bottom, make sure the admin resource is added to the ones that start with the server (note: protected="1" means that it can not be stopped).

    <resource src="admin" startup="1" protected="0">  <!-- This is -->
    <resource src="helpmanager" startup="1" protected="0">
    <resource src="mapcycler" startup="1" protected="0">
    <resource src="mapmanager" startup="1" protected="0">


Now that you're done with server files, you can finally start it. Connect to the server itself and login with your account details: use 'login [username] <password>'. If it tells you to press 'p' you have done everything right, congratulations! If not, do this from the very beginning.