武装突袭3

武装突袭3

SCP Containment Project - Standalone
 此主题已被置顶,因此可能具有重要性
Silence  [开发者] 2022 年 11 月 24 日 上午 11:09
Scripts
[parameter_1] spawn EHS_Common_fnc_rotateSCP;

/* [player] spawn EHS_Common_fnc_rotateSCP */

// the unit you want to run this script on (e.g player or object variable) - this function is automatically run on SCP's that need it

[parameter_1, parameter_2, parameter_3] call EHS_Common_fnc_spawnSCP;

/* "EHS_SCP_Girl_No_Rotate", player, false ] call EHS_Common_fnc_spawnSCP; */

// SCP classname, unit you want to run on, always make 3 false

[parameter_1, parameter_2, parameter_3] spawn EHS_Sounds_fnc_scarePlayer;
[parameter_1, parameter_2, parameter_3] spawn EHS_Sounds_fnc_scarePlayerCultist;
/*
[ _this, "EHS_Long_Little_Girl", true ] spawn EHS_Sounds_fnc_scarePlayer;
[ _this, "EHS_Long_Little_Girl", true ] spawn EHS_Sounds_fnc_scarePlayerCultist;
*/

// ^You can run this by double clicking on a player in zeus, and running it in the debug console that pops up^

// unit you want to run on, sound classname (found in cfgSounds/config.cpp in EHS_Sounds), allow gasmask (true/false)

[parameter_1] spawn EHS_Sounds_fnc_scareRandomPlayer;

/* [ true ] spawn EHS_Sounds_fnc_scareRandomPlayer; */

// Will choose, and remoteExec one of the scarePlayer functions locally on a random player. (Only that one player can see it!)
最后由 Silence 编辑于; 2022 年 11 月 25 日 上午 9:23