Outward: Difference between revisions

From wikinotes
No edit summary
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
Outward is an RPG games about survival/exploration.
Outward is an RPG games about survival/exploration.<br>
It is built using the [[unity3d]] engine with [[csharp]].


= Documentation =
= Documentation =
Line 12: Line 13:
</blockquote><!-- documentation -->
</blockquote><!-- documentation -->


= Configuration =
= Locations =
<blockquote>
<blockquote>
== Triple Monitor ==
{| class="wikitable"
<blockquote>
|-
=== Linux ===
| <code>${STEAMAPPS}/common/Outward/SaveGames</code> || outward savegames
<blockquote>
|-
Display Setup
| <code>${STEAMAPPS}/common/Outward/OptionSettings.oos</code> || outward settings (graphical/etc)
* Disable <code>nvidiaXineramaInfo</code> in xorg.conf as instructed in [[nvidia configuration]].
|-
* Setup all 3x monitors as a single 5760x1080 screen
|}
* Launch in [[openbox]] where windows are not tiled
</blockquote><!-- Locations -->
 
Game Setup
* Launch game to create settings options file, then exit and modify it


<syntaxhighlight lang="xml">
= Notes =
<!-- ~/.local/share/Steam/steamapps/common/Outward/OptionSettings.oos -->
 
<Settings>
  <GraphicsSettings ...>
    <ResolutionX>5760</ResolutionX>
    <ResolutionY>5760</ResolutionY>
    <Windowed>1</Windowed>
  </GraphicsSettings>
</Settings>
</syntaxhighlight>
 
Now you can play with 3x monitors
</blockquote><!-- Linux -->
</blockquote><!-- Triple Monitor -->
</blockquote><!-- Configuration -->
 
= Beginner Notes =
<blockquote>
<blockquote>
== Inventory ==
{|
<blockquote>
|-
* Displayed weight is for the entire stack (not per item)
| [[outward configuration]]
* Equipped items are 1/2 weight
|-
</blockquote><!-- inventory -->
| [[outward intro]]
 
|-
== Stamina ==
| [[outward skills]]
<blockquote>
|-
* heavy use of stamina 'burns' your stamina, making it unusable. you can recover with sleep, or some teas.
| [[outward magic]]
</blockquote><!-- stamina -->
|-
 
| [[outward crafting]]
== Current Date ==
|-
<blockquote>
|}
Several quests are time sensitive.
</blockquote><!-- Notes -->
 
Record the time upon accepting a quest. You can check the current date on the map (->).
</blockquote><!-- current date -->
</blockquote><!-- inventory -->
 
= Key Time-Sensitive Quests =
<blockquote>
* All warlords must be killed/satisfied before 20 days afterjoining any faction (otherwise Cierzo burns)
</blockquote><!-- key timesensitive quests -->


= Debug Mode =
= Debug Mode =
Line 77: Line 49:
* F3 - skills (learn skills missed if cierzo burns)
* F3 - skills (learn skills missed if cierzo burns)
</blockquote><!-- Debug mode -->
</blockquote><!-- Debug mode -->
= Crafting =
<blockquote>
== Key Ingredients ==
<source lang="yaml">
cierzo:
  - eggs
  - fish
  - seaweed
  - raw meat
  - turmmips
  # beetles
  - ochre beetles
  - gravel beetles
  # minerals
  - mana stones
  - salt
swamp:
  - blood mushrooms
  - star mushrooms
enmekar:
  - ghost eyes
</source>
== Key Foods ==
<source lang="yaml">
# hunger/mana
pot au feu du pirate  # 325: fish(3), salt(1)
turmmip potage        # 250: turmmip(3), salt(1)
# status effects
pungent paste      # cure infection (0.2 weight): egg(1), ochre beetle(1), fish(1)
soothing tea      # burnt mana: water(1), seaweed(1)
</source>
== Key Alchemy ==
<source lang="bash">
# recovery
Astral potion  # mana:  water(1), star-mushroom(1), turmmip(1)
life potion    # health: water(1), blood-mushroom(1), gravel-beetle(1)
# buffs
discipline potion  # physical damage
spiritiual varnish  # ghost damage/defense
</source>
</blockquote><!-- crafting -->

Latest revision as of 21:36, 15 August 2021

Outward is an RPG games about survival/exploration.
It is built using the unity3d engine with csharp.

Documentation

gamepedia https://outward.gamepedia.com/Outward_Wiki
gamerguides https://www.gamerguides.com/outward/guide

Locations

${STEAMAPPS}/common/Outward/SaveGames outward savegames
${STEAMAPPS}/common/Outward/OptionSettings.oos outward settings (graphical/etc)

Notes

outward configuration
outward intro
outward skills
outward magic
outward crafting

Debug Mode

Dropping the empty file DEBUG.txt within outward's data directory enables special options.
There's all sorts of cheats (invulnerability, equipment does not degrade, etc) but very useful options:

  • F1 - summon item (get travel biscuits if needed)
  • F2 - character (warp to cities)
  • F3 - skills (learn skills missed if cierzo burns)