aliens

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Shiroi Bara

Pages: [1]
1
Help / How to unlock multiply projects using getOneFree?
« on: May 30, 2022, 02:25:39 pm »
According wiki getOneFree  unlocks "bonus" research projects that may be granted when completing this project. I want some cheating - researching live aquatoid medic  could give deep one autopsy but not unlock aqua plastics with it. Can I change list of "bonuses"  to unlock autopsy and plastic together? I'm tried item section and putting there aqua plastic depends on corpse it works, but if I add another lines with same item only first working. So I stuck here. Is it even possible? Some examples what I mean:
Case 1:
Code: [Select]
getOneFree:
      - STR_DEEP_ONE_AUTOPSY
      unlocks:
      - STR_AQUA_PLASTICS
Not working.

Case 2 with ',' separator:
Code: [Select]
getOneFree:
      - STR_DEEP_ONE_AUTOPSY, - STR_AQUA_PLASTICS
Not working.

Modifying item section:
Code: [Select]
- name: STR_AQUA_PLASTICS
    cost: 120
    points: 20
    listOrder: 327
    dependencies:
      -  STR_DEEP_ONE_AUTOPSY

- name: STR_AQUA_PLASTICS
    cost: 120
    points: 20
    listOrder: 327
    dependencies:
      - STR_XARQUID_AUTOPSY
Working only on deep one but ignores xarquid.
Any suggestions?

2
Hi all! I found what killing Zombie with incendiary weapons dose not preventing hatching new Chryssalid from it's host. New cryssalid pops up with full health anyway. I have tested this on both open xcom and OXCE. Damage what incendiary weapons or grenades produce to zombies is very low, at least for Superhuman difficulty. Now let's check the wiki:
Quote
If the killing shot is of an Incendiary nature, the chryssalid does not hatch. The corpse generated from killing a Zombie will look like a Chryssalid and the death scream will sound like that of a human
Now I have questions - wiki lies or this is bug, or it's because of Superhuman? Interesting damage modifier too, because you need hell of lot of grenades or incendiary round until new Cryssalid is hatched. Please explain why it's not working according wiki. Thank you.

3
Apologizes if I posting in wrong forum and sorry for my broken English in advance. Analyzing "getOneFree" parameter in research.rul I have found this interesting behavior - if it unlocks some project, what could be produced as  item there is no "We can now produce" message pop ups when research completed. Only UFOpedia message pops up. For example you can try reproduce this if you change research.rul file in  standard\xcom1\ folder:
Code: [Select]
  - name: STR_LASER_WEAPONS
    #cost: 50
    cost: 1
    points: 10
    getOneFree:
      - STR_MOTION_SCANNER
  - name: STR_MOTION_SCANNER
    #cost: 180
    cost: 1
    points: 20
As you can see you can get Motions Scanner standard way or as bonus when you complete "Laser Weapons" topic. Lets try both ways. Make changes in file as I did and restart the game. Select new game. Choose "Laser weapons" in research list. When it finishes it pops up article about Motion Scanner when Laser Weapons topic has completed and pops up message about next research - Laser Pistols but it dose not pop up message about possibility production of Motion Scanner. But if you go to manufacture menu manually you will see what this item ready for production. Now start new game again and select "Motion scanner" in research list. When research finishes you will see article in UFOpedia and message "We can now produce Motion Scanner" pop ups. And scanners will be ready for production if you got to manufacture menu. This behavior present for UFO Defense and  TFTD as well and for all their mods. I know what "getOneFree" parameter used most of times just to show UFOs(USOs) or live (dead) aliens when live medics (technicians) researched, so they're can not be produced of course, but for future request can we have option to show "We can now produce" message if it come as free bonus and can be produced in workshops? Seems it's require change in game code. As I can understand now it checks production flag and call "We can now produce" function if item researched standard way but not execute it if it comes as bonus. Any advice how I can do this manually from developers? Should I look at GeoscapeState.cpp file? I successfully compiled and ran last git build in Linux Mint but I'm suck in programming skills so good example in modified code from skilled people will be nice even just for test purpose for new or existing now mods.

Pages: [1]