1) mismatched begin/end block starting on line 7
2) script command setgamesetting is a console only command
Much appreciated if anyone could help me tweak this thing to functionality. It's a minor thing but would provide a nice touch to a mod I'm fooling with. This is my first crack at the geck and modding and scripts are still very much a foreign language to me. The script per the above link is as follows:
....................................................
ScriptName TerminalChange
Short toggle
Float minitimer
Short activated
Begin OnActivate player
set activated to 1
Activate ;For people without FOSE, still works.
con_setgamesetting sComputersHeader1 "GREAT ACADEMY OF VALHALLA"
con_setgamesetting sComputersHeader2 "Republic of Valhalla"
con_setgamesetting sHackingHeader "VALHALLA REPUBLIC TERMLINK PROTOCOL"
con_setgamesetting shackingintro01 "WELCOME TO VALHALLA REPUBLIC TERMLINK"
con_setgamesetting shackingintro06 "Initializing Valhalla Republic MF Boot Agent v2.1.9"
con_setgamesetting shackingintro09 "Copyright 2156-2234 Academy of Valhalla"
End
Begin MenuMode
if activated == 1
set activated to 2
endif
End
Begin GameMode
if activated == 2
set activated to 0
;On shutting down the terminal. Makes sure it doesn't show up on others.
con_setgamesetting sComputersHeader1 "ROBCO INDUSTRIES UNIFIED OPERATING SYSTEM"
con_setgamesetting sComputersHeader2 "COPYRIGHT 2075-2077 ROBCO INDUSTRIES "
con_setgamesetting sHackingHeader "ROBCO INDUSTRIES TERMLINK PROTOCOL"
con_setgamesetting shackingintro01 "WELCOME TO ROBCO INDUSTRIES TERMLINK"
con_setgamesetting shackingintro06 "Initializing Robco Industries MF Boot Agent v2.3.0"
con_setgamesetting shackingintro09 "Copyright 2201-2203 Robco Ind."
endif
End