Alef – User

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "description.ext" to "description.ext")
m (Text replacement - "[[ArmA:STOVL" to "[[ArmA: Armed Assault: STOVL")
Line 34: Line 34:
* [[raP_File_Format_-_Elite]]
* [[raP_File_Format_-_Elite]]
* [http://www.ofpec.com/forum/index.php?topic=33539 dumpConfig]
* [http://www.ofpec.com/forum/index.php?topic=33539 dumpConfig]
* [[ArmA:STOVL]]
* [[ArmA: Armed Assault: STOVL]]
* [http://www.armatechsquad.com/ArmA2Class/ Visual library]
* [http://www.armatechsquad.com/ArmA2Class/ Visual library]
* [http://forums.bistudio.com/showthread.php?t=73424 How to make a basic Briefing in Arma 2]
* [http://forums.bistudio.com/showthread.php?t=73424 How to make a basic Briefing in Arma 2]

Revision as of 13:58, 31 January 2023


My OFPEC tag: ALEF | My GitHub

Subpages

Bookmarks

Object References

  • vehicleVarName obj -> string
  • obj setVehicleVarName string
  • objects may be allocated without any name, MP slots too (?)
  • player is a pointer to a Unit, "isPlayer unit" is true also in MP, not while JIP
  • Team_Switch functions will change the player pointer to another unit
  • setVariable add a name/value pair to an object address space
    • what happens if executed with public=true on a createVehicleLocal'd object ?
  • dead bodies of respawning units have the same vehicleName of the player

3DEN

Custom attributes: configfile >> "CfgVehicles" >> (module) >> "Arguments" >> ...

Vehicles Assigments

assignAsDriver - aG eG moveInDriver - aL eG unassignVehicle - aL assignedVehicle - aL assignedVehicleRole - aL

Dump Files

As from build 81423. WER .dmp: WithDataSegs, WithUnloadedModules .mdmp: WithDataSegs, WithIndirectlyReferencedMemory

Include Path

editor:
 mission.island\aaa\bbb\ccc
                init.sqf
                #include "\
                aaa\file.sqf"
                    file.sqf
                    #include   "\x"   -> C:\<profile>\missions\mission.island\aaa\x
                    #include    "x"   -> C:\<profile>\missions\mission.island\aaa\x
                    #include    "x\y" -> C:\<profile>\missions\mission.island\aaa\x\y
                    #include "..\x"   -> C:\<profile>\missions\mission.island\aaa\..\x
                    #include "..\x\y" -> C:\<profile>\missions\mission.island\aaa\..\x\y
sp:
 missions\__cur_sp.island\aaa\x