local imgui = require("imgui")
sampRegisterChatCommand("nick", function(arg)
if (not arg or arg == nil) then sampAddChatMessage("Используйте: /nick [ID]", -1) return end
if (not sampIsPlayerConnected(arg)) then sampAddChatMessage("Игрока с таким ID нет на сервере!", -1) return end...