Juuun Posted September 23, 2014 Share Posted September 23, 2014 Привет всем) Скатал ID System с комюнити ( Как в сампе дает ИД каждому игроку ). Никак не получается прикрепить видимость ид в scoreboard. Получилось только добавить сам столбик с названием..как на скрине! А сам ресурс работает! только там просмотреть можно ид с помощью команды /ids ( и выдает в чате все номера игроков ), а надо чтоб именно в scoreboard отображались номера игроков ( ID`ы ) Помогите пожалуйста! === Вот код === exports.scoreboard:addScoreboardColumn("id",getRootElement(),1) addCommandHandler("ids", function(player, command) players = getElementsByType("player") for id,p in ipairs(players) do outputChatBox(getPlayerName(p) .. ": " .. tostring(id), player) end end) function getIDFromPlayer(player) if player then local theid players = getElementsByType("player") for id,p in ipairs(players) do if player == p then theid = i end end return theid else return false end end function getPlayerFromID(theID) if theID then theID = tonumber(theID) local theplayer players = getElementsByType("player") for id,p in ipairs(players) do if theID == id then theplayer = p end end return theplayer else return false end end Link to comment
N1kS Posted September 23, 2014 Share Posted September 23, 2014 Скинь кусок кода, в котором именно присваивает ID. Link to comment
Kernell Posted September 23, 2014 Share Posted September 23, 2014 Автор: ты два раза задаёшь один и тот же вопрос, и даже не попробовал воспользоваться поиском. Эта тема уже давно обсуждалась: https://forum.multitheftauto.com/viewtopic.php?f ... 20#p592620 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