Post reply

Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.
Name:
Email:
Subject:
Message icon:

Verification:
Type the letters shown in the picture
Listen to the letters / Request another image

Type the letters shown in the picture:
What color is grass?:
What is the seventh word in this sentence?:
What is five minus two (use the full word)?:

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: Borsook
« on: June 21, 2005, 02:21:13 PM »

 :o Than I'm at a loss... it seems I'm the lucky one or something.
Posted by: Echon
« on: June 21, 2005, 01:10:47 PM »

I tried installing an older version of Java, deleting NI and downloading it again but with the same result as before.

-Echon
Posted by: Borsook
« on: June 20, 2005, 03:00:37 AM »

That's strange. I've used NI with 01 and 02 (this am using currently) and it works(ed). I'm sure that if you switch to 02 it'll run. (unless you've got your Java mix-up, do other java applications work fine?)
Posted by: Echon
« on: June 19, 2005, 04:24:52 PM »

I have used 01 as well with the same results. I am not sure when the problem began.

-Echon
Posted by: Borsook
« on: June 19, 2005, 04:21:56 PM »

Right... I've got 1_5_0_02, but Java update function says I've got the latest one... Is the one you're using a beta or stable? If it's a beta than maybe it's not NI fault but Java's... Anyway, why don't you roll back? Has 03 some important features?
Posted by: Echon
« on: June 19, 2005, 01:12:36 PM »

Jon does not bother updating his site. I have got the same version as you. Are you using the newest Java version? It is called jre-1_5_0_03-windows-i586-p.exe

-Echon
Posted by: Borsook
« on: June 19, 2005, 05:04:58 AM »

Well, 1.33 beta 18 works fine. For some reason NI website has  1.32.1 beta 24 as the last. But 1.33 can be found.  Or I can mail it to you. (maybe it's a mix-up of numbers and 1.32.1 is newer, but 1.33 works).
Posted by: Echon
« on: June 19, 2005, 01:52:01 AM »

That is the one I am using.

-Echon
Posted by: Salk
« on: June 19, 2005, 01:24:03 AM »

Echon, have you tried the Beta version of NI ?
Posted by: Echon
« on: June 18, 2005, 12:32:20 PM »

You could use DLTCEP.

Yeah, I know but it is so slow. No MDI. :(

Why, isn't NI working for you, Echon ?

Because of the newer versions of the Java runtime-thing. Jon knows about it as he replied to the email I send him but he has not updated it yet.

-Echon
Posted by: Salk
« on: June 17, 2005, 11:41:45 PM »

Why, isn't NI working for you, Echon ?
Posted by: Galactygon
« on: June 17, 2005, 05:33:38 PM »

Quote
I also seem to recall making sure that all forms of the dopplegangers would set the variables and playing through the coronation without any problems.
It wasn't present in my installation of FotD.

Quote
Of course, all of this would be easier to check if NI actually worked.
You could use DLTCEP.

-Galactygon
Posted by: Echon
« on: June 17, 2005, 04:51:51 PM »

I already know how ChangeAnimation works. The CRE becomes new CRE in every respect. I also seem to recall making sure that all forms of the dopplegangers would set the variables and playing through the coronation without any problems. Of course, all of this would be easier to check if NI actually worked.

-Echon
Posted by: Galactygon
« on: June 17, 2005, 12:51:50 PM »

I was right about the dopplegangers; the ChangeAnimation() command also switches the scripts, so the global variables weren't set when the dopplegangers die. I have fixed the error, however.

You have to add the following script via EXTEND_TOP to *all* of the scripts used by the dopplegangers:

Code: [Select]
IF
  Die()
  Global("NobleDopple","GLOBAL",1)
  !Global("SarevokBehavior","GLOBAL",4)
THEN
  RESPONSE #100
    IncrementGlobal("SarevokDoppDeath","GLOBAL",1)
END

You then use EXTEND_TOP to add the following block of script to SAREVOK.bcs:

Code: [Select]
IF
  Global("SarevokDoppDeath","GLOBAL",6)
THEN
  RESPONSE #100
    SetGlobal("SarevokDoppDeath","GLOBAL",0)
    SetGlobal("GDOPP7Dead","GLOBAL",1)
    SetGlobal("GDOPP71Dead","GLOBAL",1)
    SetGlobal("GDOPP72Dead","GLOBAL",1)
    SetGlobal("GDOPP73Dead","GLOBAL",1)
    SetGlobal("GDOPP74Dead","GLOBAL",1)
    SetGlobal("GDOPP75Dead","GLOBAL",1)
END

IF
  See([PC])
  Global("SarevokBehavior","GLOBAL",4)
  GlobalTimerNotExpired("SarevokRun","GLOBAL")
THEN
  RESPONSE #100
    SetGlobalTime("SarevokRun","GLOBAL",0)
    CreateCreature("WINSKI",[693.578],0)
    TriggerActivation("0200",TRUE)
    TriggerActivation("0109a",TRUE)
    TriggerActivation("0109b",TRUE)
    TriggerActivation("0111",TRUE)
    StartCutSceneMode()
    StartCutScene("EndCut01")
END

-Galactygon
Posted by: Galactygon
« on: June 11, 2005, 11:21:34 AM »

I have encountered the same error. I am quite certain it has to do with the doppleganger variables not being set (because of the animation change?), but I will try to fix it myself and give you the results.

-Galactygon