[-] Quest names

Discussion in 'Help' started by demo, Dec 3, 2010.

  1. demo

    demo New Member

    Hey there

    normally I wouldn't ask for help since I like to find stuff out myself but here goes!

    Every time I press "Quest" when a NPC has the opportunity to it, I get the quest names as [-] Like they can't load for some weird reason... I checked the Quest_pch it has every quest init and it is linked with the questname-e.dat, so I find it kinnda ocweird... in other words, the QUEST CHOICE LIST doesn't load...

    ERROR with every NPC that has multiple quests:
    Code:
    12/03/2010 00:50:57.750, [last-send: jeremy001.htm][recived: quest_choice?choice=0&option=1] : INVALID link on bypass[.\UserSocket_HTMLCmd.cpp][177]
    
    EDIT: The links work and redirect me to the right quest but the name just won't load...


    Thx in advance!

    Demo
     
    Last edited: Dec 3, 2010
  2. FidoW

    FidoW AdvExt64 Customers (IL)

    It's in AI, and the name is in korean/chinesse/whatever, thats why doesn't show.

    Here is an example, and since you used jeremy for that, im going to use it too:

    Code:
    	push_event	//  myself
    	push_const 704
    	add
    	fetch_i
    	push_const 0
    S12485.	"Egg Delivery"
    	push_string S12485
    	func_call 184680640	//  func[AddChoice]
    	shift_sp -2
    	shift_sp -1
    
    
    	push_event	//  myself
    	push_const 704
    	add
    	fetch_i
    	push_const 4
    S12489.	"Specialty Liquor Delivery"
    	push_string S12489
    	func_call 184680640	//  func[AddChoice]
    	shift_sp -2
    	shift_sp -1
    
    
    	push_event	//  myself
    	push_const 704
    	add
    	fetch_i
    	push_const 8
    S12493.	"The Finest Food"
    	push_string S12493
    	func_call 184680640	//  func[AddChoice]
    	shift_sp -2
    	shift_sp -1
    
    My guess is you don't have there the quest name in english.
     
    Last edited: Dec 3, 2010
  3. demo

    demo New Member

    Yup this is it, thx fidow

    Fixing it the following way:

    comparing the code

    S18184. "What Women Want (Continue)"

    And changing the names, and yuppp that's quite a lot of work...

    thx fidow
     
    Last edited: Dec 3, 2010