rotators / Fo1in2

Fallout 1 to 2 engine conversion
https://nma-fallout.com/threads/218045/
581 stars 30 forks source link

Second key removes motorcycle trunk forever #130

Closed Thrax-x closed 2 years ago

Thrax-x commented 2 years ago
  1. Steal motorcycle key from Griffith
  2. Send Griffith to tunnels
  3. Loot second key from his corpse
  4. Use fisrt key on motorcycle
  5. Travel to Boneyard
  6. Upgrade motorcycle with trunk at Smithy
  7. Use second key on motorcycle
  8. Motorcycle resets, trunk disappear and upgrade is no more available

Easy fix: MOTRCYCL.ssl, line 89, add global_var check: if (global_var(GVAR_PLAYER_GOT_CAR) == 0) then begin // Second key check set_global_var(GVAR_PLAYER_GOT_CAR, 1); end Second key can be explained by story: Griffith realized he lost key and took spare key at home

Difficult fix: Move Griffith inventory to temporary container (or global_var) before removing him from map, spawn key in his corpse based on this, modify Smithy to allow trunk upgrade based on global_var instead of local_var.