Jump to content

Recommended Posts

как сделать что бы автоматом после запуска сервера закидывало в команду например мой клан |DK| и я хочю что бы автоматом кидало в команду |DK|как это сделать?

Link to comment

function assignNewTeam ( source, commandName, teamName ) 
  local theTeam = createTeam ( teamName )  -- create a new team with the specified name 
  if theTeam then                          -- if it was successfully created 
    setPlayerTeam ( source, theTeam )    -- add the player to the new team 
  end 
end 
addCommandHandler ( "gimmeateam", assignNewTeam ) 
  
function unassignTeam ( source, commandName ) 
  local theTeam = getPlayerTeam ( source )  -- Check if the player is on a team 
  if theTeam then                          -- this player is on a team, so we can remove them from it 
    setPlayerTeam ( source, nil )    -- remove the player from the current team 
  end 
end 
addCommandHandler ( "takeawaymyteam", unassignTeam   

это где делать??

Edited by Guest
Link to comment

Я так понимаю что ты новенький тебе нужно использовать эти ссылки чтобы научиться делать свои ресурсы и скрипты :тебе нужно использовать это https://wiki.multitheftauto.com/wiki/RU/ ... troduction и использовать руководства по луа viewtopic.php?f=123&t=32458

Link to comment
как сделать что бы автоматом после запуска сервера закидывало в команду например мой клан |DK| и я хочю что бы автоматом кидало в команду |DK|как это сделать?

А по какому принципу определяется что игрок действительно клана |DK|, а не левый какой-то?

Link to comment
  • 7 months later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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