<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.pmdo.pmdcollab.org/wiki/index.php?action=history&amp;feed=atom&amp;title=Mod%3ANebula%27s_Mission_Board%2F_Job_boards</id>
	<title>Mod:Nebula&#039;s Mission Board/ Job boards - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.pmdo.pmdcollab.org/wiki/index.php?action=history&amp;feed=atom&amp;title=Mod%3ANebula%27s_Mission_Board%2F_Job_boards"/>
	<link rel="alternate" type="text/html" href="https://wiki.pmdo.pmdcollab.org/wiki/index.php?title=Mod:Nebula%27s_Mission_Board/_Job_boards&amp;action=history"/>
	<updated>2026-07-31T21:35:39Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>https://wiki.pmdo.pmdcollab.org/wiki/index.php?title=Mod:Nebula%27s_Mission_Board/_Job_boards&amp;diff=2811&amp;oldid=prev</id>
		<title>MistressNebula: MistressNebula moved page User:MistressNebula/MissionGen: Job boards to Mod:Nebula&#039;s Mission Board/ Job boards: Move to Mod namespace</title>
		<link rel="alternate" type="text/html" href="https://wiki.pmdo.pmdcollab.org/wiki/index.php?title=Mod:Nebula%27s_Mission_Board/_Job_boards&amp;diff=2811&amp;oldid=prev"/>
		<updated>2025-07-29T17:59:50Z</updated>

		<summary type="html">&lt;p&gt;MistressNebula moved page &lt;a href=&quot;/User:MistressNebula/MissionGen:_Job_boards&quot; class=&quot;mw-redirect&quot; title=&quot;User:MistressNebula/MissionGen: Job boards&quot;&gt;User:MistressNebula/MissionGen: Job boards&lt;/a&gt; to &lt;a href=&quot;/Mod:Nebula%27s_Mission_Board/_Job_boards&quot; title=&quot;Mod:Nebula&amp;#039;s Mission Board/ Job boards&quot;&gt;Mod:Nebula&amp;#039;s Mission Board/ Job boards&lt;/a&gt;: Move to Mod namespace&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 17:59, 29 July 2025&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>MistressNebula</name></author>
	</entry>
	<entry>
		<id>https://wiki.pmdo.pmdcollab.org/wiki/index.php?title=Mod:Nebula%27s_Mission_Board/_Job_boards&amp;diff=2772&amp;oldid=prev</id>
		<title>MistressNebula: Make page</title>
		<link rel="alternate" type="text/html" href="https://wiki.pmdo.pmdcollab.org/wiki/index.php?title=Mod:Nebula%27s_Mission_Board/_Job_boards&amp;diff=2772&amp;oldid=prev"/>
		<updated>2025-07-27T13:26:07Z</updated>

		<summary type="html">&lt;p&gt;Make page&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;small&amp;gt;This guide expects you to have completed the setup guides.&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Mission Generation Library is equipped with functions to make interacting with jobs as easy as possible, both for modders and for players. This includes a full set of menus that allow the player to interact with jobs and job boards, and a group of functions made to effortlessly and safely open those menus.&lt;br /&gt;
&lt;br /&gt;
The first thing you need to do is to add an object to the ground map. It might be a mailbox, an actual mission board or even an NPC, it makes no difference. You will then have to add this code somewhere in the interact function:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MissionGen:BoardInteract(&amp;lt;board_id&amp;gt;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This will call a menu that allows the player to interact the board whose id corresponds to the given string, or to check their taken jobs. If you want them to skip directly to the board without displaying this first menu, call the following function instead:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MissionGen:OpenBoardMenu(&amp;lt;board_id&amp;gt;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
There is also the option of displaying a single job, like the NPCs in the Spinda Cafe do. All you have to do is call this function:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MissionGen:ShowSingularJob(&amp;lt;board_id&amp;gt;, [index])&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This is best used in conjunction with boards with a size of 1, which would then allow you to omit the index altogether.&lt;br /&gt;
&lt;br /&gt;
As a bonus, here&amp;#039;s how to display the taken list by itself. If default is omitted, slot 1 will be selected:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MissionGen:OpenTakenMenu([default])&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And that&amp;#039;s it! When it comes to it, displaying job boards is really simple! Just remember that if a board is empty, its menu will not be shown at all, so remember to make sure the board has something in it by using these functions:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MissionGen:IsBoardEmpty(&amp;lt;board_id&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
MissionGen:IsTakenListEmpty()&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>MistressNebula</name></author>
	</entry>
</feed>