Advertisement
psycholyzern

add_user_cfg.lua

Jul 25th, 2015
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.70 KB | None | 0 0
  1. do
  2. _ = {
  3.  
  4.   -- when a user were invited by other member
  5.   initial_chat_msg = "Hi {to_username} welcome to chat {chat_name}!\nYou has been added by {from_username}",
  6.   -- {to_username} {from_username} {chat_name} {chat_id}
  7.  
  8.   -- when a user joined via invite link
  9.   initial_chat_msg_link = "Hi {to_username} welcome to chat {chat_name}!\nYou has joined this group via invite link",
  10.  
  11.   -- when bot was invited into a group chat
  12.   invited_chat_msg = "Thank you {from_username} for inviting me into your group. You can type !help to start using me.",
  13.  
  14.   -- when bot joined via invite link
  15.   invited_chat_msg_link = "Thank you to myself because joined chat {chat_name} via invite link :P"
  16. }
  17.  
  18. return _
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement