Ali Moghimi
Results
2
comments of
Ali Moghimi
You can use redis commands
``` local TEST = 'create:group'..msg.from.id local TSETREDIS = redis:get(TEST) if not TSETREDIS then local TSETREDIS = 'create:group'..msg.from.id redis:set(TSETREDIS, 0) return 'if it's frist time' else return "something here" end ```...