37637598 on 1/5/2007 at 05:48
I've been thinking and... there used to be so much traffic for the morrowind construction set, but it all kind of died off... we used to discuss and make mods, no more sadly... i think we should all get back into it... i had a grand ol' time makin stupid little mods. Anyone up for it???
Joben on 3/5/2007 at 06:06
I'm not averse to the idea...i've started poking around the costruction set a tiny bit, but havent tried changing anything yet. ...i need some tutorials.
Joben on 4/5/2007 at 03:48
Do you know scripting?
I'm playing with Nessesaties Of Morrowind and Morrowind Crafting, and want to make an item which will simulate the gathering of rainwater.
I don't think my Ranger who makes his own arrows and hunts/cooks his own food should have to go back into town to use the well :)
Here is a script, WHICH IS AT BEST INCOMPLETE...This is the first script i've tried to write, and i just want to show the concept im trying to do. It would be attached to an object you can drop from your inventory.
Code:
Begin rain_catcher
Short isfull
;variable used as a conditional to determine if it can be used to fill a bottle.
If ( GetCurrentWeather == 4 )
Set isfull to 1
; bare bones for now, if it is raining, it is full.
ElseIf ( Get CurrentWeather == 5 )
;The same for thunderstorms
Set isfull to 1
endif
If ( isfull == 1 )
If ( OnActivate == 1 )
;[stuff to make it behave like a NOM_Well and fill a container here]
set isfull to 0 ;'empties' the container after one use.
endif
endif
end
Summary: An object that checks to see if it is raining, if true, it may be used, once, to fill a water receptacle
Joben on 21/5/2007 at 21:09
If you're like me, and i know i am, you play with NOM and Morrowind Crafting, while doing so, you may find it annoying that you can't cook the MC animal meats over the NOM fire.
I added to the NOM grilling script so you can now cook Raw Guar, Raw Cliff Racer, Raw kagouti and produce the standard NOM_food_meat_grilled2 item. I also altered the frying script so you use Slaughterfish Fillet in the frying pan to produce the NOM fish recipes.
...i may keep going with this and see if i can fix the fact that each mod brings it's own incompatable versions of stuff like sugar and onions :rolleyes: