Mod Index and guide

Talk about the mods you'd like to see in Daggerfall Unity. Give mod creators some ideas!
User avatar
King of Worms
Posts: 4753
Joined: Mon Oct 17, 2016 11:18 pm
Location: Scourg Barrow (CZ)
Contact:

Re: Mod Index and guide

Post by King of Worms »

Filled in the DREAM mod to start it up...

User avatar
jayhova
Posts: 924
Joined: Wed Jul 19, 2017 7:54 pm
Contact:

Re: Mod Index and guide

Post by jayhova »

King of Worms wrote: Tue Jul 30, 2019 11:26 pm Filled in the DREAM mod to start it up...
Really great job!
43077258-cartoon-guy-thumbs-up-character-vector-illustration[1].jpg
43077258-cartoon-guy-thumbs-up-character-vector-illustration[1].jpg (106.79 KiB) Viewed 4657 times
Last edited by jayhova on Wed Jul 31, 2019 6:55 pm, edited 1 time in total.
Remember always 'What would Julian Do?'.

User avatar
Hazelnut
Posts: 3016
Joined: Sat Aug 26, 2017 2:46 pm
Contact:

Re: Mod Index and guide

Post by Hazelnut »

Do you need me to do this Jayhova? I'm really darn busy at the moment and all my mod info is detailed here on the forums.
See my mod code for examples of how to change various aspects of DFU: https://github.com/ajrb/dfunity-mods

User avatar
King of Worms
Posts: 4753
Joined: Mon Oct 17, 2016 11:18 pm
Location: Scourg Barrow (CZ)
Contact:

Re: Mod Index and guide

Post by King of Worms »

jayhova wrote: Wed Jul 31, 2019 4:28 pm
King of Worms wrote: Tue Jul 30, 2019 11:26 pm Filled in the DREAM mod to start it up...
Really great job!
Spoiler!
43077258-cartoon-guy-thumbs-up-character-vector-illustration[1].jpg
Cant see the spoiler unfortunatelly ;)

User avatar
jayhova
Posts: 924
Joined: Wed Jul 19, 2017 7:54 pm
Contact:

Re: Mod Index and guide

Post by jayhova »

Looks fine when I get rid of the spoiler tags
head-scratch[1].jpg
head-scratch[1].jpg (27.87 KiB) Viewed 4640 times
Remember always 'What would Julian Do?'.

User avatar
jayhova
Posts: 924
Joined: Wed Jul 19, 2017 7:54 pm
Contact:

Re: Mod Index and guide

Post by jayhova »

For those of you interested, I have placed a published version on an actual web page. I'd like to figure out how to correctly center the DIV in the viewport. Any of you CSS gurus have the answer let me know. If you are interested in expanding this and are a developer let me know. I'm eventually going to place a background on this to make it a bit nicer. Feel free to give feed back.
Remember always 'What would Julian Do?'.

User avatar
jayhova
Posts: 924
Joined: Wed Jul 19, 2017 7:54 pm
Contact:

Re: Mod Index and guide

Post by jayhova »

Update!:
I have worked a bit more on getting the page to look better. I fixed a problem with the doc where everything was in a table. I've been fighting the CSS to get this properly centered but it still looks wonky. This page should be around for at least the next 3 years. The link below is also on the first post. Clicking on a mod in the list takes you to the entry for that mod.

The current implementation of this is live

Again, right now I am going to be testing with a few mod developers and getting some feedback. The goal is to provide a comprehensive list of mods to help users select ones that seem the most interesting. I am looking for the sweet spot between brief and informative. Feel free to provide feedback. You may either post in this thread or DM me. If you are willing to write a mod description or eight please message me.

Here is the original google doc
https://docs.google.com/document/d/e/2P ... ahEfpE/pub
Remember always 'What would Julian Do?'.

User avatar
King of Worms
Posts: 4753
Joined: Mon Oct 17, 2016 11:18 pm
Location: Scourg Barrow (CZ)
Contact:

Re: Mod Index and guide

Post by King of Worms »

About the mods listed there
I - quite obviously - think, that all dream recomended mods should be there.
They are really good ;)

User avatar
jayhova
Posts: 924
Joined: Wed Jul 19, 2017 7:54 pm
Contact:

Re: Mod Index and guide

Post by jayhova »

I'd like all mods in the featured mods to be there. Feel free to add or edit any mod you like. I'd like the actual mod authors to edit their own entries but it is by no means necessary. An author can always change entries. Of course I'd like people other than me to be able to add entries. Until someone else reads the directions and adds an entry I have no idea whether the directions need to be altered. There are lots of people I have not directly contacted, so if you are reading this and want to help expand this document send me a message.
Remember always 'What would Julian Do?'.

User avatar
jayhova
Posts: 924
Joined: Wed Jul 19, 2017 7:54 pm
Contact:

Re: Mod Index and guide

Post by jayhova »

Okay so all the mods currently in the featured mods forum have an entry in the guide. The index fits on a single page. All that is left is to get people to add descriptions, links, etc. The link to the webpage is underlair.com/mods.html .

Below is the HTML /CSS I used to display the doc. you can put it up anywhere.

Code: Select all

<!DOCTYPE html>
<html lang="en">
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="viewport" content="width=device-width" />
	<title>Mods for DFU Quick Guide</title>
	
	<style type="text/css">html, body { 
    background-image: url(https://cdn.shortpixel.ai/client/q_glossy,ret_img/https://www.underlair.com/wp-content/uploads/2017/04/nature-france-rocks-caves-compressed.jpg);
    background-position: left top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: green;
    overflow: hidden;
    height:100%;
    text-align: center
}

.iframe-container {
    display: inline-block;
    overflow: hidden;
    position: relative;
    clear: both;
    margin: 0 auto;
    height: 100%;
    // border: 3px solid white;
}
 
.iframe-container iframe {


    display: block;
    height: 100%;
    width: 830px;
//  border: 3px solid #73AD21;
}
	</style>
</head>
<body>
<div class="iframe-container"><iframe frameborder="0" scrolling="yes" src="https://docs.google.com/document/d/e/2PACX-1vS2JGtHtBKCW69b1cy-9Cg_XVNg3a-ydB2a0pUZ0rbPIny2T-xKw5DAJJsdm4_apqQYbOQUDYahEfpE/pub?embedded=true"></iframe></div>
</body>
</html>
Remember always 'What would Julian Do?'.

Post Reply