Those commands are used in .fpi scripts, just like the commands for vanilla FPSC(non modified). You can go to your FPSC directory, then the "files" folder, and then find the scriptbank folder to see all of your scripts.
Here is a script that comes with FPSC.
;Artificial Intelligence Script
;Header
desc = Plr Hurt In Zone
;Triggers
:plrwithinzone=1:state=1,plraddhealth=-1
This script would be assigned to a triggerzone. What it is telling
the game to do is.... If the player is within the zone(plrwithinzone), then he will lose health(plraddhealth=-1)
The commands in Fenix work the same way. Here is link to athread that has some tutorials on scripting.
http://forum.thegamecreators.com/?m=forum_view&t=62366&b=23
Make sure you read those tutorials,and open up scripts to see how they work. Scripts can be made in notepad, or you can download .Fpi Edit Pad, which will tell if something is wrong with your script.
EDIT: Here is a script I made with another mod, but I just substituted that mods command for the fenix mod command "playerspeed=". This script will slow the players speed down as his health drops. Assign the script to a trigger zone.
It is set for the player starting with 250 heatlth, and 80 speed. You can chnage it how you like to suit your needs.
;Artificial Intelligence Script
;Header
desc =Plr Speed Decreases as Health Drains
;Triggers
:plrhealthless=230:playerspeed=75
:plrhealthless=210:playerspeed=70
:plrhealthless=190:playerspeed=65
:plrhealthless=170:playerspeed=60
:plrhealthless=150:playerspeed=55
:plrhealthless=130:playerspeed=50
:plrhealthless=110:playerspeed=45
:plrhealthless=90:playerspeed=40
:plrhealthless=70:playerspeed=35
:plrhealthless=50:playerspeed=30
:plrhealthless=30:playerspeed=20
:plrhealthless=10:playerspeed=10
:plrhealthless=11:playerspeed=20
:plrhealthgreater=31:playerspeed=30
:plrhealthgreater=51:playerspeed=35
:plrhealthgreater=71:playerspeed=40
:plrhealthgreater=91:playerspeed=45
:plrhealthgreater=111:playerspeed=50
:plrhealthgreater=131:playerspeed=55
:plrhealthgreater=151:playerspeed=60
:plrhealthgreater=171:playerspeed=65
:plrhealthgreater=191:playerspeed=70
:plrhealthgreater=211:playerspeed=75
:plrhealthgreater=231:playerspeed=80
Just copy this and paste it in notepad(or FPI Edit Pad) and save it as a .fpi file. Then put it somewhere in your scriptbank folder.
I recently learned to sleep with my eyes open. ..... God am I tired