Morrowind Mod talk:Modding

The UESPWiki – Your source for The Elder Scrolls since 1995
Jump to: navigation, search

Here's where we chat/argue about what goes on the page...

Style and Content[edit]

This should be an index page listing links to other articles.

  • Don't put index pages under this unless necessary. (E.g., the script function listings.)
  • Note that some sections are alphabetically ordered, others are logically ordered (from basic to more complex).

Variables List[edit]

(moved from the article)

does a list of all internal variables exist (MenuMode, OnPCEquip, etc.)? 84.144.13.85 05:13, 19 November 2008 (EST)

I'm not sure, but if so it would be at CS Wiki. --Wrye 01:14, 20 November 2008 (EST)

Joinable faction[edit]

I am wrorking on a mod and I could use some help...

I am trying to create a joinable faction but I need to fix the join dialog so it works, but I just can't fix it...

What should I do to make the dialog work? -Goblin lair 08:33, 19 April 2009

Allright... to make this a more clear question. I need to know how to make the dialog appear in the game. - Goblin lair 12:45, 19 April 2009

This isn't the place for "how to mod" questions. Visit the official bethsoft forums, look for Morrowind Modding section and ask for help there. --Wrye 20:15, 20 April 2009 (EDT)
Ok, thanks. -Goblin lair 10:24, 21 April 2009

xbox mods?[edit]

hi!i was just wondering if you can get mods for xbox morrowind?--GUM!!! 23:34, 12 April 2010 (UTC)

No, not available on consoles ever.--Corevette789 23:37, 12 April 2010 (UTC)
oh really?because i have other games that are modded?or are you thinking about the xbox 360?--GUM!!! 00:32, 15 April 2010 (UTC)
The only "mods" available for Morrowind on Xbox are the two expansions included with the GotY version, "Bloodmoon" and "Tribunal". --GKtalk2me 01:23, 15 April 2010 (UTC)

oh...that sucks...--GUM!!! 12:35, 15 April 2010 (UTC)

Will this script kill the pc if endurance is lower then 100?[edit]

Begin Crushing_Weight 

OnPCEquip
if ( OnPCEquip == 1 )
set OnPCEquip to 0
endif

; Checks for Crushing Weight

if ( player->GetEndurance < 100 )
Player->Sethealth 0
messageBox, "You Have been crushed by Crushing Weight"

; Kills player if endurance is less then 100

End