Fallout 2 utility scripting (101)

QuantumApprentice

Where'd That 6th Toe Come From?
3 Ways to Write a Follow Script.


My first full length scripting video...complicated and long...but I hope the editing at least makes sense.
I'd love any feedback on how to better explain what's going on with the scripting process.
And, though I hesitate to ask, I'd love any feedback on anything I missed or got wrong :)

The largest collection of scripting tutorials I've found to date:
https://falloutmods.fandom.com/wiki/Category:Fallout_2_tutorials_-_scripting
Backup link: https://falloutmods.fandom.com/wiki/Fallout_2_tutorials

"Miria Mod" scripting tutorial:
https://falloutmods.fandom.com/wiki/Building_a_Better_Miria_Mod

"for" loop examples:
1) FO1in2 mod - https://github.com/rotators/Fo1in2/...Mapper/source/scripts/headers/command.h#L1036
2) sfall sample script - https://github.com/phobos2077/sfall...mods/ComputeDamage/gl_compute_damage.ssl#L102
"while" loop example:
1) FO1in2 mod - https://github.com/rotators/Fo1in2/...1in2/Mapper/source/scripts/headers/fo1.h#L503
 
Last edited:
Instead of the old assignment := you can use modern way =

There are some tricks to writing code, so writing the word
'var' press the Tab key and the word replaced to 'variable'
the same thing with:
proc -> Тab -> procedure
if -> Тab
elif -> Тab
while/for -> Тab

to avoid writing the keyword 'end' every time, press Enter after the keyword 'begin' - this will automatically insert the keyword end.
 
Back
Top