Actually put the new info in the proper section

Actually put the new info in the proper section in usdf_zdoom.txt
This commit is contained in:
FishyClockwork 2016-10-29 17:33:34 +02:00 committed by Christoph Oelckers
parent 42be7bee93
commit 4a56d426c3
1 changed files with 26 additions and 20 deletions

View File

@ -50,26 +50,6 @@ conversation
item = <string>; item = <string>;
} }
// The amount of an item needed for this option to become available.
// You can have as many as needed. All require blocks must be satisfied
// to show this option.
require
{
item = <string>; // Item that is required to show this option.
amount = <integer>; // Minimum amount of the item needed.
}
// The undesired amount of an item. This option will become available
// if you have less than the specified amount. You can have as many
// as needed. All exclude blocks must be satisfied to show this option.
// Note: if both require and exclude are defined then all require
// and all exclude blocks must be satisfied to show this option.
exclude
{
item = <string>; // Item that is unwanted to show this option.
amount = <integer>; // Unwanted minimum amount of the item.
}
giveitem = <string>; giveitem = <string>;
} }
} }
@ -106,6 +86,32 @@ conversation // Starts a dialog.
// the standard conversation ID ('actor' property) is used instead // the standard conversation ID ('actor' property) is used instead
// for this purpose but since 'ZDoom' namespace requires the actor // for this purpose but since 'ZDoom' namespace requires the actor
// to be a class name it needs a separate field for this. // to be a class name it needs a separate field for this.
page
{
choice
{
// The amount of an item needed for this option to become available.
// You can have as many as needed. All require blocks must be satisfied
// to show this option.
require
{
item = <string>; // Item that is required to show this option.
amount = <integer>; // Minimum amount of the item needed.
}
// The undesired amount of an item. This option will become available
// if you have less than the specified amount. You can have as many
// as needed. All exclude blocks must be satisfied to show this option.
// Note: if both require and exclude are defined then all require
// and all exclude blocks must be satisfied to show this option.
exclude
{
item = <string>; // Item that is unwanted to show this option.
amount = <integer>; // Unwanted minimum amount of the item.
}
}
}
} }
=============================================================================== ===============================================================================