Jump to content

cpruitt78

Members
  • Posts

    13
  • Joined

  • Last visited

Everything posted by cpruitt78

  1. no, unfortunately not i have tried this, it is not the mod i am looking for...... I'm not sure if the mod you're looking for is in this compilation, but it's got an excellent Drow race that I myself use, and it showed up when I searched for yours, so.... Xenius' Race Compilation
  2. The room is part of Tona's Mod Store. Enter the store, go downstairs, through the door at the other end and in the last room there are three portals to the left. Closest to the door is the starry night sky-type room, the middle one is a black room and the last is the white room seen in the image you linked to. Can't help you with the house, unfortunately. I'm after it myself. Love Suite Room KABAMM! Here on Nexus too :D You, sir, are a legend. Totally lost about your post I am looking for a race mod known as DROW RACES OF FAERUN don't know what your reply is exactly to.
  3. Hello i cannot find the Drow Races of Faerun mod anywhere I think it has come down to someone sharing it back to the community it appears that the only site that had it was tesnexus and it's not there anymore at all. I am looking for this mod because i lost it awhile back reinstalled oblivion and am dying to use it again. Thanks in advance for any help you can provide, Chris Pruitt
  4. I have searched all over the internet for this mod with no luck, I pretty much believe that it's come down to some who already has this mod sharing it or re uploading it to tesnexus apprently they have lost it. I can find several mods that require this mod, just cant find the mod itself, hopefully you guys can.
  5. I am trying to get wyre bash to work with python 3.1 , however whenever i try to load i get syntax error line 118 print 'already started' how do i fix it? Here is a copy of my python run wyre bash # GPL License and Copyright Notice ============================================ # This file is part of Wrye Bash. # # Wrye Bash is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # Wrye Bash is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Wrye Bash; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # Wrye Bash copyright © 2005, 2006, 2007, 2008, 2009 Wrye # # ============================================================================= """This module starts the Wrye Bash application. Basically, it runs some initialization functions, and then starts the main application loop. bash [-o OblivionPath] [-u userPath] [-p personalPath] [-l localAppDataPath] [-d] [0] ---- For all arguments: Note that Python reads the backslash "\" as an escape character, (that is, the backslash itself is ignored and the following character is read literally) so for any paths you'll want to either use two backslashes (C:\\Folder\\) or a forwardslash (C:/Folder/). All arguments except the -d Debug can be set in the .ini file. Arguments have precedence over ini settings. You can use a mix of arguments and ini settings. Ini settings don't require a double backslash and can have relative paths. ---- Oblivion directory argument (-o). -o OblivionPath: Specify Oblivion directory (containing Oblivion.exe). Use this argument if Bash is located outside of the Oblivion directory. Example: -o "C:\\Games\\Oblivion\\" ---- User directory arguments (-u, -p, and -l). These arguments allow you to specify your user directories in several ways. These are only useful if the regular procedure for getting the user directory fails. And even in that case, the user is probably better off installing win32com. However, the arguments are: -u userPath: Specify the user profile path. May help if HOMEDRIVE and/or HOMEPATH are missing from the user's environgment. Example: -u "C:\\Documents and Settings\\Wrye" -p personalPath: Specify the user's personal directory. If you need to set this then you probably need to set -l too. Example: -p "C:\\Documents and Settings\\Wrye\\My Documents" -l localAppDataPath: Specify the user's local application data directory. If you need to set this then you probably need to set -p too. Example: -l "C:\\Documents and Settings\\Wrye\\Local Settings\\Application Data" ---- Debug argument: -d Send debug text to the console rather than to a newly created debug window. Useful if bash is crashing on startup or if you want to print a lot of information (e.g. while developing or debugging). """ # Imports --------------------------------------------------------------------- import getopt import os import sys if sys.version[:3] == '2.4': import wxversion wxversion.select("2.5.3.1") import bosh #--Parse arguments optlist,args = getopt.getopt(sys.argv[1:],'o:u:p:l:d') #--Initialize Directories and some settings # required before the rest has imported opts = dict(optlist) oblivionPath = opts.get('-o') if '-u' in opts: drive,path = os.path.splitdrive(opts['-u']) os.environ['HOMEDRIVE'] = drive os.environ['HOMEPATH'] = path elif os.path.exists('bash.ini'): import ConfigParser bashIni = ConfigParser.ConfigParser() bashIni.read('bash.ini') if bashIni.has_option('General', 'sUserPath') and not bashIni.get('General', 'sUserPath') == '.': drive,path = os.path.splitdrive(bashIni.get('General', 'sUserPath')) os.environ['HOMEDRIVE'] = drive os.environ['HOMEPATH'] = path personal = opts.get('-p') localAppData = opts.get('-l') bosh.initDirs(personal,localAppData,oblivionPath) pidpath = bosh.dirs['mopy'].join('pidfile.tmp') import basher import bolt import atexit def exit(): pidpath.remove() def oneInstanceChecker(): if not os.path.isfile(pidpath.s): pidfile = pidpath.open('w') pidfile.write(str(os.getpid())) return True processlist = bosh.dirs['mopy'].join('temp.tmp') pidfile = pidpath.open('r') pidlist = pidfile.readlines() os.system(r'tasklist > "%s"' % processlist.s) processlistfile = processlist.open('r') processlistcontents = processlistfile.readlines() for pid in pidlist: for line in processlistcontents: if pid in line: print 'already started' return False pidfile.close() pidpath.open('w').write(' %s ' % str(os.getpid())) processlistfile.close() processlist.remove() return True # Main ------------------------------------------------------------------------ def main(): #import warnings #warnings.filterwarnings('error') #--More Initialization if not oneInstanceChecker(): return False atexit.register(exit) basher.InitSettings() basher.InitLinks() basher.InitImages() #--Start application if '-d' in opts or (args and args[0] == '0'): app = basher.BashApp(False) bolt.deprintOn = True else: app = basher.BashApp() app.MainLoop() if __name__ == '__main__': try: args = sys.argv[1:] if '-d' not in args and '0' not in args: import psyco psyco.full() except: pass main()
  6. Hello i have found areally neat item sorter that allows you to add any weapon from your game however the instructions are very broad if anyone can help me to understand the authors intent on how to operate this properly in geck I would much appreciate it I have tried several times at understanding exactly what he intends em to change to get the renaming convention to work and them how to remove it from the esm file once i have. I have searched all over for info about this and have found no support to help me out. I have broken several quality mods that I built trying to incorporate this. However i just can't get the hang of it. Any help greatly appreciated. :biggrin: The file can be found by typing "sorter" into the FO3nexus search box. NOOB THx in advance
  7. This poll is going to dictate wether or not I share my personal mod on the nexus I also have a poll on http://www.fookunity.com/forum/showthread.php?t=3808 and on fallout 3 underground forums. PLease respond and also share where (if you want the house mod) you would like it placed. Thank you for your time and opinion.
  8. FOOK 2 does not just add weapons and armor although it does do that plenty. FOOK 2 ovehauls many of the games features it also adds clutter items quests leveled list and all sorts of stuff you can really appreciate it also changes the game mechanics, adds followers and too much more to list here basically it's, in my opinion the best game overhaul out there. I would definiitely recommend it and the new beta 1.1 version or wait until it's out of beta, but still the best overhaul out there. Another great overhaul is FWE. However it is currently not campatible withh FOOK2 1.1 Beta.
  9. hello i am re-nistalling fallout 3 again and would like some big mod lists so i can order all my mods correctly. If any of you have mod lists that are 50 mods + please send them to me so i can sort my mods correctly and get it all working thank you very much
  10. Perhaps all of the weapons would be really cool as i have not seen a mod yet that will do it.. I talked with CG one of the authors of MHO and he said yes it was time consuming (Also said he would not put fook 2 weapons in his item sorter)so I could understand that part. anyways I congradulate you on your fine effort really love the mod FOOK 2 or not..... Kudos
  11. Will move the esm for bunker 72 Also going to add umpa animations didn't know there was a 2nd worbench thingy Yes fook 2 changes the names of all the weapons in the game though also comes with CALIBR and also running COMM as you can tell from my load order For instance 10mm pistol is now N99 10mm
  12. Hello, Problem is this i like a lot of ppl am running F.O.O.K.2 now and none of my weapons are sorting at all!! I am running several mods, well a lot actually and all of my weapons are now FOOK 2 weapons. Also I have gathered the schematics from bunker 72 and they are not working do I need another mod or something? Last but not least I think I found the armory but therre is no sign for it. Here is my load order the x's are the mods i'm actually running plus a couple character texture tweaks [X] Fallout3.esm [X] StreetLights.esm [X] Unofficial Fallout 3 Patch.esm [X] COMM.esm [X] CALIBR.esm [X] Anchorage.esm [X] ThePitt.esm [X] BrokenSteel.esm [X] PointLookout.esm [X] Zeta.esm [X] FOOK2 - Main.esm [X] Enhanced Weather - Rain and Snow.esm [X] FOOK2 - [DIK] DLC Improvement Kit.esm [X] FOOK2 - [*censored*] World And Neighbourhood Kit.esm [X] FACE.esm [X] Project Beauty.esm [X] SeducingWomen.esm [X] Unofficial Fallout 3 Patch - Operation Anchorage.esp [X] Unofficial Fallout 3 Patch - The Pitt.esp [X] Enhanced Weather - Rain and Snow in Fallout.esp [X] Enhanced Weather - Weather Sounds in Interiors.esp [X] Enhanced Weather - Sneak Bonus during Storms.esp [X] DarNifiedUIF3.esp [X] DUIF3Extras.esp [X] StripClub.esp [X] Mysteriouswoman_underwearncoat.esp [X] BodyJewelry.esp [X] SexyMantisArmor.esp [X] Wasteland_Seductress.esp [X] Persona_and_Secret.esp [X] FO3Western.esp [X] Lookout Outfits.esp [X] Point lookout new uniques.esp [X] FalsSexyT3Conversions.esp [X] FOOK2 - *censored* Map Markers.esp [X] FOOK2 - [EVE] Energy Visuals Enhanced.esp [X] FOOK2 - Main.esp [X] FOOK2 - [DIK] DLC Improvement Kit.esp [X] FOOK2 - Mothership Zeta.esp [X] chasecoat.esp [X] Add your own hairstyle to Fallout 3 characters.esp [X] Project Beauty.esp [X] Project Beauty- Broken Steel.esp [X] Project Beauty- Point Lookout.esp [X] FOIP - FACE NPCS [FOOK2].esp [X] FOIP - FACE NPCS [broken Steel].esp [X] WastelandMastery.esp [X] SeducedDLC03.esp [X] FACE Eyelashes.esp [X] YearlingsGlasses.esp [X] ShadySands.esp [X] JHBCloverPlus.esp [X] Type3Accessories.esp [X] Type3Clothes.esp [ ] Unofficial Fallout 3 Patch - Point Lookout.esp [ ] Unofficial Fallout 3 Patch - Broken Steel.esp [ ] Unofficial Fallout 3 Patch - Mothership Zeta.esp [X] LightweightFoodSanitizer.esp [X] LighterFissionBattery.esp [X] We Jazz.esp [X] ScopedOlPainless.esp [ ] ScopedOlPainlessAutoAim.esp [X] 1PipboyPDA.esp [X] richvendors.esp [X] 7_HolsterForHandGuns.esp [X] IPip.esp [X] Merged.esp [X] StreetLights.esp [X] Megaton House and Theme Overhaul.esp [X] Bunker72 v3.esm [X] B72v3-02.esp [X] B72v3_MHOO.esp [ ] B72v3 Clutterfree.esp Hope this helps
×
×
  • Create New...