scriptName
From Bohemia Interactive Community
Click on the images for descriptions
Introduced in
- Game:
- Arma 2
- Version:
- 1.00
Description
- Description:
- Assign a user friendly name to the VM script this command is executed from. Once name is assigned, it cannot be changed.
Syntax
- Syntax:
- scriptName name
- Parameters:
- name: String -
- Return Value:
- Nothing
Examples
- Example 1:
scriptName "leetScript.sqf";
- Example 2:
scriptName format ["%1ARTY\data\scripts\ARTY_sadarmDeploy.sqf (_this: %1)",_this];
Additional Information
- Multiplayer:
- -
- See also:
- spawnexecVMscriptDone
Notes
Only post proven facts here. Report bugs on the feedback tracker. Use the talk page or the forums for discussions.
Add New Note | How To
Add New Note | How To
Notes
- Posted on 17:39, 13 June 2009 (CEST)
- Vigilante
-
scriptName is good when you want to load the handle of some spawn or call with some name:
example_scripthandle = [] spawn { scriptName "Example"; systemChat str example_scripthandle; // System: Example }