mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-10 19:40:55 +00:00
fix missing } in doc
This commit is contained in:
parent
595d21ff84
commit
10f0dea98d
@ -168,25 +168,25 @@ e.g. if a new user joins a chat MESSAGE is set to "/_new_chat_user".
|
|||||||
|
|
||||||
* ```$SERVICE```: This array contains info about received service messages.
|
* ```$SERVICE```: This array contains info about received service messages.
|
||||||
* ```${SERVICE}```: "yes" if service message is received
|
* ```${SERVICE}```: "yes" if service message is received
|
||||||
* ```${SERVICE[NEWMEMBER]```: New user's id
|
* ```${SERVICE[NEWMEMBER]}}```: New user's id
|
||||||
* ```${MESSAGE}```: /_new_chat_member ID NAME
|
* ```${MESSAGE}```: /_new_chat_member ID NAME
|
||||||
* ```${NEWMEMBER[ID]```: New user's id
|
* ```${NEWMEMBER[ID]}```: New user's id
|
||||||
* ```${NEWMEMBER[FIRST_NAME]```: New user's first name
|
* ```${NEWMEMBER[FIRST_NAME]}```: New user's first name
|
||||||
* ```${NEWMEMBER[LAST_NAME]```: New user's last name
|
* ```${NEWMEMBER[LAST_NAME]}```: New user's last name
|
||||||
* ```${NEWMEMBER[USERNAME]```: New user's username
|
* ```${NEWMEMBER[USERNAME]}```: New user's username
|
||||||
* ```${NEWMEMBER[ISBOT]```: New user is a bot
|
* ```${NEWMEMBER[ISBOT]}```: New user is a bot
|
||||||
* ```${SERVICE[LEFTMEMBER]```: Id of user left
|
* ```${SERVICE[LEFTMEMBER]}```: Id of user left
|
||||||
* ```${MESSAGE}```: /_left_chat_member ID NAME
|
* ```${MESSAGE}```: /_left_chat_member ID NAME
|
||||||
* ```${LEFTMEMBER[ID]```: Left user's id
|
* ```${LEFTMEMBER[ID]}```: Left user's id
|
||||||
* ```${LEFTMEMBER[FIRST_NAME]```: Left user's first name
|
* ```${LEFTMEMBER[FIRST_NAME]}```: Left user's first name
|
||||||
* ```${LEFTMEMBER[LAST_NAME]```: Left user's last name
|
* ```${LEFTMEMBER[LAST_NAME]}```: Left user's last name
|
||||||
* ```${LEFTMEMBER[USERNAME]```: Left user's username
|
* ```${LEFTMEMBER[USERNAME]}```: Left user's username
|
||||||
* ```${LEFTMEMBER[ISBOT]```: Left user is a bot
|
* ```${LEFTMEMBER[ISBOT]}```: Left user is a bot
|
||||||
* ```${SERVICE[NEWTITLE]```: Text of new title
|
* ```${SERVICE[NEWTITLE]}```: Text of new title
|
||||||
* ```${MESSAGE}```: /_new_chat_title SENDER TEXT
|
* ```${MESSAGE}```: /_new_chat_title SENDER TEXT
|
||||||
* ```${SERVICE[NEWPHOTO]```: New Chat Picture
|
* ```${SERVICE[NEWPHOTO]}```: New Chat Picture
|
||||||
* ```${MESSAGE}```: /_new_chat_picture SENDER URL
|
* ```${MESSAGE}```: /_new_chat_picture SENDER URL
|
||||||
* ```${SERVICE[PINNED]```: Pinned Message structure
|
* ```${SERVICE[PINNED]}```: Pinned Message structure
|
||||||
* ```${MESSAGE}```: /_new_pinned_message SENDER ID
|
* ```${MESSAGE}```: /_new_pinned_message SENDER ID
|
||||||
* ```${PINNED[ID]}```: Id of pinned message
|
* ```${PINNED[ID]}```: Id of pinned message
|
||||||
* ```${PINNED[MESSAGE]}```: Message text of pinned message
|
* ```${PINNED[MESSAGE]}```: Message text of pinned message
|
||||||
@ -283,5 +283,5 @@ send_action "${CHAT[ID]}" "action"
|
|||||||
#### [Prev Create Bot](1_firstbot.md)
|
#### [Prev Create Bot](1_firstbot.md)
|
||||||
#### [Next Advanced Usage](3_advanced.md)
|
#### [Next Advanced Usage](3_advanced.md)
|
||||||
|
|
||||||
#### $$VERSION$$ v0.962-113-g9e3d301
|
#### $$VERSION$$ v0.962-114-g595d21f
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
# #### if you start to develop your own bot, use the clean version of this file:
|
# #### if you start to develop your own bot, use the clean version of this file:
|
||||||
# #### mycommands.clean
|
# #### mycommands.clean
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v0.98-pre2-7-g3569a76
|
#### $$VERSION$$ v0.962-114-g595d21f
|
||||||
#
|
#
|
||||||
|
|
||||||
# uncomment the following lines to overwrite info and help messages
|
# uncomment the following lines to overwrite info and help messages
|
||||||
@ -121,7 +121,7 @@ else
|
|||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
# will we process edited messages also?
|
# will we process edited messages also?
|
||||||
'/edited_message'*)
|
'/_edited_message'*)
|
||||||
return 1 # no
|
return 1 # no
|
||||||
# but if we do, remove /edited_message
|
# but if we do, remove /edited_message
|
||||||
MESSAGE="${MESSAGE#/* }"
|
MESSAGE="${MESSAGE#/* }"
|
||||||
|
Loading…
Reference in New Issue
Block a user