Code: Select all
namespace ="ZDoom";
conversation
{
Actor = "ExplosiveBarrel";
ID = 1;
Page
{
Name = "Hello";
Dialog = "World";
goodbye = "Leave";
Choice
{
Text = "Test choice";
}
}
}
Moderator: GZDoom Developers
Code: Select all
namespace ="ZDoom";
conversation
{
Actor = "ExplosiveBarrel";
ID = 1;
Page
{
Name = "Hello";
Dialog = "World";
goodbye = "Leave";
Choice
{
Text = "Test choice";
}
}
}
Code: Select all
namespace = "ZDoom";
//include = "SCRIPT00";
conversation {
//EvilEye test dialog
id = 2;
actor = "EvilEye";
page // 1
{
name = "Navigation";
dialog = "NAVIGATION SYSTEM OPERATIONAL\nSelect Planet";
goodbye = "Leave Terminal";
link = 2;
choice
{
text = "GF Safehouse";
yesmessage = "Destination Home mapped! Inputting coordinates...";
special = 80;
arg0 = 1;
closedialog = true;
}
choice
{
text = "Savara";
nextpage = 2;
require
{
item = "Coordinates_Savara";
amount = 1;
}
}
choice
{
text = "Go to Norion.";
nextpage = 3;
yesmessage = "Destination Norion mapped! Inputting coordinates...";
special = 80;
arg0 = 3;
closedialog = true;
require
{
item = "Coordinates_Norion";
amount = 1;
}
}
}
/*-----------------------------------------------------------------
PAGE DEFINITIONS FOR COORDINATES - DO NOT MOVE
THIS KEEPS THINGS TIDY AND EASIER FOR ME TO EDIT
-------------------------------------------------------------------*/
// ---- SAVARA ----
Page // 2
{
name = "Savara";
dialog = "Select Landing Site";
goodbye = "Leave Terminal";
choice
{
text = "Lab Alpha - Cargo Dock";
yesmessage = "Destination Savara mapped! Inputting coordinates...";
special = 80;
arg0 = 2;
closedialog = true;
require
{
item = "Coordinates_Savara_Alpha";
amount = 1;
}
}
choice
{
text = "Lab Beta";
yesmessage = "Destination Savara mapped! Inputting coordinates...";
special = 80;
arg0 = 2;
closedialog = true;
require
{
item = "Coordinates_Savara_Beta";
amount = 1;
}
}
choice
{
text = "Back";
nextpage = 1;
}
}
}
i was using a really old gzdoom version apparently, i thought i updated everything when i brought my backup over recently after a hard drive formatting but i guess not, updating solved it though thank you very much.R4L wrote:What source port are you using and what version?