Construction Set Problem mit Script

ElgorDornenHand

Fremdländer
Ich wollte eine Quest in CS erstellen mit folgendem Script:


[code:1]Scriptname 00Notiz1Script

short Doonce

begin OnActivate

if ( IsActionRef Player == 1 ) && ( Doonce == 0 )
SetStage 00NotizQuest 10
set Doonce to 1
endif

Activate

end[/code:1]


das hat nicht funktioniert. Es kan immer folgende fehlermeldung beim versuch es zu speichern:


Script'(null)',line 1:
Script command "code" not found.

Was ist daran falsch?

Bitte Hilfe!!!

LG Elgor Dornenhand
 
Vorausgesetzt, Du hast keinen fehlerhaften CODE-Block setzen wollen,
Code:
wie so etwas hier
sonder das
Code:
[code:1]Scriptname 00Notiz1Script

short Doonce

begin OnActivate

  if ( IsActionRef Player == 1 ) && (  Doonce == 0 )
    SetStage 00NotizQuest 10
    set Doonce to 1
  endif

Activate

end[/code:1]
ist tatsächlich dein Skript, dann sollte es wohl eher so aussehen:
Code:
Scriptname 00Notiz1Script
 
 short Doonce
 
 begin OnActivate
 
   if ( IsActionRef Player == 1 ) && (  Doonce == 0 )
    SetStage 00NotizQuest 10
    set Doonce to 1
  endif
 
 Activate
 
 end
Dann kann die Fehlermeldung auch gar nicht mehr erscheinen, da code in deinem Skript dann nicht mehr vorkommt.