Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Problem with llDialog...

jamieparsons Lemon
undergrad n00b
Join date: 5 Nov 2008
Posts: 36
12-05-2008 04:07
{code}
llDialog(who,
"SORRY WRONG \n" +
"Then let's head on down into that cellar and carve ourselves a witch. \n" +
"Hint: After all, I'm a man and you're a woman... at least last time I checked. Huh huh.", q4, 654);
}

{/code}


Says that there are only 3 arguments in llDialog when trying to debug :/ Any ideas on what I'm doing wrong here?

Cheers
Innula Zenovka
Registered User
Join date: 20 Jun 2007
Posts: 1,825
12-05-2008 05:44
llDialog expects a list of buttons; try
CODE
llDialog(who,
"SORRY WRONG \n" +
"Then let's head on down into that cellar and carve ourselves a witch. \n" +
"Hint: After all, I'm a man and you're a woman... at least last time I checked. Huh huh.", ["q4"], 654);
}