Fallout 2 Restoration Project 1.2 (Unofficial FO2 Expansion)

Status
Not open for further replies.
Cosmic Sea said:
Pipboy speech thingy?
But then there's still the science skill at 220%. It was at 120% when I last invested skill points in it. :look:

"Pip Boy Lingual Enhancer" or how that is spelled... you should get it from Mrs. Bishop with the correct stats as far as i remember.

Well and about the +100% science bonus... you didnt tag! it after you already had it rather high didnt you?
 
1) While first talking to Sheriff Marion in Redding I choose the line about bubblegum and then the line about asking some questions, and Sheriff says his line as if I asked him about his broken leg. Then again I can say only goodbye, or ask him about Doc Johnson and then ask him about details about Doc and then I have only the line to end up conversation. Or you can tell him that you wanna ask some questions and again have only line that ends conversation.

Actually choosing the bubblegum line is poor idea because it screws up his dialogs totally and when you talk to him again it will be impossible to ask him for job. Usually you can ask some question, then he says his lin "Whatcha pesterin' me with again?" and you can only say the goodbye line.

2) As far as I remember if you are the Grave Digger you could talk to Josh in the Last Gasp Saloon a bit differently about the graves being dug up. It seems that now you can't.
 
Is it possible for Lynette to grant you Citizenship? I noticed these lines in (unmodded) vclynett.msg:
Code:
{501}{lyn076a}{Excellent. You have conducted yourself as a true Vault Citizen.}
{502}{lyn076b}{It is my pleasure to grant you Citizenship, complete with privileges and access to our facilities.}
 
Kanhef said:
Is it possible for Lynette to grant you Citizenship? I noticed these lines in (unmodded) vclynett.msg:
Code:
{501}{lyn076a}{Excellent. You have conducted yourself as a true Vault Citizen.}
{502}{lyn076b}{It is my pleasure to grant you Citizenship, complete with privileges and access to our facilities.}

Hmm, doesnt she grant you citizienship if you blow up Gecko and just say you "sorted it out".

Edit: Kaga encounter is glitched, I kick his ass and then the whole speech starts over.
 
Hello. First of all i want to thank you for this great mod. I like it very much. But i'm having some trouble with travelling (searched in readme and faq's didn't found) - every half of square on Global Map i'm entering the wasteland (like encounter) but there's nothing and i must exit it again and again.
 
Deerhound said:
Hello. First of all i want to thank you for this great mod. I like it very much. But i'm having some trouble with travelling (searched in readme and faq's didn't found) - every half of square on Global Map i'm entering the wasteland (like encounter) but there's nothing and i must exit it again and again.
Go to your Fallout2 folder and see if you have a patch000.dat file there. If so, remove it.
 
Dragula said:
Kanhef said:
Is it possible for Lynette to grant you Citizenship? I noticed these lines in (unmodded) vclynett.msg:
Code:
{501}{lyn076a}{Excellent. You have conducted yourself as a true Vault Citizen.} 
{502}{lyn076b}{It is my pleasure to grant you Citizenship, complete with privileges and access to our facilities.}

Hmm, doesn't she grant you citizenship if you blow up Gecko and just say you "sorted it out".

Edit: Kaga encounter is glitched, I kick his ass and then the whole speech starts over.
IIRC, you can either blow up or fix the plant, come back to say you have "taken care of the situation", and she'll grant you citizenship.

Just keep from mentioning about having fixed the plant, or she'll go ballistic. Well, what can you do, she didn't specifally tell you to blow up the plant... :roll:


"Pip Boy Lingual Enhancer" or how that is spelled... you should get it from Mrs. Bishop with the correct stats as far as i remember.

Well and about the +100% science bonus... you didnt tag! it after you already had it rather high didnt you?
Oh yes, that thing. Nope, haven't visited the Bishops yet.

Science I had tagged right from the start. On level 11 it was 120%, and on reaching 12, it went through the roof.
 
Re: Kaga

Darek said:
Munin said:
about Kaga, the game doesn't crash with me after I leave arroyo but since I ve played the previous version of this patch I know I should meet Kaga after leaving Arroyo. Appearantly that encounter doesn't occur when I played the game (I installed hi-graphics patch & Restoration project 1.2).
Are you sure you installed the Restoration Project Mod and not the Unofficial patch? They are not the same thing.
It has happened before. :)

Yeah I think you re right, it appears I confused the 2. I thought to download both of them in the download section: http://www.nma-fallout.com/forum/dload.php?action=category&cat_id=16
I only took patches, the Restoration project 1.2 is a mod and not a patch.
Can I just install the Restoration project too, because basicly they re the same files (Since the unofficial patch is in the RP) or do I have to remove it first?
 
@ Munin,
Installing the RP mod after killap's patch should work just fine, it should just write over the files that are different.
 
Darek said:
@ Munin,
Installing the RP mod after killap's patch should work just fine, it should just write over the files that are different.

Thx mate, strange that I missed it this time since I took the right "patch" the last time (RP 1.1).
 
Dragula said:
Hmm, doesnt she grant you citizienship if you blow up Gecko and just say you "sorted it out".
She promises that when giving you the quest, but doesn't because of a couple of bugs in the dialogue. You can say "It's all taken care of." at node 73, which goes to node 76, where she says line 501 and dialogue ends. The only way to get line 502 is in node 76c:
Code:
procedure Node076c begin
   if (global_var(GVAR_VAULT_CITIZENSHIP) == 0) then
      Reply(502);
   else
      Reply(501);
Any response available (nodes 77, 76a, 76b) will make you a citizen, if you aren't already. But the only way to get to node 76c is in node 73a:
Code:
procedure Node073a begin
   if( ( global_var( GVAR_VAULT_CITIZEN ) == CITIZEN_REAL_CITIZEN ) or
       ( global_var( GVAR_VAULT_CITIZEN ) == CITIZEN_CAPTAIN_GUARD ) ) then
      call Node076c;
   else
      call Node076;
end
One bug is that the if statement is reversed; you can only get to 76c if you already are a citizen. The other bug is that node 73a itself is unreachable. The following code should fix it:
Code:
procedure Node073 begin
   set_local_var(LVAR_Reactor_Done,1);
   Reply(487);

   BOption(488,Node074,004);
   GOption(489,Node073a,004);
end

procedure Node073a begin
   if( ( global_var( GVAR_VAULT_CITIZEN ) == CITIZEN_REAL_CITIZEN ) or
       ( global_var( GVAR_VAULT_CITIZEN ) == CITIZEN_CAPTAIN_GUARD ) ) then
      call Node076;
   else
      call Node076c;
end
Maybe this has been fixed already, but I can't find any mention of it in the patch notes.
 
@ Kanhef
As of RP 1.2 it has not been fixed.

There is something strange with Node073a.
The fact that it's last in the script means it's either been moved there or it was added there last, as a fix or an afterthought.
It's placement in the procedure list is a bit odd as well. I don't know enough about scripting to say if it even works from where it's at.

I have just glanced at it so I can't say much.
But I'm wondering if this was intentionally disabled, or if someone at BIS was playing around and screwed up.

Edit:
Wait, are you looking at the un-compiled scripts or a de-compiled script from the game?
They are not identical, in the un-compiled script Node073a comes right after Node073 but it's completely missing from the procedure list. I haven't looked if there are any other differences.
 
Not sure if this is the right thread, but here goes anyway:

Of all my party members, Lenny appears to not 'display' him wearing armour like the other party members do (I know its another mod included in RP, just wanted to know if its normal)

Also, is there a way to get anything over 'liked' in Redding? I've solved all their quests and this is all I get (Except for mae, as im playing a female character and I can't saver her as such)
 
@ Chancellor Kremlin
They never did any new armor frames for Lenny in that mod, I don't know if they plan to do it later or not.
As for Redding, yes you can get the idolized status. Maybe it's more to do with how you solved the quests?
 
Darek said:
@ Chancellor Kremlin
They never did any new armor frames for Lenny in that mod, I don't know if they plan to do it later or not.
As for Redding, yes you can get the idolized status. Maybe it's more to do with how you solved the quests?

Thanks Darek. THe only thing I can think of is that I arrested both miners at the bar brawl. I paid for the widows rent, I cleaned out the mine, I killed frog morton, I sold the chip to Le Barge (NCR), I gave the antidote to doc, and I can't cure fanny mae as im playing a female character.

Thats it I think. Incidently, my rep in Arroyo dropped from idolized to liked, I think because I visit it frequently and without the geck lol.
 
What about the seriff quest to find out who cut up the whore at the Malamute saloon? I wonder how that affects the town reputation.

The sheriff likes the culprit brought to justice but then the bar owner will complain how jail is "not enough for what the bastard did". Killing the confessed perpetrator on the spot instead of arresting him yields a good response from the barkeep, but the sheriff is not perfectly happy, wondering what the other miners will think of such harsh methods.
 
Cosmic Sea said:
What about the seriff quest to find out who cut up the whore at the Malamute saloon? I wonder how that affects the town reputation.

The sheriff likes the culprit brought to justice but then the bar owner will complain how jail is "not enough for what the bastard did". Killing the confessed perpetrator on the spot instead of arresting him yields a good response from the barkeep, but the sheriff is not perfectly happy, wondering what the other miners will think of such harsh methods.

Oh yeah, I arrested him too. Sheriff said he will be hanged, so justice has been done I think.

Perhaps my game is bugged, or maybe there is no way to get an Idolized status as a woman, due to the fannie mae quest not being available, I don;t know.
 
Chancellor Kremlin said:
Perhaps my game is bugged, or maybe there is no way to get an Idolized status as a woman, due to the fannie mae quest not being available, I don;t know.
No, I don't think your game is bugged. The following will get you the idolizes status:

[spoiler:3ac1c04e39]1. Pay the widows debt.
2. Solve the bar brawl by talking them out of it.
3. Arrest the guy who cut the whore.
4. Kill the frog.
5. Clear out the mine and sell back the deed to Ascorti.
[/spoiler:3ac1c04e39]
I don't know if it's the only way though. You said you cleaned out the mine but did you sell back the deed as well? Cause that's when you get town rep.
 
Darek said:
Chancellor Kremlin said:
Perhaps my game is bugged, or maybe there is no way to get an Idolized status as a woman, due to the fannie mae quest not being available, I don;t know.
No, I don't think your game is bugged. The following will get you the idolizes status:

[spoiler:a1920aacc4]1. Pay the widows debt.
2. Solve the bar brawl by talking them out of it.
3. Arrest the guy who cut the whore.
4. Kill the frog.
5. Clear out the mine and sell back the deed to Ascorti.
[/spoiler:a1920aacc4]
I don't know if it's the only way though. You said you cleaned out the mine but did you sell back the deed as well? Cause that's when you get town rep.

Hmmn... very strange.

[spoiler:a1920aacc4]Yes I did all that, I solved the bar brawl by arresting both of them, I arrested the guy who cut the whore, I killed the frog and his gang, I cleaned out the mine and sold it back to Ascorti, I gave the chip to Marge, and I paid the widows debt aswell. Not to mention talked to Doc and gave him the Jet Antidote, and still all I have is liked.
[/spoiler:a1920aacc4]
Odd?
 
Status
Not open for further replies.
Back
Top