# IntroText + Day

It is possible to define an IntroText depending on the current Day in the game and similar to the Default IntroText, you can include more than 1 speech if you want to.

These are the possibilities:

* IntroTextMonday
* IntroTextTuesday
* IntroTextWednesday
* IntroTextThursday
* IntroTextFriday
* IntroTextSaturday
* IntroTextSunday
* IntroTextWeek
* IntroTextWeekend

Week can be used as a combination for Monday, Tuesday, Wednesday, Thursday and Friday.

Weekend can be used as a combination for Saturday and Sunday.

Defining IntroTextWeekend looks like this:

```ruby
IntroTextWeekend: ["Hello, it's weekend so we'll be closing soon, what do you want?"]
```

For example you can make the NPC sound rude in the weekend.

This will be used by the script when it's either Saturday or Sunday in the game:

<div align="center"><figure><img src="/files/ZN62DadPtxFxZ4BN7Dcy" alt="" width="375"><figcaption><p>IntroTextWeekend</p></figcaption></figure></div>

We can do the similar for Monday, defining IntroTextMonday looks like this:

```ruby
IntroTextMonday: ["Happy Monday - no discounts though - what can I do for you?"]
```

This will be used by the script when it's Monday in the game:

<div align="center"><figure><img src="/files/w8wefHcMBQ8s6g3M7fm8" alt="" width="375"><figcaption><p>IntroTextMonday</p></figcaption></figure></div>

The script first checks what day it is in game.

But when you didn't provide an IntroText + Day (for example Monday), the fall-back will look like this:

Here's a break down of what I mentioned above:

* Day of week - If not Day of week then week or weekend - If not Week or Weekend then Time of Day (same as with IntroText + Time) and so on.

Let's simplify this with an example, let's say it's Monday and Evening:

IntroTextMonday - IntroTextWeek - IntroTextEvening - IntroTextDay - IntroText

There are a few check between the first and second one but I'll come to this in [IntroText + Time + Day](/arckys-poke-mart-guide/settings-and-setup-file/speeches/seller-classes/introtext/introtext-+-time-+-day.md).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://arckytech.gitbook.io/arckys-poke-mart-guide/settings-and-setup-file/speeches/seller-classes/introtext/introtext-+-day.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
