Jump to content

Object won't make my quest update


Recommended Posts

In the mod i'm making I want to have the quest go to the next stage once I've read the book or at least whilst I'm reading the book, but what I've got doesn't do anything.

 

Begin onEquip player
setQuestObject "ID of book" 0
setStage "ID of quest" 20
end

 

this is the script i've put in, but nothing happens

Edited by JimmyChooChoo
Link to comment
Share on other sites

OK fixed it now I was doing a little messing around looking at other scripts and testing things and this is what worked

 

 

short status
begin onEquip player
if ( status == 0 )
set status to 1
endif
end
begin gameMode
if ( status == 1 )
set status to -1
setQuestObject "Book ID" 0
setStage "Quest ID" "stage of quest example: 15" (mine was 20 in this case)
endif
end

 

 

So now when I read the book I go on to the next stage of the quest

Link to comment
Share on other sites

  • Recently Browsing   0 members

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