Fidanzan Posted June 12, 2011 Share Posted June 12, 2011 как сделать что бы автоматом после запуска сервера закидывало в команду например мой клан |DK| и я хочю что бы автоматом кидало в команду |DK|как это сделать? Link to comment
Kenix Posted June 12, 2011 Share Posted June 12, 2011 как сделать что бы автоматом после запуска сервера закидывало в команду например мой клан |DK| и я хочю что бы автоматом кидало в команду |DK|как это сделать? https://wiki.multitheftauto.com/wiki/SetPlayerTeam Link to comment
Fidanzan Posted June 12, 2011 Author Share Posted June 12, 2011 (edited) 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 June 12, 2011 by Guest Link to comment
Kenix Posted June 12, 2011 Share Posted June 12, 2011 Я так понимаю что ты новенький тебе нужно использовать эти ссылки чтобы научиться делать свои ресурсы и скрипты :тебе нужно использовать это https://wiki.multitheftauto.com/wiki/RU/ ... troduction и использовать руководства по луа viewtopic.php?f=123&t=32458 Link to comment
Kernell Posted June 12, 2011 Share Posted June 12, 2011 как сделать что бы автоматом после запуска сервера закидывало в команду например мой клан |DK| и я хочю что бы автоматом кидало в команду |DK|как это сделать? А по какому принципу определяется что игрок действительно клана |DK|, а не левый какой-то? Link to comment
McQueen Posted February 12, 2012 Share Posted February 12, 2012 Помогите с автотимом! Меня не переносит в список команды в таблице! Что я делаю не так? Нужно ли что-то менять в acl? 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