Jump to content

Como privatizar un spawn


Chaky

Recommended Posts

  • MTA Team

El spawn de @50p tiene una función para ello. Puedes asignarles contraseñas a cada grupo y sino editas el archivo s_main.lua

con esto para que funcione con ACLs:

Simplemente copia y reemplaza a partir de la linea 21 por esto:
-- line 21: 
            local classACL = aclGetGroup( class.name ); 
            local plrAccount = getPlayerAccount( client ); 
            if ( classACL ) then 
                if ( not isGuestAccount( plrAccount ) ) and ( not isObjectInACLGroup( "user." .. getAccountName( plrAccount ), classACL ) ) then 
                    outputChatBox( "You are not member of this team/gang. Choose different team!", client, 200, 50, 50 ); 
                    requestMenu( client ); 
                    return; 
                elseif isGuestAccount( plrAccount ) then 
                    outputChatBox( "If you are member of \"" .. class.name .. "\" then please log in before you proceed.", client, 200, 50, 50 ); 
                    requestMenu( client ); 
                    return; 
                end 
            end 

Tested it and it works.

Link to comment
El spawn de @50p tiene una función para ello. Puedes asignarles contraseñas a cada grupo y sino editas el archivo s_main.lua

con esto:

Simplemente copia y reemplaza a partir de la linea 21 por esto:
-- line 21: 
            local classACL = aclGetGroup( class.name ); 
            local plrAccount = getPlayerAccount( client ); 
            if ( classACL ) then 
                if ( not isGuestAccount( plrAccount ) ) and ( not isObjectInACLGroup( "user." .. getAccountName( plrAccount ), classACL ) ) then 
                    outputChatBox( "You are not member of this team/gang. Choose different team!", client, 200, 50, 50 ); 
                    requestMenu( client ); 
                    return; 
                elseif isGuestAccount( plrAccount ) then 
                    outputChatBox( "If you are member of \"" .. class.name .. "\" then please log in before you proceed.", client, 200, 50, 50 ); 
                    requestMenu( client ); 
                    return; 
                end 
            end 

Tested it and it works.

Gracias probare y te aviso como me fue muchas gracias

Link to comment
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...