Why not Moneo? I had an issue like this happen once this is what I used to find occurances. It could easily be changed to modify the conversations.
%mod = '.mod';
for (%mod['*.dlg'])
{
print "\\nConversation: $_\\n";
for (/{'EntryList'}){
if (/~/Quest ne '') {
print "Quest ID: ", /~/Quest, " Journal Entry: ", /~/QuestEntry, "\\n";
print "Actions Taken Script: ", /~/Script, "\\n";
print "Text: ", /~/Text, "\\n"
}
}
for (/{'ReplyList'}){
if (/~/Quest ne '') {
print "Quest ID: ", /~/Quest, " Journal Entry: ", /~/QuestEntry, "\\n";
print "Actions Taken Script: ", /~/Script, "\\n";
print "Text: ", /~/Text, "\\n"
}
}
}
%mod = '>';
close %mod;
Modifié par pope_leo, 27 février 2012 - 06:23 .