I mean... Most of the scripts of Maniac Mansion Mania having scripts of 2.60.
Like this:
function DisplaySpeechBackgroundEx(int charid, string message){
bgspeechoverlayid=DisplaySpeechBackground(charid, message);
bgspeechcharid=charid;
}
function repeatedly_execute_always () {
#define BGS_DELAY 6 // this is the animation delay
if (bgspeechoverlayid!=-1){
if (IsOverlayValid(bgspeechoverlayid)){
if (bgscounter>=BGS_DELAY*2) bgscounter=0;
SetCharacterFrame(bgspeechcharid,character[bgspeechcharid].talkview+1,character[bgspeechcharid].loop,
bgscounter/BGS_DELAY);
bgscounter++;
}
else {
ReleaseCharacterView(bgspeechcharid);
bgspeechoverlayid=-1;
}
}
}
Has anyone change the scripts to 2.72 or the new 3.0???.