OFPEC Forum
Editors Depot - Mission Editing and Scripting => OFP - Editing/Scripting Multiplayer => Topic started by: Sol Fire on 26 Jan 2003, 10:31:16
-
is it possible to use intro's and outro's in a multiplayer mission? and if so how? all mine work but when i test them in multiplayer they dont it skips them and goes straight to the mission instead and back to the MP menu instead of playing the outro's
i like using the Intro and outros they make a better way of telling everyone whats going on rather then using breifing and outro's make a better ending to all missions then just a lousy overveiw that says
"Good Work" or some dumb sounding thing like that
-
no, they dont work...if you have played a multi player mission with what seems to be in intro, then its simply an ingame cutscene...thats the way its done ::)
It works fine though, and no one has control when in an ingame cutscene, so they have 2 sit and watch anyway ;D
-
Ooh! Ooh! If you do add a cutscene to e.g. a deathmatch or flagfight and you allow AI to take the place of unfilled slots, make sure everyone is frozen before running it, and unfreeze them afterwards.
By "freezing" I mean forcing them to stop, e.g.
Player1 stop true
Player2 stop true
Player3 stop true
etc.
And "unfreezing" meaning:
Player1 stop false
Player2 stop false
Player3 stop false
etc.
Otherwise the AI will run around and score easy frags while the humans are busy watching the cutscene.
Pope Zog
-
:o huh
Don't do it that way, or they won't start moving anymore ;)
unit stop stop
Operand types:
unit: Object
stop: Boolean
Type of returned value:
Nothing
Description:
Stop AI unit. This function is obsolete. Use disableAI to get better control on stopping unit.
Example:
soldierOne stop true
~S~ CD
-
Very well... then someone could perhaps enlighten me as to how I let the AI move again after using:
AIUnit disableAi "MOVE";
Pope Zog
-
And donÂ't forget to setcaptive em!
-
Well Pope Zog, seems i understood the STOP
command description in the wrong way :-X
It just means, that the unit will do nothing as long as
STOP is true, and will do all, once STOP is false.
You're right, no way to enableAI "move" again.
Armstrong - by using the STOP command, you don't need
to setcaptive 'em.
~S~ CD