Skip to content

Commit

Permalink
Added another way to get the plasma transformer quest from Skeeter
Browse files Browse the repository at this point in the history
(as player can miss it quite easily when giving him the tool kit.)
  • Loading branch information
NovaRain committed Sep 7, 2024
1 parent 2bf81ed commit aea43ca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions data/text/english/dialog/gcskeetr.msg
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
mostly. Make 'em work better... sometimes. Keepin' myself outta trouble. Know what I mean?}
{261}{}{I guess. Let me ask you something else.}
{262}{}{Well, I think I better go do something myself. Goodbye.}
{263}{}{Anything I can help you with?}

{270}{}{You're lookin' fer a GECK, huh? Well, I don't rightly know where ya might find one of them thar
things. I know that Vault City prolly used ta have themselves one.}
Expand Down
6 changes: 6 additions & 0 deletions scripts_src/gecko/gcskeetr.ssl
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,12 @@ end

procedure Node015 begin
Reply(260);
// another way to get the plasma transformer quest
if ((local_var(LVAR_Upgrade) == 0) and
(global_var(GVAR_QUEST_SUPER_REPAIR_KIT) == SUPER_REPAIR_KIT_SUCCESS) and
(global_var(GVAR_GECKO_SKEETER_PART) == 0)) then begin
NOption(263,Node027,004);
end
NOption(261,Node009,004);
NOption(262,Node999,004);
end
Expand Down

0 comments on commit aea43ca

Please sign in to comment.