Jump to content

Error in Valygar script


pro5

Recommended Posts

VALYGAR.BCS

Can potentially cause game stuttering:

 

IF
Dead("Lavok02") // Lavok
!Global("LavokDead","GLOBAL",1)
See(Player1)
InParty("Valygar")
THEN
RESPONSE #100
	Wait(1)
	StartDialogueNoSet(Player1)
END

 

should be

 

IF
Dead("Lavok02") // Lavok
!Global("LavokDead","GLOBAL",1)
See(Player1)
InParty("Valygar")
THEN
RESPONSE #100
	SetGlobal("LavokDead","GLOBAL",1)
	Wait(1)
	StartDialogueNoSet(Player1)
END

Link to comment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...