-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscripts.html
More file actions
69 lines (59 loc) · 2.83 KB
/
scripts.html
File metadata and controls
69 lines (59 loc) · 2.83 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scripts | UltimaWorks Studio
</title>
<link
href="https://fonts.googleapis.com/css2?family=MedievalSharp&family=Spectral:ital,wght@0,400;0,700;1,400&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<div class="gump-container">
<div class="parchment-surface">
<header>
<img class="main-logo" src="assets/UltimaWorksLogo1.png" alt="UltimaWorks Studio logo" title="UltimaWorks Studio logo">
<h1 class="uo-title">UltimaWorks</h1>
<p class="uo-subtitle">Scripts, Automation & Utility Releases</p>
<nav class="uo-nav">
<a href="index.html" class="gump-btn">Home</a>
<a href="art.html" class="gump-btn">Art Releases</a>
<a href="scripts.html" class="gump-btn active">Scripts & Python</a>
<a href="https://github.com/UltimaWorks" class="gump-btn">GitHub</a>
</nav>
</header>
<main>
<section class="content-block">
<h2>Script Releases</h2>
<script src="assets/releases.inline.js"></script>
<script src="assets/modal.js"></script>
<div class="release-list">
<div class="release-item">
<span class="tag">Python</span>
<h3>Python Utility Releases</h3>
<p>Advanced scripting for client interaction and data parsing. Tools include packagers,
exporters, and client helpers designed for automation workflows.</p>
</div>
<div class="release-item">
<span class="tag">Server</span>
<h3>Server-Side (C#) Releases</h3>
<p>Custom systems for ServUO and RunUO based emulators, including improved login
handlers and item management utilities.</p>
</div>
</div>
</section>
</main>
<footer>
<div class="divider-icon">✦ ✧ ✦</div>
<p>© 2025 UltimaWorks Studio - Created by JBob. All Britannia rights reserved.</p>
</footer>
</div>
</div>
</body>
</html>