Jump to content

Problem with my modification


twofive

Recommended Posts

Hello!

 

I recently tried to make a simple mod using the GECK wiki at bethsoft.

Unlike their tutorial, I tried to make a quest with multiple stages (in fact, three).

I want to make a "Vault 101 Underground".

 

So, I did their tutorial like normal but created three quest stages (10,20,100) and two quest objectives with one quest end (find info about key, find key, end).

 

The quest starts correctly. I do this via a terminal, my script looks like this:

 

if getStage 00VAU < 10
  setStage 00VAU 10
endif

 

00VAU is my quest name.

Then I created an activator around the room which contains an holotape to be collected by the player.

The activator script looks like this:

 

scn 00Vault101QuestScriptHolotape

begin OnTrigger player

if getStage 00VAU < 20
 if player.getHasNote 00Vault101NoteKey
setStage 00VAU 20
RewardKarma 1
 endif
endif

end

 

The RewardKarma command is only for debugging, as I see the activator works fine, as the karma gets rewarded, but the SetStage command doesn't work.

When I enter the command in the Fallout 3 command line I get this response:

 

SetStage 00VAU 20
SCRIPTS: Script 'SysWindowCompileAndRun', line 1:
Item 00VAU not found for parameter Quest.
Compiled script not saved!
|

 

Can someone help me, please? :unsure:

 

Thanks in advance

-- twofive

Link to comment
Share on other sites

I see nothing wrong here. Did you add:

 

SetObjectiveCompleted 00VAU 10 1
SetObjectiveDisplayed 00VAU 20 1

to your result script in the quest stages tab? If not you dont see the result of the activator in your pipboy.

 

I read often here and on the bethsoft geck forum that you should avoid to use reference names with numbers at the beginning. I personaly never had troubles when i tried it but just to get sure.

 

To use the reference names in the console you need FOSE. If FOSE is installed you can check with:

 

sqv 00VAU

 

at which stage your quest is.

Link to comment
Share on other sites

Oh, I see.

And yes, I first completed the stage before I started the next one...

 

In fact, it looks like this:

 

http://www.abload.de/thumb/1hpys.pnghttp://www.abload.de/thumb/2qrrh.pnghttp://www.abload.de/thumb/3wrf5.pnghttp://www.abload.de/thumb/4dpkl.png

 

I'll try a quest name without numbers now.

 

Thanks in advance

 

//EDIT: Wow, I named my quest AAAVAU now and it works! Thank you very, very, very much! :)

Link to comment
Share on other sites

Wow, I named my quest AAAVAU now and it works! Thank you very, very, very much! :)

 

Gern geschehen.

 

I had to use this rare opportunity, to write soemthing in german ;) after i have seen the screenshots.

 

Sehr geil :biggrin:

 

Anyway, I gave you kudos, whatever this means :whistling:

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...