Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
http://www.gamesas.com/how-make-summon-spell-t16437.html
dude, there is 1 mod i really really want
i want to mod the inventory UI to add Ingredients and books to their own pages
Like how we have All - Weapons - Apparell - Magic - Misc
there has to be a way to split books and ingredients off misc into their own box
i have done it
begin SUMMONNWAH
short nwah
if ( MenuMode == 1 )
Return
endif
if ( OnActivate == 0 )
Return
endif
PlaySound3D "bell1"
Set nwah to Random 28
if ( nwah == 0 )
PlaceAtPC "You_Nwah_001_Male" 1 128 1
endif
elseif ( nwah == 1 )
PlaceAtPC "You_Nwah_001_Female" 1 128 2
endif
elseif ( nwah == 2 )
PlaceAtPC "You_Nwah_002_Female" 1 128 2
endif
elseif ( nwah == 3 )
PlaceAtPC "You_Nwah_003_Female" 1 128 2
endif
elseif ( nwah == 4 )
PlaceAtPC "You_Nwah_002_Male" 1 128 1
endif
elseif ( nwah == 5 )
PlaceAtPC "You_Nwah_003_Male" 1 128 1
endif
elseif ( nwah == 6 )
PlaceAtPC "You_Nwah_004_Male" 1 128 1
endif
elseif ( nwah == 7 )
PlaceAtPC "You_Nwah_005_Male" 1 128 1
endif
elseif ( nwah == 8 )
PlaceAtPC "You_Nwah_006_Male" 1 128 1
endif
elseif ( nwah == 9 )
PlaceAtPC "You_Nwah_004_Female" 1 128 2
endif
elseif ( nwah == 10 )
PlaceAtPC "You_Nwah_005_Female" 1 128 2
endif
elseif ( nwah == 11 )
PlaceAtPC "You_Nwah_006_Female" 1 128 2
endif
elseif ( nwah == 12 )
PlaceAtPC "You_Nwah_007_Female" 1 128 2
endif
elseif ( nwah == 13 )
PlaceAtPC "You_Nwah_008_Female" 1 128 2
endif
elseif ( nwah == 14 )
PlaceAtPC "You_Nwah_007_Male" 1 128 1
endif
elseif ( nwah == 15 )
PlaceAtPC "You_Nwah_008_Male" 1 128 1
endif
elseif ( nwah == 16 )
PlaceAtPC "You_Nwah_009_Male" 1 128 1
endif
elseif ( nwah == 17)
PlaceAtPC "You_Nwah_010_Male" 1 128 1
endif
elseif ( nwah == 18 )
PlaceAtPC "You_Nwah_011_Male" 1 128 1
endif
elseif ( nwah == 19 )
PlaceAtPC "You_Nwah_012_Male" 1 128 1
endif
elseif ( nwah == 20 )
PlaceAtPC "You_Nwah_009_Female" 1 128 2
endif
elseif ( nwah == 21 )
PlaceAtPC "You_Nwah_010_Female" 1 128 2
endif
elseif ( nwah == 22 )
PlaceAtPC "You_Nwah_011_Female" 1 128 2
endif
elseif ( nwah == 23 )
PlaceAtPC "You_Nwah_013_Male" 1 128 1
endif
elseif ( nwah >= 24 )
Return
endif
End
UI is beyond me, but check out the UI Epansion mod to see how they have done it.
https://www.nexusmods.com/morrowind/mods/46071
Categories they have are: Weapons, Apparel, Consumables, Ingredients, Tools, Other. You can also search by name and filter.
Its the UI I use. A great QoL mod.
i got into OpenMw, and it actually comes with a search filter
--https://openmw.org/downloads/
and textures
https://www.nexusmods.com/morrowind/mods/46221
https://www.nexusmods.com/morrowind/mods/50847/
i made about 4 scripts
1 for the bell
1 for the scrib mites
1 for creature random stats/scaling
and 1 for enemy nolore scaling and nwahs
You might like https://www.nexusmods.com/morrowind/mods/46071 -- it's one of my favorite mods. There are a LOT of really great mods over at Nexus.
It still lumps books in with "other," but it's pretty darned easy to see a book vs. a bowl. It also splits out weapons, armor/clothing, tools/apparatus, ingredients, potions/consumables, etc. And it has a search function so if you're carrying 50 different ingredients, you can type "hound meat" or whatever into the search box.
been messing with my own abomination of a script to add scaling to enemies
randomly adds bonus health, size, agi spd luck wil str based on your level
i was wondering if i could make it global
then every single enemy in the game would gain its buff
The second link is a collection of a lot of script examples, you might find something of use in there.
https://en.uesp.net/wiki/Morrowind_Mod:Scripting_Basics
https://en.uesp.net/wiki/Morrowind_Mod:Morrowind_Script_Library
just been screwing around with scripts, looking at old scripts in the game
learning a bit by bit
the real thing is dialogue
i wanted to figure out dialogue then + scripts to make quests
add random loot, scaled on level or choices
bethesda really never went the player choice direction in most games
add loot based on your preffered weapon, stats, level
some things in oblivion and skyrim kind of had it, but the devs never tried
i just feel like they put out a vanilla experience and we add sprinkles
i dont even know the full extent of the scripting
but the more you learn the more you can do
had morrowind for like 20 years, i feel ancient now
its still more interesting because they removed so much in oblivion and skyrim
If you are looking to do quests, then try this basic tutorial, it should show a lot of what you need to do.
http://www.themcnews.com/Quest_tut.pdf