Lovetomod Posted March 13, 2011 Share Posted March 13, 2011 (edited) Right i was thinking about creating a player home (Due to boredom) its nothing fancy but what i need help it a script for a water purifyer, an item sorter and a furnace (burn metal items into scrap metal) Can anybody help me? or send me a link to a tutorial? Edited March 13, 2011 by Lovetomod Link to comment Share on other sites More sharing options...
Lovetomod Posted March 13, 2011 Author Share Posted March 13, 2011 I put this here due to there not being a tutorial section or anything along those lines. Link to comment Share on other sites More sharing options...
davidlallen Posted March 13, 2011 Share Posted March 13, 2011 Please see the geck tutorials at geck.bethsoft.com, which lead you through the steps you are interested in. Link to comment Share on other sites More sharing options...
WorldWarZ Posted March 13, 2011 Share Posted March 13, 2011 I'd try youtube video's Link to comment Share on other sites More sharing options...
viking99 Posted March 14, 2011 Share Posted March 14, 2011 (edited) you should do the fallout 3 geck tutorials to learn thebasics. for the waterpurifier script a simple player.removeItem xxx 1 player.addItem xxx 1 would do just fine. a sample script: scn VaterpurifierSCRIPT begin onActivate player if player.getItemCount xxx == 1player.removeItem xxx 1player.addItem xxx 1 endif end the script removes 1 dirty water and adds 1 purified water replace the xxx with the id for clean and purified water. the function getItemCount checks if the player has a bottle of dirty water. you should replace the == after getItemCount with bigger than and equal to so it works if you have more than one dirty water bottle. (using my phone and cannot type that.) attach the script to an activator and you are all set. Edited March 14, 2011 by viking99 Link to comment Share on other sites More sharing options...
Recommended Posts