Posted 16 January 2005 - 12:44 PM
					
				
				
				
					<Ech ... I have other problem. I made AR2010.BAF file:>
--------------------------------------------------------------------------
IF
	OnCreation()
	Global("NewGame","AR2010",0)
THEN
	RESPONSE #100
		HideGUI()
		FadeToColor([1.0],0)
		SetGlobal("NewGame","AR2010",1)
		Continue()
END
IF
	Global("TakeImportItems","AR2010",0)
THEN
	RESPONSE #100
		SetGlobal("TakeImportItems","AR2010",1)
		SetGlobal("Chapter","GLOBAL",1)
		SmallWait(4)
		TakePartyGold(2147483647)
		ActionOverride(Player1,DestroyAllEquipment())
		ActionOverride(Player2,DestroyAllEquipment())
		ActionOverride(Player3,DestroyAllEquipment())
		ActionOverride(Player4,DestroyAllEquipment())
		ActionOverride(Player5,DestroyAllEquipment())
		ActionOverride(Player6,DestroyAllEquipment())
		TextScreen("CHAPT01")
		Wait(1)
		CreateCreature("Skarmaen",[265.717],12)
		FadeFromColor([30.0],0)
		StartCutSceneMode()
		StartCutScene("NewGame")
END
--------------------------------------------------------------------------
<And also NEWGAME.BAF file:>
--------------------------------------------------------------------------
IF
	True()
THEN
	RESPONSE #100
		CutSceneId("Skarmaen")
		Wait(3)
		MoveViewPoint([280.702],INSTANT)
		SmallWait(1)
		MoveToPoint([495.495])
		Wait(1)
		SmallWait(3)
		MoveToPoint([600.430])
		Wait(1)
		UnhideGUI()
		EndCutSceneMode()
		Dialogue(Player1)
END
--------------------------------------------------------------------------
Of course I also created SKARMAEN.CRE. When I star the game everything work - TextScreen work .... after that it's fade from black colour and starts cut scene mode.... and stops!