question about quests..

ninjachris

Active Member
I have yet to get the in game /deletequest <number> to work.. and there is apparently no command in game to accept quests..

So my question is, is there any way to accomplish this thru ISXVG ?

I also tried using IS MouseTo and MouseClick, with no sucess. Any help would be greatly appreciated.

Chris
 

Karye

Active Member
from isxvgchanges.txt in your extension directory. the update on the 12th i think has most of what your looking for. This info isnt yet in the wiki.

Code:
February 12, 2007 -- By Amadeus
[ISXVG-20070208c.exe]
* CyberTech has graciously ported over Valerian's 'Radar' xml file from ISXEQ2.  He also added some
  spiffy textures.  
* Fixed the 'Select' method of the parlaycard datatype.
* Fixed the crash that occured if you tried creating or customizing a character while isxvg was
  loaded.
* Fixed the "Quantity" member of the 'item' datatype and ADDED a "MaxQuantity" member.  (Note:  These
  may also refer to item 'charges' as well.  I have nothing to test it with so I'm not sure.)
* Added the following MEMBERS to the 'dialogresponse' datatype:
  1. PresenceRequired                  (int type)    
  2. PresenceRequiredType              (string type)
* Added new TLO: "Journal"
  - Syntax:  Journal[Quest]		       (questjournal type)
             Journal[Quest,#]          (questjournalentry type)
             Journal[Quest,<NAME>]     (questjournalentry type)
             Journal[Travel]           (traveljournal type)
             Journal[Travel,#]         (traveljournalentry type)
             Journal[Travel,<NAME>]    (traveljournalentry type)
* Added new datatypes:
  1. questjournal
  2. questjournalentry
  3. currentdisplayedquest
  4. questrewardgroup
  5. questreward
  6. traveljournal
  7. traveljournalentry
* Added the following MEMBERS to the 'questjournal' datatype:
  1. CurrentDisplayed                  (currentdisplayedquest type)   [This is also how you access a quest that is currently 'displayed' in an NPC dialog]
  2. EntryCount                        (int type)
* Added the following MEMBERS to the 'questjournalentry' datatype:
  1.  Name                             (string type)
  2.  Description                      (string type)
  3.  Objectives                       (string type)
  4.  ObjectivesShort                  (string type)
  5.  CoinReward                       (int type)         [in copper]
  6.  Status                           (int type)
  7.  IsTracking                       (bool type)
  8.  EndLocation                      (traveljournalentry type)
  9.  WaypointCount                    (int type)
  10. Waypoint[#]                      (traveljournalentry type)
      Waypoint[<NAME>]                 (traveljournalentry type)
  10. RewardGroupCount                 (int type)
  11. RewardGroup[#]                   (questrewardgroup type)
* Added the following METHODS to the 'questjournalentry' datatype
  1.  Track
  2.  Select                   (Sets this quest as the "CurrentDisplayed" quest)
* Added the following MEMBERS to the 'questrewardgroup' datatype:
  1.  RewardCount                      (int type)
  2.  Reward[#]                        (questreward type)
* Added the following MEMBERS to the 'questreward' datatype:
  1.  ToItem                           (item type)             
* Added the following METHODS to the 'questreward' datatype:
  1.  Select                                                  
* Added the following MEMBER to the 'currentdisplayedquest' datatype:
  1.  ToQuestJournalEntry              (questjournalentry)
* Added the following METHODS to the 'currentdisplayedquest' datatype:
  1.  Abandon
  2.  Accept
  3.  AcceptReward
  4.  Complete
  5.  Decline
  6.  Share
  7.  Track
* Added the following MEMBERS to the 'traveljournal' datatype:
  1. EntryCount                        (int type)
  2. CurrentlyTracking                 (traveljournalentry type)
* Added the following METHODS to the 'traveljournal' datatype:
  1. StopTracking                     
* Added the following MEMBERS to the 'traveljournalentry' datatype:
  1. Name                              (string type)
  2. Category                          (string type)
  3. X                                 (float type)
  4. Y                                 (float type)
  5. Z                                 (float type)
  6. ChunkX                            (int type)
  7. ChunkY                            (int type)
* Added the following METHODS to the 'traveljournalentry' datatype:
  1. Track
  2. Remove
 

ninjachris

Active Member
I hate to be a burden, but I am still having some difficulties with this...

I am not getting the correct code to abandon a quest, named say "Quest1"


Can anyone help?
 

ninjachris

Active Member
sorry I dident really clarify above...

Journal[Quest,"Quest blah blah blah"]:Select


will select the quest in my quest log...


but currentdisplayedquest is still null... am I missing something?
 

Amadeus

The Maestro
Staff member
Code:
February 22, 2007 -- By Amadeus
[ISXVG-20070222a.exe]
* The 'CurrentDisplayed' MEMBER of the 'QuestJournal' datatype now properly returns a 
  "CurrentDisplayedQuest" datatype object (as stated in previous patch notes.)
 
Top Bottom