-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
78 lines (71 loc) · 3.24 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<html lang="en-US">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-123126773-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-123126773-1');
</script>
<meta content="text/html;" charset="UTF-8" />
<title>Stardew Valley multiplayer host swapper</title>
<style>
textarea {
width: 80%;
height: 100px ;
}
input {
margin: 5px;
}
.characters {
margin-bottom: 10px;
}
</style>
<script type="text/javascript" src="js/swap.js">
</script>
</head>
<body>
<div>
<h1>Stardew Valley multiplayer host swapper</h1>
<p>Want to swap who's a farmhand and who's the host? This handy tool performs the changes described in this guide for you: <a href="https://www.reddit.com/r/StardewValley/comments/8i5z1j/guide_how_to_change_hosts_of_a_multiplayer_save/">www.reddit.com/r/StardewValley/comments/8i5z1j/guide_how_to_change_hosts_of_a_multiplayer_save</a>
<p><b>Always keep back-ups!</b> Modifying save files can break your game or be incompatible with updates. Use at your own risk.</p>
</div>
<div>
<br/>
<br/>
<div>
<h2>Paste the contents of the file <span style="font-family:monospace">HostCharacterName_123456789</span> here.</h2>
<p>See <a href="https://stardewvalleywiki.com/Saves">https://stardewvalleywiki.com/Saves</a> for where to find your save file. Once it's parsed, option buttons will appear. (It can take a minute.)</p>
</div>
<p><textarea id="input" oninput="setCharacters(event)"></textarea></p>
<div id="instructions">
<p>Results will appear here.</p>
</div>
<p style="margin-bottom: 0px;-webkit-margin-after: 0px;"><textarea id="output"></textarea></p>
<input type="submit" value="Copy to clipboard" onclick="copy()">
<br />
<p>Known issues:
<ul>
<li>Host shown on load screen stays original host when first loading</li>
<li>Different people may see different amounts of things donated to the community center (I see bundle as complete but you don't). Have the host place donations to be safe.</li>
<li>The TV shows different luck levels for different players (it used to always match)</li>
<li>New host may get outdated mail</li>
</ul>
</p>
<p>Issues fixed (9/23/2018):
<ul>
<li><strike>Willy's shop may act like it was never unlocked</strike></li>
</ul>
</p>
<p>Issues fixed (7/31/2018):
<ul>
<li><strike>New host repeats host-only events, like picking mushrooms or bats</strike></li>
<li><strike>Messes up which house is upgraded</strike></li>
<li><strike>Community center and Jojamart events may act as if they didn't happen.</strike></li>
<li><strike>Community improvements like minecarts may stop working.</strike></li>
</ul>
</p>
</div>
</body>
</html>