├── LICENSE ├── README.md ├── auto.sh ├── bot ├── bot.lua └── utils.lua ├── data ├── gitkeep.lua ├── photos │ └── .gitkeep └── ping.webp ├── libs ├── JSON.lua ├── XMLElement.lua ├── dateparser.lua ├── dkjson.lua ├── fakeredis.lua ├── feedparser.lua ├── lua-redis.lua ├── mimetype.lua ├── redis.lua ├── serpent.lua ├── tdcli.lua └── url.lua ├── pct.sh ├── plugins ├── Lucas.lua ├── msg-checks.lua └── tools.lua └── tg └── tdcli.lua /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/README.md -------------------------------------------------------------------------------- /auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/auto.sh -------------------------------------------------------------------------------- /bot/bot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/bot/bot.lua -------------------------------------------------------------------------------- /bot/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/bot/utils.lua -------------------------------------------------------------------------------- /data/gitkeep.lua: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/photos/.gitkeep: -------------------------------------------------------------------------------- 1 | @BeyondTeam 2 | -------------------------------------------------------------------------------- /data/ping.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/data/ping.webp -------------------------------------------------------------------------------- /libs/JSON.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/libs/JSON.lua -------------------------------------------------------------------------------- /libs/XMLElement.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/libs/XMLElement.lua -------------------------------------------------------------------------------- /libs/dateparser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/libs/dateparser.lua -------------------------------------------------------------------------------- /libs/dkjson.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/libs/dkjson.lua -------------------------------------------------------------------------------- /libs/fakeredis.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/libs/fakeredis.lua -------------------------------------------------------------------------------- /libs/feedparser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/libs/feedparser.lua -------------------------------------------------------------------------------- /libs/lua-redis.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/libs/lua-redis.lua -------------------------------------------------------------------------------- /libs/mimetype.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/libs/mimetype.lua -------------------------------------------------------------------------------- /libs/redis.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/libs/redis.lua -------------------------------------------------------------------------------- /libs/serpent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/libs/serpent.lua -------------------------------------------------------------------------------- /libs/tdcli.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/libs/tdcli.lua -------------------------------------------------------------------------------- /libs/url.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/libs/url.lua -------------------------------------------------------------------------------- /pct.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/pct.sh -------------------------------------------------------------------------------- /plugins/Lucas.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/plugins/Lucas.lua -------------------------------------------------------------------------------- /plugins/msg-checks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/plugins/msg-checks.lua -------------------------------------------------------------------------------- /plugins/tools.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/plugins/tools.lua -------------------------------------------------------------------------------- /tg/tdcli.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtectionTeam/PCT/HEAD/tg/tdcli.lua --------------------------------------------------------------------------------