ok i have dyno working but i get a line 21 script error when trying to load map now i know its a script error but i dont know enogh about scripting to sort it HELP
you fight your way to gate and dyno it then steal obj and return it to the truck
before i tryed to combine the scripts
the dyno gate worked
the obj partly works it lets you steal obj and annonces it but when you drop it off at truck it takes it but nothing happens(no announcement no end map) (not sure if it never ended because it was tested in sv_pure / devmap)
after i combined the scripts i get the line 21 error when i try to load (sv_pure o /devmap)
game_manager
{
spawn
{
}
}
t1 <<<<Mapname
{
spawn
{
wait 200
constructible_class 3
}
death
{
wm_announce “Allies have destroyed the Gate!”
}
}
//Gold axis__gold
{
spawn
{
wait 200
setstate axis__gold_captured invisible
}
trigger stolen
{
wm_announce 0 “Return the axis gold to the getaway truck”
wm_announce 1 “The Allies have stolen the Axis gold”
setstate axis_gold_cm_marker invisible
}
trigger returned
{
wm_announce 0 “The Axis have retrieved the gold”
wm_announce 1 “Gold returned! Protect the gold”
setstate axis_gold_cm_marker default
}
trigger captured
{
wm_announce “The Allies have secured the Axis gold”
setstate axis_gold_red invisible
setstate axis_gold_captured default
}
}
axis_objectives //enter this as the scriptname value for the single trigger_flagonly_multiples entity
{
death
{
trigger game_manager obj1
}
}