Aller au contenu

Photo

[SOLVED] "Unknown error" of unknown reasson - could it get worse?


  • Veuillez vous connecter pour répondre
2 réponses à ce sujet

#1
0x30A88

0x30A88
  • Members
  • 1 081 messages
Here's my script
#include "wrappers_h"
#include "global_objects_h"
#include "utility_h"

void main()
{  
    object oSpeaker = GetObjectByTag("gisotc_follower01");
    object oHero = GetHero();   
    resource oConversation = R"gisotc_cultoutpost_infade";
    UT_Talk(oSpeaker, oHero, oConversation, 0);
}

It gives the worst error when saving, which is "unknown error". What is wrong with it?

Modifié par Gisle Aune, 22 octobre 2010 - 07:27 .


#2
TimelordDC

TimelordDC
  • Members
  • 923 messages
Conversation resource should have the extension .dlg in the definition:



resource oConversation = R"gisotc_cultoutpost_infade.dlg";

#3
0x30A88

0x30A88
  • Members
  • 1 081 messages
Thank you - it works now.