diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-04-06 10:04:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-04-06 10:04:36 -0300 |
commit | 0a9fbaa58d72ff66c94593400cd8bba38a318a7b (patch) | |
tree | 81f54d4c2bf2d9d5c9da6331c14c94cefea60451 /world/map/npc/099-7 | |
parent | 81f2dd6849b214dd5997fc5e2ea6b34ae385038e (diff) | |
download | serverdata-0a9fbaa58d72ff66c94593400cd8bba38a318a7b.tar.gz serverdata-0a9fbaa58d72ff66c94593400cd8bba38a318a7b.tar.bz2 serverdata-0a9fbaa58d72ff66c94593400cd8bba38a318a7b.tar.xz serverdata-0a9fbaa58d72ff66c94593400cd8bba38a318a7b.zip |
Just some lore-y stuff
Diffstat (limited to 'world/map/npc/099-7')
-rw-r--r-- | world/map/npc/099-7/chronos.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/world/map/npc/099-7/chronos.txt b/world/map/npc/099-7/chronos.txt index 062d452b..ec3eef49 100644 --- a/world/map/npc/099-7/chronos.txt +++ b/world/map/npc/099-7/chronos.txt @@ -10,6 +10,7 @@ mes "\"I'm Chronos, lord of time, the immortal, the head editor of the Almanach, the... Alright, let's forget that.\""; if (BOSS_POINTS < .price) goto L_Close; // (Does this even work? I'm not sure) + // Wouldn't (gettime(7) * 10000 + gettime(6)) work better? set @cur_date, (gettime(7) << 5) | (gettime(6) << 1); if (#CHRONOS == @cur_date) goto L_Maxed; if ($CHRONOS_STOCK < 1) goto L_Maxed; @@ -20,7 +21,7 @@ set @dif, @cur - #BOSS_MEDALS; if (@dif >= 1) goto L_GiveMedals; mes "[Chronos]"; - mes "\"You don't made any progress so i can't give you any Boss Medals.\""; + mes "\"You haven't made any progress, so I can't give you any Boss Medals at this time.\""; mes ""; if (#BOSS_MEDALS_AVAILABLE >= 1) goto L_Qestion; @@ -166,7 +167,7 @@ L_rewards_choice: if(@item$ == "") goto L_Close; mes ""; - mes "\"You really want the " + @item_names$[@index] + "?\""; + mes "\"You really want the " + @item_names$[@index] + "? For only time will reveal the wisdom of this choice, but then, it'll be too late.\""; menu "No", L_Close, "Yes", L_Yes; |