mirror of
https://github.com/System-End/nephthys.git
synced 2026-04-19 20:55:09 +00:00
Fixed Jumpstart Grammar & Responses (#143)
* Jumpstart transcript * Added Jumpstart to init * Alphabetically ordered all local imports * Seperate lines * Fixed grammar and responses * Added README * Fixed Precheck * Fix typo: READNE => README * Rename variable to match naming convention * Add space after bullet point * Remove spaces at the end of each line --------- Co-authored-by: MMK21Hub <50421330+MMK21Hub@users.noreply.github.com>
This commit is contained in:
parent
620939dcb8
commit
2d7d0a03f0
1 changed files with 16 additions and 13 deletions
|
|
@ -13,37 +13,40 @@ class Jumpstart(Transcript):
|
||||||
|
|
||||||
faq_link: str = "https://hackclub.enterprise.slack.com/docs/T0266FRGM/F0A6AMXU744"
|
faq_link: str = "https://hackclub.enterprise.slack.com/docs/T0266FRGM/F0A6AMXU744"
|
||||||
identity_help_channel: str = "C092833JXKK" # #identity-help
|
identity_help_channel: str = "C092833JXKK" # #identity-help
|
||||||
|
readme_link: str = (
|
||||||
|
"https://hackclub.enterprise.slack.com/docs/T0266FRGM/F0A6MFGFW56"
|
||||||
|
)
|
||||||
|
|
||||||
first_ticket_create: str = f"""
|
first_ticket_create: str = f"""
|
||||||
:rac_info: Hey (user)! I'm **Godorpheus**, your friendly game-dev sidekick.
|
:godot: Hey (user)! I'm Godorpheus, your friendly game-dev sidekick.
|
||||||
While a human helper gets to your question, you can:
|
While a human helper gets to your question, you can:
|
||||||
• Check out <{faq_link}|*the FAQ*> — it might already have the answer you need
|
• Check out <{faq_link}|*the FAQ*> and <{readme_link}|*the README*>, it might already have the answer you need
|
||||||
• When your question’s solved, hit the green button below so I can level up my helpfulness!
|
• When your question is solved, hit the green button below so I can level up my helpfulness!
|
||||||
"""
|
"""
|
||||||
ticket_create: str = f"""
|
ticket_create: str = f"""
|
||||||
:rac_info: Hey (user)! Godorpheus here — just hanging out in code-space while we wait for a human helper.
|
:rac_info: Hey (user)! Godorpheus here — just hanging out in code-space while we wait for a human helper.
|
||||||
• Take a peek at <{faq_link}|*the FAQ*> — it might already contain the answer you’re looking for
|
• Take a peek at <{faq_link}|*the FAQ*> — it might already contain the answer you’re looking for
|
||||||
• Once your question is answered, tap the green button below and I’ll happily log another XP point
|
• Once your question is resolved, tap the green button below to complete this quest 🏁
|
||||||
"""
|
"""
|
||||||
ticket_resolve: str = f"""
|
ticket_resolve: str = f"""
|
||||||
✅ This post has been marked resolved by <@{{user_id}}>! Godorpheus is heading back to my digital corner.
|
✅ This post has been marked as resolved by <@{{user_id}}>! I’m heading back to my digital corner.
|
||||||
Need more help? Post in <#{help_channel}> and I’ll respawn instantly!
|
Need more help? Post in <#{help_channel}> and I’ll respawn instantly!
|
||||||
"""
|
"""
|
||||||
|
|
||||||
faq_macro: str = f"""
|
faq_macro: str = f"""
|
||||||
Hey (user)! This question’s already answered in the FAQ: <{faq_link}|*Jumpstart FAQ*> 🎮
|
Hey (user)! This question’s already answered in the FAQ or README: <{faq_link}|*Jumpstart FAQ*> 🎮
|
||||||
|
<{readme_link}|*Jumpstart README*> 👾
|
||||||
_I’ve marked this thread as resolved. Start a new thread if you need more help!_
|
_I’ve marked this thread as resolved. Start a new thread if you need more help!_
|
||||||
"""
|
"""
|
||||||
identity_macro: str = f"""
|
identity_macro: str = f"""
|
||||||
Hey (user)! For identity verification questions, please head over to <#{identity_help_channel}> :rac_cute:
|
Hey (user)! For identity verification questions, please head over to <#{identity_help_channel}> :rac_cute:
|
||||||
|
|
||||||
It keeps things tidy and makes it easier for the verification team to help.
|
It keeps things tidy and makes it easier for the verification team to help.
|
||||||
|
|
||||||
_I’ve marked this thread as resolved!_
|
_I’ve marked this thread as resolved!_
|
||||||
"""
|
"""
|
||||||
fraud_macro: str = """
|
fraud_macro: str = """
|
||||||
Hey (user)! Fraud-related questions go to <@U08TU92QGHM> — they handle it all securely 🛡️
|
Hey (user)! Fraud-related questions go to <@U08TU92QGHM> — they handle it all securely 🛡️
|
||||||
|
|
||||||
_I’ve marked this thread as resolved to keep things organized!_
|
_I’ve marked this thread as resolved to keep things organized!_
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue