Search results

  1. D

    Help a scripting retard with his script.

    When not sure how some script function works, first look in the documentation that came with the mapper, then do a search for files that contain that text keyword in the FO2 script source. The mapper2 docs state this: global_var int Map var_index(unsigned int) - Returns the value of a global...
  2. D

    Help a scripting retard with his script.

    Well, some usage of variable can be complex. For example, you can export a pointer to an instance of an object, and another script can import that pointer and reference it. You can also do interesting things with bwand (bitwise and) and bwor (bitwise or) to store many binary (yes/no) values in a...
  3. D

    Alien Tech 169, 170

    A little too FOBOS-ish for me. Supermodels with guns just don't do it for me. And the gun is hiding her boobs LOL.
  4. D

    Scariest game

    Somehow I feel like flames are forthcoming, but I found the ravenholm area of HL2 to be very creepy. A lot of it has to do with the sounds the zombies make, and the fact that you have barely enough ammo to make it through this area.
  5. D

    F1: NPC Mod

    If you have popup blocking enabled on your browser, disable it to download files from NMA. The server needs to pop up a window before it will allow you to download.
  6. D

    Help a scripting retard with his script.

    In the mapper, to add items to a container (or to critter inventory), select the item (or critter) button, click on the container or critter, click EDIT, then you can select "Add to Inventory" and pick the items to be added. In my FO2XP mod, I do some random contents generation like this...
  7. D

    RPGCodex "does" MCA

    Regarding MCA ... this quote is funny ... Its also rumored that Ron Perlman threatened him when he was doing voice overs. The sound file has yet to be found. from http://wikipocalypse.duckandcover.cx/index.php?title=Chris_Avellone
  8. D

    Help a scripting retard with his script.

    It looks to me like the configuration of where header files are isn't working properly in FSE (sorry I thought it did work). I created a new directory C:\headers and put them there, configured FSE to point there, and it does not include the headers. That being the case, in the #include, just...
  9. D

    Help a scripting retard with his script.

    They work for me exactly as is, but my script source is at the same directory level as the headers directory. For example: \fo2xp\source\headers \fo2xp\source\rndenctr My scripts in rndenctr directory refer to ..\headers so thats okay. If headers was a subdir of rndenctr I'd skip the ..\...
  10. D

    FO2XP Mod

    Similar graphic but not the same You can thank Corpse for most of the work on weapons. Sorry about the bugs, I am working on them. No, the baseline start of this mod was to include the official US 1.02D patch contents. Everything else was added after that.
  11. D

    Sandwarrior

    Wooz should be working on Fallout 3 concept art for Bethesda.
  12. D

    Help a scripting retard with his script.

    Two dots means up one level, just as is does in DOS and UNIX. Looks at the way the script source was layed out in the mapper2 directories. The header directory is at the same level as maps or den or generic. You don't have to do it that way, as long as the compiler knows where to find the...
  13. D

    Rockstar ... Table Tennis?

    School Moves to Block Bully The Miami-Dade school district in Florida is attempting to become the first major school district to fight against the release of Rockstar's upcoming game, Bully (pictured). http://www.next-gen.biz/index.php?option=com_content&task=view&id=2480&Itemid=2...
  14. D

    Rate the avatar above yours.

    I'll rate yours 6/10 because it looks original. Mine is Morpheus from the cathedral in FO1.
  15. D

    Rate the avatar above yours.

    1--2--3--4--5--6--7--8--9--10 ^hate Kharn already said it ... sickening x 2.
  16. D

    Help a scripting retard with his script.

    Oops I didn't notice this before. I used to use a modified version of the p.bat that came with the mapper, but since I started using FSE it is so much easier. I highly recommend trying FSE rather than using watcom and dos4gw/compile. On the FSE topic, Jargo, two suggestions for FSE 1)...
  17. D

    Help a scripting retard with his script.

    Yes, much easier, although sometimes you need to look in the generated temp.i to find the error (this is effectively the same as temp.ssl, the precompiled source with the included code parsed in). Jargo's FSE has everything, including interplays compiler and watcom preprocessor, all bundled...
  18. D

    FO2XP Mod

    Objects on maps are stored with the actual map file. If you change the mapper.cfg option save_text_maps=1 and save a map (in the mapper) it saves both a .map and .txt file. If you look at the .txt file in an editor you see the objects like this: [OBJECT BEGIN] obj_id: 28 obj_tile_num: 22669...
  19. D

    Fallout 3:Locations from FO2

    R: Argument is an intellectual process. Contradiction is just the automatic gainsaying of any statement the other person makes. S: No it isn't. R: It is. S: Not at all. R: Now look. S: (Rings bell) Good Morning. R: What? S: That's it. Good morning. R: I was just getting...
  20. D

    Help a scripting retard with his script.

    critter_add_trait requires four parameters critter_add_trait(who (ObjectPtr), trait_type (int), trait (int), amount (int)) example critter_add_trait(dude_obj,TRAIT_PERK,PERK_gecko_skinning_perk,1) You are missing the second parameter, trait type keyword TRAIT_PERK Now ... if you change...
Back
Top