<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://oblivion.azuriteforest.net/mediawiki/index.php?action=history&amp;feed=atom&amp;title=Oblivion_talk%3AGlitch_Hunting</id>
	<title>Oblivion talk:Glitch Hunting - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://oblivion.azuriteforest.net/mediawiki/index.php?action=history&amp;feed=atom&amp;title=Oblivion_talk%3AGlitch_Hunting"/>
	<link rel="alternate" type="text/html" href="https://oblivion.azuriteforest.net/mediawiki/index.php?title=Oblivion_talk:Glitch_Hunting&amp;action=history"/>
	<updated>2026-06-16T14:11:19Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>https://oblivion.azuriteforest.net/mediawiki/index.php?title=Oblivion_talk:Glitch_Hunting&amp;diff=2773&amp;oldid=prev</id>
		<title>&gt;MeemawHustlin: Created page with &quot;This discussion page is reserved to act as an archive of glitch hunting projects that have been resolved, either through finding a direct solution or a workaround to the problem proposed.  ==Fixing the Wait Timer Bug==  &#039;&#039;&#039;This has not been solved, but a separate workaround has been achieved.&#039;&#039;&#039; &#039;&#039;See here: Class Reset&#039;&#039;  When you skip the tutorial exit via load warping, you gain access to the use of the Class Reset Glitch but lose the ability to...&quot;</title>
		<link rel="alternate" type="text/html" href="https://oblivion.azuriteforest.net/mediawiki/index.php?title=Oblivion_talk:Glitch_Hunting&amp;diff=2773&amp;oldid=prev"/>
		<updated>2022-01-25T02:39:06Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;This discussion page is reserved to act as an archive of glitch hunting projects that have been resolved, either through finding a direct solution or a workaround to the problem proposed.  ==Fixing the Wait Timer Bug==  &amp;#039;&amp;#039;&amp;#039;This has not been solved, but a separate workaround has been achieved.&amp;#039;&amp;#039;&amp;#039; &amp;#039;&amp;#039;See here: &lt;a href=&quot;/wiki/Oblivion:Class_Reset&quot; title=&quot;Oblivion:Class Reset&quot;&gt;Class Reset&lt;/a&gt;&amp;#039;&amp;#039;  When you skip the tutorial exit via load warping, you gain access to the use of the Class Reset Glitch but lose the ability to...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;This discussion page is reserved to act as an archive of glitch hunting projects that have been resolved, either through finding a direct solution or a workaround to the problem proposed.&lt;br /&gt;
&lt;br /&gt;
==Fixing the Wait Timer Bug==&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;This has not been solved, but a separate workaround has been achieved.&amp;#039;&amp;#039;&amp;#039; &amp;#039;&amp;#039;See here: [[Oblivion:Class Reset|Class Reset]]&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
When you skip the tutorial exit via load warping, you gain access to the use of the Class Reset Glitch but lose the ability to manipulate NPCs with the wait timer. This results in having to use an excessive amount of setups to spawn NPCs in the right locations, incurring a significant time loss compared to how much time Class Resetting could potentially save.&lt;br /&gt;
&lt;br /&gt;
From analyzing the Construction Set, here is what we know:&lt;br /&gt;
&lt;br /&gt;
* Exiting the sewer triggers the door’s &amp;lt;code&amp;gt;CGSewerExitScript&amp;lt;/code&amp;gt; script which calls &amp;lt;code&amp;gt;setstage MQ01 88&amp;lt;/code&amp;gt;. This quest’s stage 88 calls a script that includes &amp;lt;code&amp;gt;setinchargen 0&amp;lt;/code&amp;gt;. We have confirmed that this command is what fixes the wait timer bug by entering it as a console command on a “broken” save file and seeing that the save file is now able to wait to move NPCs again.&lt;br /&gt;
** &amp;lt;code&amp;gt;setinchargen 0&amp;lt;/code&amp;gt; appears to not be present in any other scripts in the game, with the only other &amp;lt;code&amp;gt;setinchargen&amp;lt;/code&amp;gt; being it set to &amp;lt;code&amp;gt;1&amp;lt;/code&amp;gt; at the very start of the game.&lt;br /&gt;
* No variation of &amp;lt;code&amp;gt;setstage MQ01 88&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;set MQ01.stage to 88&amp;lt;/code&amp;gt; is anywhere else in scripts. &lt;br /&gt;
* Manually console commanding &amp;lt;code&amp;gt;setinchargen 0&amp;lt;/code&amp;gt; does not prevent the player from activating the sewer exit popup. In the &amp;lt;code&amp;gt;CGSewerExitScript&amp;lt;/code&amp;gt; that calls all of this, the popup is set to appear if &amp;lt;code&amp;gt;IsActionRef player == 1 &amp;amp;&amp;amp; getstagedone MQ01 88 == 0&amp;lt;/code&amp;gt; meaning that if we could sequence break the tutorial quest to be below stage 88 somehow after exiting we could make the popup appear a second time. &lt;br /&gt;
** Attempting to use console commands to directly alter a quest stage to be lower than its current stage does not work. It seems this isn’t possible.&lt;br /&gt;
* The purpose of all of this is to call &amp;lt;code&amp;gt;showclassmenu&amp;lt;/code&amp;gt; so if we can find a way to do that outside of the tutorial then we&amp;#039;d have more options. However, this command only appears twice in the game, triggered by Baurus and by the sewer exit.&lt;br /&gt;
* The sewer exit actually still checks for a button input from a popup regardless of if it passes the check to display the popup in the first place. This could potentially mean we could inject a different button value that matches the value we need for it to run &amp;lt;code&amp;gt;showclassmenu&amp;lt;/code&amp;gt;. The scope of the &amp;lt;code&amp;gt;getbuttonpressed&amp;lt;/code&amp;gt; function may make this impossible.&lt;br /&gt;
** According to the Oghma script and Meridia Shrine script, we have two options for doing this:&lt;br /&gt;
**# Injecting the “Path of Spirits” from Oghma Infinium, which gives us a &amp;lt;code&amp;gt;getbuttonpressed&amp;lt;/code&amp;gt; value of &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt;, matching the value needed for &amp;lt;code&amp;gt;showclassmenu&amp;lt;/code&amp;gt;.&lt;br /&gt;
**# Choosing the Mort Flesh offering at Meridia’s Shrine when we have bonemeal, ectoplasm, and mort flesh in our inventory for the same return value.&lt;br /&gt;
** Trying various combinations of inputs, especially ones related to the [https://youtu.be/Xd2mShNeXpc Gold Dropping Glitch] and Load Warping, have been tested but with no success currently.&lt;/div&gt;</summary>
		<author><name>&gt;MeemawHustlin</name></author>
	</entry>
</feed>