<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://home.stridr.biz/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nathans1987</id>
	<title>Stridr - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://home.stridr.biz/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nathans1987"/>
	<link rel="alternate" type="text/html" href="https://home.stridr.biz/Special:Contributions/Nathans1987"/>
	<updated>2026-06-22T00:09:17Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.33.4</generator>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Main_Page&amp;diff=46</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Main_Page&amp;diff=46"/>
		<updated>2026-05-17T12:58:22Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Stridr MediaWiki&amp;lt;/strong&amp;gt;&lt;br /&gt;
==Working Title &amp;quot;Book&amp;quot;==&lt;br /&gt;
&lt;br /&gt;
*[[Working Title &amp;quot;Book&amp;quot;]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[[Felix]]==&lt;br /&gt;
&lt;br /&gt;
*[[Words]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[[Fantasy Sandbox Game]]==&lt;br /&gt;
&lt;br /&gt;
*[[Systems]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Godot ==&lt;br /&gt;
&lt;br /&gt;
* [[Godot Git Setup]]&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Godot_Git_Setup&amp;diff=45</id>
		<title>Godot Git Setup</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Godot_Git_Setup&amp;diff=45"/>
		<updated>2026-05-17T12:57:40Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: Created page with &amp;quot;&amp;lt;br /&amp;gt;  = Godot + Git + Gitea Project Template (Linux) = A reusable workflow for setting up a new Godot project with Git and pushing it to a blank Gitea repository using HTTPS...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Godot + Git + Gitea Project Template (Linux) =&lt;br /&gt;
A reusable workflow for setting up a new Godot project with Git and pushing it to a blank Gitea repository using HTTPS.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
Before starting:&lt;br /&gt;
&lt;br /&gt;
* Git is installed (&amp;lt;code&amp;gt;git --version&amp;lt;/code&amp;gt;)&lt;br /&gt;
* A Godot project already exists&lt;br /&gt;
* A blank repository has been created in Gitea&lt;br /&gt;
* You are inside your Godot project folder in terminal&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
 &amp;lt;code&amp;gt;git --version&lt;br /&gt;
 pwd&lt;br /&gt;
 ls&amp;lt;/code&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Initial Project Setup =&lt;br /&gt;
&lt;br /&gt;
== 1. Initialize Git Repository ==&lt;br /&gt;
 &amp;lt;code&amp;gt;git init&amp;lt;/code&amp;gt;&lt;br /&gt;
'''What it does:'''&lt;br /&gt;
&lt;br /&gt;
* Creates a hidden &amp;lt;code&amp;gt;.git&amp;lt;/code&amp;gt; folder&lt;br /&gt;
* Turns the current folder into a Git repository&lt;br /&gt;
* Starts tracking version history&lt;br /&gt;
&lt;br /&gt;
Useful when:&lt;br /&gt;
&lt;br /&gt;
* Starting any new project&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 2. Create Godot &amp;lt;code&amp;gt;.gitignore&amp;lt;/code&amp;gt; ==&lt;br /&gt;
 &amp;lt;code&amp;gt;cat &amp;gt; .gitignore &amp;lt;&amp;lt; 'EOF'&lt;br /&gt;
 .godot/&lt;br /&gt;
 .import/&lt;br /&gt;
 .export/&lt;br /&gt;
 export_presets.cfg&lt;br /&gt;
 EOF&amp;lt;/code&amp;gt;&lt;br /&gt;
'''What it does:'''&lt;br /&gt;
&lt;br /&gt;
* Creates a &amp;lt;code&amp;gt;.gitignore&amp;lt;/code&amp;gt; file&lt;br /&gt;
* Prevents machine-generated or temporary files being committed&lt;br /&gt;
&lt;br /&gt;
=== Ignored files explained ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;.godot/&amp;lt;/code&amp;gt; → Godot 4 cache/import data&lt;br /&gt;
* &amp;lt;code&amp;gt;.import/&amp;lt;/code&amp;gt; → legacy import cache&lt;br /&gt;
* &amp;lt;code&amp;gt;.export/&amp;lt;/code&amp;gt; → export temp files&lt;br /&gt;
* &amp;lt;code&amp;gt;export_presets.cfg&amp;lt;/code&amp;gt; → local export settings&lt;br /&gt;
&lt;br /&gt;
Why ignore these:&lt;br /&gt;
&lt;br /&gt;
* Reduces repo size&lt;br /&gt;
* Avoids merge conflicts&lt;br /&gt;
* Keeps commits clean&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 3. Stage All Files ==&lt;br /&gt;
 &amp;lt;code&amp;gt;git add .&amp;lt;/code&amp;gt;&lt;br /&gt;
'''What it does:'''&lt;br /&gt;
&lt;br /&gt;
* Adds all current files to the staging area&lt;br /&gt;
* Prepares them for commit&lt;br /&gt;
&lt;br /&gt;
Think of staging as:&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;These are the files I want included in the next snapshot&amp;quot;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 4. First Commit ==&lt;br /&gt;
 &amp;lt;code&amp;gt;git commit -m &amp;quot;Initial commit&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
'''What it does:'''&lt;br /&gt;
&lt;br /&gt;
* Saves a snapshot of staged files into project history&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;-m&amp;lt;/code&amp;gt; means message.&lt;br /&gt;
&lt;br /&gt;
Good commit messages:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;Add player movement&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Implement inventory system&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;Fix wall jump bug&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Bad commit messages:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;stuff&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;update&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;asdf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Future you will thank present you.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 5. Add Remote Repository ==&lt;br /&gt;
 &amp;lt;code&amp;gt;git remote add origin &amp;lt;nowiki&amp;gt;https://your-gitea-domain.com/username/repository.git&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
Replace URL with your Gitea repo URL.&lt;br /&gt;
&lt;br /&gt;
'''What it does:'''&lt;br /&gt;
&lt;br /&gt;
* Links local project to remote Gitea repo&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;origin&amp;lt;/code&amp;gt; = nickname for remote server&lt;br /&gt;
&lt;br /&gt;
Check remotes:&lt;br /&gt;
 &amp;lt;code&amp;gt;git remote -v&amp;lt;/code&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== 6. Set Main Branch + Push ==&lt;br /&gt;
 &amp;lt;code&amp;gt;git branch -M main&lt;br /&gt;
 git push -u origin main&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;code&amp;gt;git branch -M main&amp;lt;/code&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
* Renames current branch to &amp;lt;code&amp;gt;main&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;code&amp;gt;git push -u origin main&amp;lt;/code&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
* Uploads commits to remote&lt;br /&gt;
* &amp;lt;code&amp;gt;-u&amp;lt;/code&amp;gt; sets upstream so future pushes only need &amp;lt;code&amp;gt;git push&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After first push:&lt;br /&gt;
 &amp;lt;code&amp;gt;git push&amp;lt;/code&amp;gt;&lt;br /&gt;
is enough.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Save HTTPS Credentials (Optional but recommended) =&lt;br /&gt;
 &amp;lt;code&amp;gt;git config --global credential.helper store&amp;lt;/code&amp;gt;&lt;br /&gt;
'''What it does:'''&lt;br /&gt;
&lt;br /&gt;
* Saves HTTPS username/password or token locally after first login&lt;br /&gt;
&lt;br /&gt;
Benefits:&lt;br /&gt;
&lt;br /&gt;
* No repeated login prompts&lt;br /&gt;
&lt;br /&gt;
Stored in:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;~/.git-credentials&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Security note:&lt;br /&gt;
&lt;br /&gt;
* Stored in plain text&lt;br /&gt;
* Fine for personal Linux machine&lt;br /&gt;
* Less ideal on shared computers&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Daily Workflow / Future Commits =&lt;br /&gt;
After making changes:&lt;br /&gt;
 &amp;lt;code&amp;gt;git add .&lt;br /&gt;
 git commit -m &amp;quot;Describe changes&amp;quot;&lt;br /&gt;
 git push&amp;lt;/code&amp;gt;&lt;br /&gt;
Typical workflow:&lt;br /&gt;
&lt;br /&gt;
# Code&lt;br /&gt;
# Test&lt;br /&gt;
# Commit&lt;br /&gt;
# Push&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Branching =&lt;br /&gt;
Useful for testing features safely.&lt;br /&gt;
&lt;br /&gt;
== Create new branch ==&lt;br /&gt;
 &amp;lt;code&amp;gt;git checkout -b feature-double-jump&amp;lt;/code&amp;gt;&lt;br /&gt;
'''What it does:'''&lt;br /&gt;
&lt;br /&gt;
* Creates branch&lt;br /&gt;
* Switches to it immediately&lt;br /&gt;
&lt;br /&gt;
Now you can experiment without touching main.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Switch branches ==&lt;br /&gt;
 &amp;lt;code&amp;gt;git checkout main&amp;lt;/code&amp;gt;&lt;br /&gt;
or:&lt;br /&gt;
 &amp;lt;code&amp;gt;git checkout feature-double-jump&amp;lt;/code&amp;gt;&lt;br /&gt;
Moves between branches.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== View branches ==&lt;br /&gt;
 &amp;lt;code&amp;gt;git branch&amp;lt;/code&amp;gt;&lt;br /&gt;
Current branch has &amp;lt;code&amp;gt;*&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
 &amp;lt;code&amp;gt;* main&lt;br /&gt;
   feature-double-jump&amp;lt;/code&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Merge branch into main ==&lt;br /&gt;
Switch to main first:&lt;br /&gt;
 &amp;lt;code&amp;gt;git checkout main&amp;lt;/code&amp;gt;&lt;br /&gt;
Merge:&lt;br /&gt;
 &amp;lt;code&amp;gt;git merge feature-double-jump&amp;lt;/code&amp;gt;&lt;br /&gt;
This combines work into main.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Delete merged branch ==&lt;br /&gt;
 &amp;lt;code&amp;gt;git branch -d feature-double-jump&amp;lt;/code&amp;gt;&lt;br /&gt;
Keeps repo tidy.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Useful Commands =&lt;br /&gt;
&lt;br /&gt;
== Check status ==&lt;br /&gt;
 &amp;lt;code&amp;gt;git status&amp;lt;/code&amp;gt;&lt;br /&gt;
Shows:&lt;br /&gt;
&lt;br /&gt;
* modified files&lt;br /&gt;
* staged files&lt;br /&gt;
* current branch&lt;br /&gt;
&lt;br /&gt;
Most used Git command.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== View commit history ==&lt;br /&gt;
 &amp;lt;code&amp;gt;git log --oneline&amp;lt;/code&amp;gt;&lt;br /&gt;
Compact history view.&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
 &amp;lt;code&amp;gt;4f8a1d2 Add dash mechanic&lt;br /&gt;
 2a8c114 Initial commit&amp;lt;/code&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== See changed files ==&lt;br /&gt;
 &amp;lt;code&amp;gt;git diff&amp;lt;/code&amp;gt;&lt;br /&gt;
Shows unstaged changes.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Undo unstaged changes ==&lt;br /&gt;
 &amp;lt;code&amp;gt;git restore filename&amp;lt;/code&amp;gt;&lt;br /&gt;
Danger: discards local edits.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Unstage file ==&lt;br /&gt;
 &amp;lt;code&amp;gt;git restore --staged filename&amp;lt;/code&amp;gt;&lt;br /&gt;
Removes from staging without deleting changes.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Recommended Solo Dev Workflow for Godot =&lt;br /&gt;
For small solo projects:&lt;br /&gt;
&lt;br /&gt;
* Commit often&lt;br /&gt;
* Push daily or after milestones&lt;br /&gt;
* Use branches for risky features&lt;br /&gt;
* Keep &amp;lt;code&amp;gt;main&amp;lt;/code&amp;gt; stable/playable&lt;br /&gt;
&lt;br /&gt;
Example branch naming:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;feature-inventory&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;feature-wall-jump&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;bugfix-animation&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;refactor-state-machine&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Quick Reference Cheat Sheet =&lt;br /&gt;
 &amp;lt;code&amp;gt;git add .&lt;br /&gt;
 git commit -m &amp;quot;message&amp;quot;&lt;br /&gt;
 git push&lt;br /&gt;
 &lt;br /&gt;
 git checkout -b new-branch&lt;br /&gt;
 git checkout main&lt;br /&gt;
 git merge branch-name&lt;br /&gt;
 &lt;br /&gt;
 git status&lt;br /&gt;
 git branch&lt;br /&gt;
 git log --oneline&amp;lt;/code&amp;gt;&lt;br /&gt;
----End of template.&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Main_Page&amp;diff=44</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Main_Page&amp;diff=44"/>
		<updated>2026-04-08T07:31:37Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Stridr MediaWiki&amp;lt;/strong&amp;gt;&lt;br /&gt;
==Working Title &amp;quot;Book&amp;quot;==&lt;br /&gt;
&lt;br /&gt;
*[[Working Title &amp;quot;Book&amp;quot;]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[[Felix]]==&lt;br /&gt;
&lt;br /&gt;
*[[Words]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[[Fantasy Sandbox Game]]==&lt;br /&gt;
&lt;br /&gt;
*[[Systems]]&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Words&amp;diff=43</id>
		<title>Words</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Words&amp;diff=43"/>
		<updated>2026-04-08T07:25:28Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: /* I'M JUST TELLING A STORY */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Felix dialect syntax==&lt;br /&gt;
&lt;br /&gt;
====I godda-bout something, Dad====&lt;br /&gt;
When we are going to bed, as I leave Felix always godda-bout something. It's usually his made up story or how old something is, perhaps the map.&lt;br /&gt;
&lt;br /&gt;
===='''I'M JUST TELLING A STORY - (This may need correcting)'''====&lt;br /&gt;
Asking Felix something as he strolls the room, role playing a story, in specially serious concentration will usually illicit this abrupt response.&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Words&amp;diff=42</id>
		<title>Words</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Words&amp;diff=42"/>
		<updated>2026-04-08T07:24:49Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Felix dialect syntax==&lt;br /&gt;
&lt;br /&gt;
====I godda-bout something, Dad====&lt;br /&gt;
When we are going to bed, as I leave Felix always godda-bout something. It's usually his made up story or how old something is, perhaps the map.&lt;br /&gt;
&lt;br /&gt;
==== '''I'M JUST TELLING A STORY''' ====&lt;br /&gt;
Asking Felix something as he strolls the room, role playing a story, in specially serious concentration will usually illicit this abrupt response.&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Words&amp;diff=41</id>
		<title>Words</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Words&amp;diff=41"/>
		<updated>2026-04-08T07:20:35Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: /* Felix dialect syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Felix dialect syntax==&lt;br /&gt;
&lt;br /&gt;
==== I godda-bout something, Dad ====&lt;br /&gt;
When we are going to bed, as I leave Felix always godda-bout something. It's usually his made up story or how old something is, perhaps the map.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Felix&amp;diff=40</id>
		<title>Felix</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Felix&amp;diff=40"/>
		<updated>2026-04-08T07:15:23Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: Created page with &amp;quot;== Felix == Words&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Felix ==&lt;br /&gt;
[[Words]]&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Main_Page&amp;diff=39</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Main_Page&amp;diff=39"/>
		<updated>2026-04-08T07:14:34Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;MediaWiki has been installed.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
==Getting started==&lt;br /&gt;
&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
*[https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
{{Welcome}}&lt;br /&gt;
==Working Title &amp;quot;Book&amp;quot;==&lt;br /&gt;
&lt;br /&gt;
*[[Working Title &amp;quot;Book&amp;quot;]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[[Felix]]==&lt;br /&gt;
&lt;br /&gt;
*[[Words]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[[Fantasy Sandbox Game]]==&lt;br /&gt;
&lt;br /&gt;
*[[Systems]]&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Main_Page&amp;diff=38</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Main_Page&amp;diff=38"/>
		<updated>2026-04-08T07:14:08Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: /* Fantasy sandbox game */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;MediaWiki has been installed.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
==Getting started==&lt;br /&gt;
&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
*[https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
{{Welcome}}&lt;br /&gt;
==Working Title &amp;quot;Book&amp;quot;==&lt;br /&gt;
&lt;br /&gt;
*[[Working Title &amp;quot;Book&amp;quot;]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Felix==&lt;br /&gt;
&lt;br /&gt;
*[[Words]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[[Fantasy Sandbox Game]]==&lt;br /&gt;
&lt;br /&gt;
*[[Systems]]&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Fantasy_Sandbox_Game&amp;diff=37</id>
		<title>Fantasy Sandbox Game</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Fantasy_Sandbox_Game&amp;diff=37"/>
		<updated>2026-04-08T07:08:57Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: Created page with &amp;quot;== Fantasy Sandbox Game == description of the game...   Systems&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Fantasy Sandbox Game ==&lt;br /&gt;
description of the game...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Systems]]&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=MediaWiki:Sidebar&amp;diff=36</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=MediaWiki:Sidebar&amp;diff=36"/>
		<updated>2026-04-08T07:07:36Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
&lt;br /&gt;
*Book&lt;br /&gt;
** Working Title &amp;quot;Book&amp;quot;|Working Title &amp;quot;Book&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*Game&lt;br /&gt;
** Fantasy Sandbox Game|Fantasy Sandbox Game&lt;br /&gt;
&lt;br /&gt;
*Help&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** randompage-url|randompage&lt;br /&gt;
** helppage|help-mediawiki&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* SEARCH&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
* LANGUAGES&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=MediaWiki:Sidebar&amp;diff=35</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=MediaWiki:Sidebar&amp;diff=35"/>
		<updated>2026-04-08T07:07:18Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
&lt;br /&gt;
*Book&lt;br /&gt;
** Working Title &amp;quot;Book&amp;quot;|Working Title &amp;quot;Book&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*Game&lt;br /&gt;
Fantasy Sandbox Game|Fantasy Sandbox Game&lt;br /&gt;
&lt;br /&gt;
*Help&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** randompage-url|randompage&lt;br /&gt;
** helppage|help-mediawiki&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* SEARCH&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
* LANGUAGES&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Systems&amp;diff=34</id>
		<title>Systems</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Systems&amp;diff=34"/>
		<updated>2026-04-08T02:02:32Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: System&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;🏪 Economy &amp;amp; Profession System&lt;br /&gt;
&lt;br /&gt;
Overview&lt;br /&gt;
&lt;br /&gt;
The economy is a hybrid player-driven system combining:&lt;br /&gt;
&lt;br /&gt;
- Player-produced commodities&lt;br /&gt;
- Buff-based services&lt;br /&gt;
- Market stalls (player-owned and trader-controlled)&lt;br /&gt;
- A limited import system to stabilize supply&lt;br /&gt;
&lt;br /&gt;
The system encourages:&lt;br /&gt;
&lt;br /&gt;
- Player interaction&lt;br /&gt;
- Local production over imports&lt;br /&gt;
- Strategic decision-making (profit vs reputation vs control)&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
👨‍🌾 Core Professions&lt;br /&gt;
&lt;br /&gt;
Each main profession has:&lt;br /&gt;
&lt;br /&gt;
- A Tool&lt;br /&gt;
- A Buff (sellable service)&lt;br /&gt;
- A Commodity (sellable resource)&lt;br /&gt;
- Tool Upgrades (2 tiers)&lt;br /&gt;
&lt;br /&gt;
Main Professions&lt;br /&gt;
&lt;br /&gt;
Farmer&lt;br /&gt;
&lt;br /&gt;
- Tool: Hoe&lt;br /&gt;
- Buff: +30% crop yield&lt;br /&gt;
- Commodity: Wheat ($10)&lt;br /&gt;
- Upgrades: Faster hoe → Auto-till&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
Stock Master&lt;br /&gt;
&lt;br /&gt;
- Tool: Feed Trough / Milking Kit&lt;br /&gt;
- Buff: +30% animal product rate&lt;br /&gt;
- Commodity: Milk / Eggs / Wool / Meat ($20)&lt;br /&gt;
- Upgrades: Faster feeding → Auto-milking&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
Miner&lt;br /&gt;
&lt;br /&gt;
- Tool: Pickaxe&lt;br /&gt;
- Buff: +30% ore yield&lt;br /&gt;
- Commodity: Ore ($15)&lt;br /&gt;
- Upgrades: Efficiency → Chance to double ore&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
Fisher&lt;br /&gt;
&lt;br /&gt;
- Tool: Fishing Rod&lt;br /&gt;
- Buff: +30% catch rate&lt;br /&gt;
- Commodity: Fish ($15)&lt;br /&gt;
- Upgrades: Longer line → Auto-bait&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
Blacksmith&lt;br /&gt;
&lt;br /&gt;
- Tool: Anvil&lt;br /&gt;
- Buff: +25% tool efficiency (speed/durability)&lt;br /&gt;
- Commodity: Metal Parts ($30)&lt;br /&gt;
- Upgrades: Faster forging → Higher quality tools&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
Alchemist&lt;br /&gt;
&lt;br /&gt;
- Tool: Alchemy Table&lt;br /&gt;
- Buff: +25% buff duration OR +20% stamina regen&lt;br /&gt;
- Commodity: Potions ($40)&lt;br /&gt;
- Upgrades: Faster brewing → Stronger potions&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
Builder&lt;br /&gt;
&lt;br /&gt;
- Tool: Hammer&lt;br /&gt;
- Buff: +30% build speed&lt;br /&gt;
- Commodity: Materials (Planks / Bricks) ($25)&lt;br /&gt;
- Upgrades: Faster building → Partial automation&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
Merchant&lt;br /&gt;
&lt;br /&gt;
- Tool: Trade Stall&lt;br /&gt;
- Buff: +25% sell price (temporary)&lt;br /&gt;
- Commodity: Trade Contracts ($50)&lt;br /&gt;
- Upgrades: Extra stall → Bulk trading&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
💎 Niche Professions&lt;br /&gt;
&lt;br /&gt;
Jeweler&lt;br /&gt;
&lt;br /&gt;
- Tool: Jewelry Bench&lt;br /&gt;
- Effect: Creates necklaces that influence NPC votes&lt;br /&gt;
- Scaling Cost: $50 → $100 → $200 → $400&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
Relic Hunter&lt;br /&gt;
&lt;br /&gt;
- Tool: Shovel / Magnifier&lt;br /&gt;
- Effect: Finds rare relics/artifacts&lt;br /&gt;
- Use: Strategic advantage / vote influence / trading&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
Artist / Decorator&lt;br /&gt;
&lt;br /&gt;
- Tool: Workbench&lt;br /&gt;
- Effect: +10–15% influence over 2–3 NPCs&lt;br /&gt;
- Scaling: Increasing cost per decoration&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
Train Operator&lt;br /&gt;
&lt;br /&gt;
- Tool: Ticket Station&lt;br /&gt;
- Effect: +20% travel efficiency / +5% transport bonus&lt;br /&gt;
- Scaling: Cost increases with usage&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
⚡ Buff System&lt;br /&gt;
&lt;br /&gt;
- Max Charges: 3&lt;br /&gt;
- Recharge: 1 charge per 60 seconds&lt;br /&gt;
&lt;br /&gt;
Pricing Tiers&lt;br /&gt;
&lt;br /&gt;
Tier| Price| Reputation Effect&lt;br /&gt;
Low| $60| +4 rep&lt;br /&gt;
Fair| $100| 0 rep&lt;br /&gt;
High| $160| -5 rep&lt;br /&gt;
&lt;br /&gt;
Rules&lt;br /&gt;
&lt;br /&gt;
- Buffs are player-to-player only&lt;br /&gt;
- Repeated sales to same player: diminishing reputation gain&lt;br /&gt;
  - 1st: 100%&lt;br /&gt;
  - 2nd: 50%&lt;br /&gt;
  - 3rd+: 0%&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
🛒 Market System&lt;br /&gt;
&lt;br /&gt;
1. Central Market (System)&lt;br /&gt;
&lt;br /&gt;
- Sells imported goods only&lt;br /&gt;
- Prices are very high (discourages reliance)&lt;br /&gt;
- Acts as a fallback supply source&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
- Wheat: $25 (imported vs $10 local)&lt;br /&gt;
- Fish: $30&lt;br /&gt;
- Ore: $35&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
2. Player Market Stalls&lt;br /&gt;
&lt;br /&gt;
- High upfront cost to purchase&lt;br /&gt;
- Cannot be placed in central market area&lt;br /&gt;
- Slightly worse returns than direct trade&lt;br /&gt;
&lt;br /&gt;
Values&lt;br /&gt;
&lt;br /&gt;
- Sell price: ~95% of base value&lt;br /&gt;
- Buy price: ~105% of base value&lt;br /&gt;
&lt;br /&gt;
Purpose&lt;br /&gt;
&lt;br /&gt;
- Passive selling&lt;br /&gt;
- Local economy hubs&lt;br /&gt;
- Backup income stream&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
3. Trader Stall (Special Role)&lt;br /&gt;
&lt;br /&gt;
Unlock&lt;br /&gt;
&lt;br /&gt;
- Requires Trader Badge&lt;br /&gt;
- Badge can be looted from player&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
Function&lt;br /&gt;
&lt;br /&gt;
- Located in prime market location&lt;br /&gt;
- Sells player-supplied goods (NOT imports)&lt;br /&gt;
- Acts as a centralised player marketplace&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
Pricing&lt;br /&gt;
&lt;br /&gt;
- Buy price: ~102% of base&lt;br /&gt;
- Sell return: ~98% of base&lt;br /&gt;
- Trader receives 5–10% cut per transaction&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
Trade-Offs&lt;br /&gt;
&lt;br /&gt;
Advantage| Disadvantage&lt;br /&gt;
Passive income| No active profession buff&lt;br /&gt;
Best location| Can be looted&lt;br /&gt;
Central control| Relies on player supply&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
Gameplay Impact&lt;br /&gt;
&lt;br /&gt;
- Encourages players to sell through trader&lt;br /&gt;
- Creates competition for trader role&lt;br /&gt;
- Introduces PvP / risk (badge theft)&lt;br /&gt;
- Reduces reliance on imports&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
🔄 Economy Flow&lt;br /&gt;
&lt;br /&gt;
Farmer → Wheat → Cooking / Trade&lt;br /&gt;
Stock Master → Animal Goods → Cooking / Alchemy&lt;br /&gt;
Miner → Ore → Blacksmith → Tools&lt;br /&gt;
Fisher → Fish → Cooking / Alchemy&lt;br /&gt;
Alchemist → Potions → Buff Sales&lt;br /&gt;
Builder → Materials → Structures&lt;br /&gt;
Merchant → Trade Boost → Economy&lt;br /&gt;
&lt;br /&gt;
Niche Professions:&lt;br /&gt;
&lt;br /&gt;
- Jeweler → Vote influence&lt;br /&gt;
- Relic Hunter → Rare items&lt;br /&gt;
- Artist → Multi-NPC influence&lt;br /&gt;
- Train Operator → Logistics bonus&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
🎯 Core Design Principles&lt;br /&gt;
&lt;br /&gt;
1. Local First Economy&lt;br /&gt;
&lt;br /&gt;
- Local goods are always cheaper than imports&lt;br /&gt;
- Players are rewarded for trading with each other&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
2. Meaningful Trade-Offs&lt;br /&gt;
&lt;br /&gt;
- Trader = passive income, no buffs&lt;br /&gt;
- Producers = active income, more effort&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
3. Player Interaction&lt;br /&gt;
&lt;br /&gt;
- Buffs require direct interaction&lt;br /&gt;
- Commodities encourage negotiation&lt;br /&gt;
- Trader role creates competition&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
4. Anti-Exploitation&lt;br /&gt;
&lt;br /&gt;
- Import prices prevent market abuse&lt;br /&gt;
- Diminishing returns on repeated buff sales&lt;br /&gt;
- Trader risk (lootable badge) prevents monopoly&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
✅ Summary&lt;br /&gt;
&lt;br /&gt;
This system creates:&lt;br /&gt;
&lt;br /&gt;
- A living player-driven economy&lt;br /&gt;
- Strong interdependence between professions&lt;br /&gt;
- Clear risk vs reward decisions&lt;br /&gt;
- Late-game strategic depth via niche roles&lt;br /&gt;
&lt;br /&gt;
---&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Main_Page&amp;diff=33</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Main_Page&amp;diff=33"/>
		<updated>2026-04-08T01:55:13Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: /* Working Title &amp;quot;Book&amp;quot; */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;MediaWiki has been installed.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
==Getting started==&lt;br /&gt;
&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
*[https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
{{Welcome}}&lt;br /&gt;
==Working Title &amp;quot;Book&amp;quot;==&lt;br /&gt;
&lt;br /&gt;
*[[Working Title &amp;quot;Book&amp;quot;]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Felix==&lt;br /&gt;
&lt;br /&gt;
*[[Words]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Fantasy sandbox game ==&lt;br /&gt;
&lt;br /&gt;
* [[Systems]]&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Template:Welcome&amp;diff=32</id>
		<title>Template:Welcome</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Template:Welcome&amp;diff=32"/>
		<updated>2024-04-05T07:54:39Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;blockquote&amp;gt;Hello! Welcome to this wiki.&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Main_Page&amp;diff=31</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Main_Page&amp;diff=31"/>
		<updated>2024-04-05T07:53:10Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;MediaWiki has been installed.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
==Getting started==&lt;br /&gt;
&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
*[https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
*[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
{{Welcome}}&lt;br /&gt;
==Working Title &amp;quot;Book&amp;quot;==&lt;br /&gt;
&lt;br /&gt;
*[[Working Title &amp;quot;Book&amp;quot;]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Felix==&lt;br /&gt;
&lt;br /&gt;
*[[Words]]&lt;br /&gt;
*&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Template:Welcome&amp;diff=30</id>
		<title>Template:Welcome</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Template:Welcome&amp;diff=30"/>
		<updated>2024-04-05T07:51:27Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: Created page with &amp;quot;Hello! Welcome to this wiki.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello! Welcome to this wiki.&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Words&amp;diff=27</id>
		<title>Words</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Words&amp;diff=27"/>
		<updated>2024-04-05T06:37:28Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Felix dialect syntax==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;...‎ this is a big quote thingo&lt;br /&gt;
i wonder what will happen&lt;br /&gt;
when i save it&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Words&amp;diff=26</id>
		<title>Words</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Words&amp;diff=26"/>
		<updated>2024-04-05T06:36:47Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Felix dialect syntax==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;...‎&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Template:Felixsays&amp;diff=25</id>
		<title>Template:Felixsays</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Template:Felixsays&amp;diff=25"/>
		<updated>2024-04-05T05:46:24Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: Created page with &amp;quot;Somthing&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Somthing&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Template:Quote&amp;diff=24</id>
		<title>Template:Quote</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Template:Quote&amp;diff=24"/>
		<updated>2024-04-05T05:41:40Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;blockquote class=&amp;quot;templatequote&amp;quot;&amp;gt;&amp;lt;div class=&amp;quot;Bug6200&amp;quot;&amp;gt;{{{text|{{{quote|{{{1|&amp;lt;noinclude&amp;gt;{{lorem ipsum}}&amp;lt;/noinclude&amp;gt;&amp;lt;includeonly&amp;gt;{{error|Error: No text given for quotation (or equals sign used in the actual argument to an unnamed parameter)}}&amp;lt;/includeonly&amp;gt;}}}}}}}}}&amp;lt;/div&amp;gt;{{#if:{{{sign|{{{cite|{{{2|&amp;lt;noinclude&amp;gt;TRUE&amp;lt;/noinclude&amp;gt;}}}}}}}}}&lt;br /&gt;
 |&amp;lt;div class=&amp;quot;templatequotecite&amp;quot;&amp;gt;&amp;amp;#8212;{{{sign|{{{cite|{{{2|&amp;lt;noinclude&amp;gt;[[Someone's full name|Someone]]&amp;lt;/noinclude&amp;gt;}}}}}}}}}{{#if:{{{source|{{{3|&amp;lt;noinclude&amp;gt;TRUE&amp;lt;/noinclude&amp;gt;}}}}}}&lt;br /&gt;
  |,&amp;amp;nbsp;&amp;lt;cite&amp;gt;{{{source|{{{3|&amp;lt;noinclude&amp;gt;Source&amp;lt;/noinclude&amp;gt;}}}}}}&amp;lt;/cite&amp;gt;&lt;br /&gt;
 }}&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&amp;lt;/blockquote&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;!-- Add cats and interwikis to the /doc subpage, not here! --&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Template:Quote&amp;diff=23</id>
		<title>Template:Quote</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Template:Quote&amp;diff=23"/>
		<updated>2024-04-05T05:16:14Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Template:Quote&amp;diff=22</id>
		<title>Template:Quote</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Template:Quote&amp;diff=22"/>
		<updated>2024-04-05T05:16:02Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{quote|phrase|person|source}}&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Template:Quote&amp;diff=21</id>
		<title>Template:Quote</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Template:Quote&amp;diff=21"/>
		<updated>2024-04-05T05:15:21Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: Created page with &amp;quot;{{quote|text=phrase|sign=person|source=source}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{quote|text=phrase|sign=person|source=source}}&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Words&amp;diff=17</id>
		<title>Words</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Words&amp;diff=17"/>
		<updated>2024-04-05T04:41:17Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: /* Felix dialect syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Felix dialect syntax==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&lt;br /&gt;
!Hit&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Words&amp;diff=16</id>
		<title>Words</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Words&amp;diff=16"/>
		<updated>2024-04-05T04:39:10Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Felix dialect syntax ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;blockquote&amp;gt;Wak&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Words&amp;diff=15</id>
		<title>Words</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Words&amp;diff=15"/>
		<updated>2024-04-05T04:38:04Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: Created page with &amp;quot;Felix dialect syntax&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Felix dialect syntax&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=MediaWiki:Sidebar&amp;diff=13</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=MediaWiki:Sidebar&amp;diff=13"/>
		<updated>2024-03-26T13:33:23Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
&lt;br /&gt;
*Book&lt;br /&gt;
** Working Title &amp;quot;Book&amp;quot;|Working Title &amp;quot;Book&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*Help&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** randompage-url|randompage&lt;br /&gt;
** helppage|help-mediawiki&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* SEARCH&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
* LANGUAGES&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=MediaWiki:Sidebar&amp;diff=12</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=MediaWiki:Sidebar&amp;diff=12"/>
		<updated>2024-03-26T13:30:43Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: Created page with &amp;quot; * navigation ** mainpage|mainpage-description ** Working Title &amp;quot;Book&amp;quot;|Working Title &amp;quot;Book&amp;quot; ** recentchanges-url|recentchanges ** randompage-url|randompage ** helppage|help-me...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
** Working Title &amp;quot;Book&amp;quot;|Working Title &amp;quot;Book&amp;quot;&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** randompage-url|randompage&lt;br /&gt;
** helppage|help-mediawiki&lt;br /&gt;
* SEARCH&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
* LANGUAGES&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Plot&amp;diff=8</id>
		<title>Plot</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Plot&amp;diff=8"/>
		<updated>2024-03-26T04:31:50Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: Created page with &amp;quot;the start the end&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;the start&lt;br /&gt;
the end&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Working_Title_%22Book%22&amp;diff=7</id>
		<title>Working Title &quot;Book&quot;</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Working_Title_%22Book%22&amp;diff=7"/>
		<updated>2024-03-26T04:31:37Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the home of a book&lt;br /&gt;
&lt;br /&gt;
== Parts ==&lt;br /&gt;
* [[Plot]]&lt;br /&gt;
* [[Characters]]&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Main_Page&amp;diff=6</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Main_Page&amp;diff=6"/>
		<updated>2024-03-26T04:28:34Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;MediaWiki has been installed.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
* Somthing else...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Working Title &amp;quot;Book&amp;quot; == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
* [[Working Title &amp;quot;Book&amp;quot;]]&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Main_Page&amp;diff=5</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Main_Page&amp;diff=5"/>
		<updated>2024-03-26T04:27:54Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;MediaWiki has been installed.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
* Somthing else...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Working Title &amp;quot;Book&amp;quot; == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
*&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Main_Page&amp;diff=4</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Main_Page&amp;diff=4"/>
		<updated>2024-03-26T04:24:04Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;MediaWiki has been installed.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
* Somthing else...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Working Title &amp;quot;Book&amp;quot; == &amp;lt;!--T:2--&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Working_Title_%22Book%22&amp;diff=3</id>
		<title>Working Title &quot;Book&quot;</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Working_Title_%22Book%22&amp;diff=3"/>
		<updated>2024-03-26T04:20:00Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: Created page with &amp;quot;This is the home of a book&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the home of a book&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
	<entry>
		<id>https://home.stridr.biz/index.php?title=Main_Page&amp;diff=2</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://home.stridr.biz/index.php?title=Main_Page&amp;diff=2"/>
		<updated>2024-03-26T04:00:40Z</updated>

		<summary type="html">&lt;p&gt;Nathans1987: /* Getting started */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;MediaWiki has been installed.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
* Somthing else...&lt;/div&gt;</summary>
		<author><name>Nathans1987</name></author>
		
	</entry>
</feed>