Jump to content

Search the Community

Showing results for tags 'coding'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • BOHEMIA INTERACTIVE
    • BOHEMIA INTERACTIVE - NEWS
    • BOHEMIA INTERACTIVE - JOBS
    • BOHEMIA INTERACTIVE - GENERAL
  • FEATURED GAMES
    • Arma Reforger
    • Vigor
    • DAYZ
    • ARMA 3
    • ARMA 2
    • YLANDS
  • MOBILE GAMES
    • ARMA MOBILE OPS
    • MINIDAYZ
    • ARMA TACTICS
    • ARMA 2 FIRING RANGE
  • BI MILITARY GAMES FORUMS
  • BOHEMIA INCUBATOR
    • PROJECT LUCIE
  • OTHER BOHEMIA GAMES
    • ARGO
    • TAKE ON MARS
    • TAKE ON HELICOPTERS
    • CARRIER COMMAND: GAEA MISSION
    • ARMA: ARMED ASSAULT / COMBAT OPERATIONS
    • ARMA: COLD WAR ASSAULT / OPERATION FLASHPOINT
    • IRON FRONT: LIBERATION 1944
    • BACK CATALOGUE
  • OFFTOPIC
    • OFFTOPIC
  • Die Hard OFP Lovers' Club's Topics
  • ArmA Toolmakers's Releases
  • ArmA Toolmakers's General
  • Japan in Arma's Topics
  • Arma 3 Photography Club's Discussions
  • The Order Of the Wolfs- Unit's Topics
  • 4th Infantry Brigade's Recruitment
  • 11th Marine Expeditionary Unit OFFICIAL | 11th MEU(SOC)'s 11th MEU(SOC) Recruitment Status - OPEN
  • Legion latina semper fi's New Server Legion latina next wick
  • Legion latina semper fi's https://www.facebook.com/groups/legionlatinasemperfidelis/
  • Legion latina semper fi's Server VPN LEGION LATINA SEMPER FI
  • Team Nederland's Welkom bij ons club
  • Team Nederland's Facebook
  • [H.S.O.] Hellenic Special Operations's Infos
  • BI Forum Ravage Club's Forum Topics
  • Exilemod (Unofficial)'s General Discussion
  • Exilemod (Unofficial)'s Scripts
  • Exilemod (Unofficial)'s Addons
  • Exilemod (Unofficial)'s Problems & Bugs
  • Exilemod (Unofficial)'s Exilemod Tweaks
  • Exilemod (Unofficial)'s Promotion
  • Exilemod (Unofficial)'s Maps - Mission Files
  • TKO's Weferlingen
  • TKO's Green Sea
  • TKO's Rules
  • TKO's Changelog
  • TKO's Help
  • TKO's What we Need
  • TKO's Cam Lao Nam
  • MSOF A3 Wasteland's Server Game Play Features
  • MSOF A3 Wasteland's Problems & Bugs
  • MSOF A3 Wasteland's Maps in Rotation
  • SOS GAMING's Server
  • SOS GAMING's News on Server
  • SOS GAMING's Regeln / Rules
  • SOS GAMING's Ghost-Town-Team
  • SOS GAMING's Steuerung / Keys
  • SOS GAMING's Div. Infos
  • SOS GAMING's Small Talk
  • NAMC's Topics
  • NTC's New Members
  • NTC's Enlisted Members
  • The STATE's Topics
  • CREATEANDGENERATION's Intoduction
  • CREATEANDGENERATION's HAVEN EMPIRE (NEW CREATORS COMMUNITY)
  • HavenEmpire Gaming community's HavenEmpire Gaming community
  • Polska_Rodzina's Polska_Rodzina-ARGO
  • Carrier command tips and tricks's Tips and tricks
  • Carrier command tips and tricks's Talk about carrier command
  • ItzChaos's Community's Socials
  • Photography club of Arma 3's Epic photos
  • Photography club of Arma 3's Team pics
  • Photography club of Arma 3's Vehicle pics
  • Photography club of Arma 3's Other
  • Spartan Gamers DayZ's Baneados del Servidor
  • Warriors Waging War's Vigor
  • Tales of the Republic's Republic News
  • Operazioni Arma Italia's CHI SIAMO
  • [GER] HUSKY-GAMING.CC / Roleplay at its best!'s Starte deine Reise noch heute!
  • empire brotherhood occult +2349082603448's empire money +2349082603448
  • NET88's Twitter

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber (xmpp)


Skype


Biography


Twitter


Google+


Youtube


Vimeo


Xfire


Steam url id


Raptr


MySpace


Linkedin


Tumblr


Flickr


XBOX Live


PlayStation PSN


Origin


PlayFire


SoundCloud


Pinterest


Reddit


Twitch.Tv


Ustream.Tv


Duxter


Instagram


Location


Interests


Interests


Occupation

Found 25 results

  1. Hello! First | The basic premise of what I am attempting to do is two-fold. A) respawn existing vehicles (of different types - i.e. some jets, some helicopters, some ground vehicles), with the same custom pylons - for the jets/helis - set by the pylon/dynamic loadout editor in 3den. This part works fine thus far (see below). And B) apply unlimited ammo on a delay (i.e. it takes 45 seconds for the ammo to restore) to both the original vehicle and its respawned clone. The main trouble I am having is getting unlimited ammo to work with the new, respawned vehicles. Second | A code dump and summary of what is where: The code below is my unlimited ammo expression in the existing F/A-181 (and other vehicles). Ideally, the missiles & bombs refresh on a delay, hence the {sleep 45} segment. This part works perfectly for my purposes. this addEventHandler ["Fired",{[_this select 0,getNumber (configFile/"CfgAmmo"/(_this select 4)/"explosive")] spawn {if (_this select 1==1) then {sleep 45};_this select 0 setVehicleAmmo 1}}]; This code is present in the expression of a Game Logic and synced to all relevant air vehicles. It works perfectly for my purposes; no errors and functions as intended. [this] call { if (!isServer) exitWith {}; params ["_thisObject"]; _vehs = synchronizedObjects _thisObject; _initScript = { params ["_vehicle", ["_pylons", "none"]]; if (typeName _pylons == typeName []) then { private _pylonPaths = (configProperties [configFile >> "CfgVehicles" >> typeOf _vehicle >> "Components" >> "TransportPylonsComponent" >> "Pylons", "isClass _x"]) apply { getArray (_x >> "turret") }; { _vehicle removeWeaponGlobal getText (configFile >> "CfgMagazines" >> _x >> "pylonWeapon") } forEach getPylonMagazines _vehicle; { _vehicle setPylonLoadout [_forEachIndex + 1, _x, true, _pylonPaths select _forEachIndex] } forEach _pylons; }; }; { [_x] call _initScript; } forEach _vehs; [_vehs, _initScript] spawn { params ["_vehs", "_initScript"]; sleep 1; _respawnlist = []; { _respawnlist = _respawnlist + [[_x, position _x, [vectorDir _x, vectorUp _x], getPylonMagazines _x]] } forEach _vehs; while { true } do { sleep 1; { _veh = _x # 0; _respawnpos = _x # 1; _playerdistance = 200; { if (_veh distance _x < _playerdistance) then { _playerdistance = _veh distance _x }; } forEach allPlayers; if (!alive _veh || (_veh distance _respawnpos > 20 && _playerdistance > 20)) then { _vehType = typeOf _veh; [_veh, _respawnlist] spawn { params ["_veh", "_respawnlist"]; deleteVehicleCrew _veh; _veh lock true; _inSpawn = false; waitUntil { sleep 0.5; _inSpawn = false; { _respawnpos = _x # 1; if ((_veh distance _respawnpos) < 30) exitWith { _inSpawn = true; }; } forEach _respawnlist; _inSpawn || ((speed _veh == 0) && (isTouchingGround _veh)); }; if (!_inSpawn) then { sleep 30 }; deleteVehicle _veh; }; sleep 10; _newveh = _vehType createVehicle _respawnpos; _newveh setPos _respawnpos; _newveh setVectorDirAndUp (_x # 2);[_newveh, _x # 3] call _initScript; _respawnlist set [_forEachIndex, [_newveh, _respawnpos, _x # 2, _x # 3]]; }; } forEach _respawnlist; }; }; }; This is the current code present in the "System Specific - Vehicle Respawn" Module expression (not its Init). It does not work at all. params ["_newVeh", "_oldVeh"]; [_newVeh addEventHandler ["Fired", { [_newVeh select 0, getNumber (configFile/"CfgAmmo"/(_newVeh select 4)/"explosive")] spawn { if (_newVeh select 1 >= 0) then { sleep 5 }; _newVeh select 0 setVehicleAmmo 1 } }]] call BIS_fnc_initVehicle; The Vehicle Respawn Module: It throws the no errors upon mission launch and no errors upon vehicle respawn. My friends and I suspect it is not even executing properly. Here are a few screencaps of the 3den editor of the scene in question if it helps you: // Overview of the whole airfield. The Vehicle Respawn Module on the Right by the center of the airfiled is exlusively linked to ground vehicles. It respawns the vehicles fine but without the unlimited ammo. // The test F/A-181. // The Game Logic. // My two primary test subjects (Left is experimental; Right is the control). As you can see, the left F/A-181 is the primary test subject for the Vehicle Respawn Module, as it is synced to both the Vehicle Respawn and the Game Logic. The right F/A-181 (and all other air vehicles) is synced only to the Game Logic. Both jets initially spawn with the proper pylons/dynamic loadouts and unlimited ammo, as expected vis-a-vis the 3den editor settings. Both jets respawn with the proper pylons/dynamic loadouts. Neither jet respawns with unlimited ammo, currently. I feel close to solving this, but I am blind to what I am missing/adding unnecessarily. I have tried numerous other variations with even less luck. I am sure there is some redundancy between the Vehicle Respawn Module and the game logic, and I would appreciate any simplifications there. However, that is a secondary concern. Thanks for reading this far! Hopefully, you can help me and anyone else who wants to do this.
  2. Hi im triying to setup a waypoint "on-activation"-script for the task to liberate 3 villages. I want it to check when triggered if there is still enemy units in the trigger area. When there are none left its liberated : which means it should add +1 to liberated villages (3 villages in total). But my script doesnt seem to work. Please i need help. Happy New Year btw ! Screenshots : file:///C:/Users/taras/Downloads/script%20help/problem.PNG Condition : !((count (units group thisList) > 0) && {(side _x == east) || (side _x == resistance)} count (units group thisList) > 0) On activation : _taskName = "Liberate Villages"; _villageName = "Pavlokhov"; if (!(taskState [_taskName, _villageName])) then { taskSetState [_taskName, _villageName, true]; _liberatedVillages = 0; { if (taskState [_taskName, _x]) then { _liberatedVillages = _liberatedVillages + 1; }; } forEach ["Pavlokhov", "Novoshny", "Solnevny"]; hint format ["%1 Villages Liberated! Move on.", _liberatedVillages]; };
  3. making my own server and looking for someone to create a mission cycle/ building a home base for a vietnam server i already have a map that i want to use for the server if anyone can do this please contact me on here or steam WalmartFleshlight need to see your steam account to see what you have created already and we can go from there or if you know someone who can do this please send them a message to contact me as well all other stuff will be discussed when in a call
  4. I am pretty new to scripting and Arma 3 mission editing in general. I want to create a template mission that I can copy code from and such for future missions, I am currently trying to figure out spawning AI with triggers and have made a separate post on that topic. I want to implement a headless client into this mission to improve performance, I want to avoid using mods if possible and would rather keep everything vanilla. I have looked into the Headless Client wiki page and many videos and guides, however I am still pretty much at square one trying to figure this out. Essentially what I want is for AI spawned via triggers, throughout the mission to be automatically transferred to the headless client if one is available, otherwise to continue normally if there is no headless client available. I would also like to know how to setup the headless client in general, my smooth brain does not understand the explanations given on the wiki page for the Headless Client, a step by step explanation would be very useful to me. Thanks any help is appreciated. ❤️
  5. Hi, I am looking for a developer for my Invade And Annex server. I require a few smallish changes to the framework I am using. I'm using Quiksilvers Apex_framework_155.Altis invade and annex mission on my server but I've ran into a few bugs and things I want added into the server. What I'm looking for specifically is all land vehicles to be able to be slingloaded via Huron. The fuel usage cut to a quarter. The group system redone as the current one is broken and glitchy. A rank system that saves points and handles rankings. (May require SQL database knownledge.) Finally a Anti-air role added into the other roles and it is the only one that is missing. Payment can be discussed in Pms Thanks
  6. Hi, I am looking for a developer for my Invade And Annex server. I require a few smallish changes to the framework I am using. I'm using Quiksilvers Apex_framework_155.Altis invade and annex mission on my server but I've ran into a few bugs and things I want added into the server. What I'm looking for specifically is all land vehicles to be able to be slingloaded via Huron. The fuel usage cut to a quarter. The group system redone as the current one is broken and glitchy. A rank system that saves points and handles rankings. (May require SQL database knownledge.) Finally a Anti-air role added into the other roles and it is the only one that is missing. Payment can be discussed in Pms
  7. My vest config worked for up to 1k lines, coded a new vest and now I get this error. I deleted the most recent vest code and tried unchecking “Clear temp folder” and “Binarize”, and I dont have an addon prefix, not sure if that actually does anything but I’ve seen other people fix this problem by doing that. I can’t find any errors in the model config or the other config but I’m still relatively new and something could have went by unnoticed. Edit - Moved the vest file to my P Drive and packed it from there and it got rid of the error.
  8. I have been working on this for a few days now following some other examples I've seen but cant seem to get this to work. Trying to make a addAction that hides an object for a limited time, hides the interaction for a longer time, but re-enables both. Using the syntax of the wiki stops the addAction from even showing up on the object however. If anyone has some pointers or even better a fix I'd appreciate it. this addAction [ "<t color='#FF0000>WARNING Shield Override WARNING</t>", { params ["_target", "_caller", "_arguments"]; _target setVariable ["ShieldReset",false]; [Shield_1, true] remoteExec ["hideObjectGlobal", 0]; Sleep 10; [Shield_1, false] remoteExec ["hideObjectGlobal", 0]; sleep 10; _target setVariable ["ShieldReset",true]; }, nil, 1.5, true, true, "", "_target getVariable ['ShieldReset',true]", 5, false, "", "" ];
  9. Hello, I'm new to Arma 3 and I wanted to make a mission for my friends however, I ran into a problem whilst creating the sound as I wanted a custom song/music. everytime I walk into the trigger it shows an error saying "sound music1 not found" (music1 being the folder of the OGG file [the music]) =========================================================== Code: class CfgMusic { tracks[]={music1}; class track1 { name="music1"; sound[] = {\music\music1.ogg, db+10, 1.0}; }; }; ============================================================ any help will be great thanks -H11Z3
  10. So Ive been retexturing quite a lot of base games vehicles for my unit and don't normally come across issues we can figure out but this is giving me a head ache, the Gryphon retexture will spawn properly and give no errors when placed down but no matter what I do it spawns with base game AAF green textures instead of my custom textures, what's making my head hurt even more is that it will spawn with the 117 numbers like I have to set to display in the code but still no custom textures. Here is the code for the vehicle, I've triple checked the paths to the textures. Any help would be nice. class CfgVehicles { class I_Plane_Fighter_04_F; class ARMCO_Gripen_wd: I_Plane_Fighter_04_F { author="Gunner"; displayName="[ARMCO] Gripen (Woodland)"; scope=2; scopeCurator=2; faction="Armco_Arsenal"; editorCategory="armco_units2"; editorSubcategory="armco_units_plane"; crew="B_Pilot_F"; forceInGarage=1; side=1; hiddenSelections[]= { "camo_1", "camo_2", "camo_3", "number_01", "number_02", "number_03" }; hiddenSelectionsTextures[]= { "custom_vehicles\Gripen\data\Fighter_04_fuselage_01_wd_co.paa", "custom_vehicles\Gripen\data\Fighter_04_fuselage_02_wd_co.paa", "a3\air_f_jets\plane_fighter_04\data\Fighter_04_misc_01_co.paa", "a3\air_f_jets\plane_fighter_04\Data\Numbers\Fighter_04_number_01_ca.paa", "a3\air_f_jets\plane_fighter_04\Data\Numbers\Fighter_04_number_01_ca.paa", "a3\air_f_jets\plane_fighter_04\Data\Numbers\Fighter_04_number_07_ca.paa", }; class TextureSources { class Woodland { displayName="ARMCO Woodland"; author="Gunner"; textures[]= { "custom_vehicles\Gripen\data\Fighter_04_fuselage_01_wd_co.paa", "custom_vehicles\Gripen\data\Fighter_04_fuselage_02_wd_co.paa", "a3\air_f_jets\plane_fighter_04\data\Fighter_04_misc_01_co.paa", "a3\air_f_jets\plane_fighter_04\Data\Numbers\Fighter_04_number_01_ca.paa", "a3\air_f_jets\plane_fighter_04\Data\Numbers\Fighter_04_number_01_ca.paa", "a3\air_f_jets\plane_fighter_04\Data\Numbers\Fighter_04_number_07_ca.paa", }; factions[]= { "BLU_F", "BLU_T_F", "Armco_Arsenal" }; }; }; textureList[]= { "Woodland", 1 }; tf_encryptionCode="tf_west_radio_code"; tf_dialog="rt1523g_radio_dialog"; tf_subtype="digital_lr"; tf_range=25000; tf_dialogUpdate="call TFAR_fnc_updateLRDialogToChannel;"; tf_hasLRradio=1; }; };
  11. In short, I made a faction mod by using Drongo's Config Generator to create new units based on units from other mods and official platform updates. I took the faction mod config file into Notepad++ and edited it to add editor subcategories for my units to help improve organization and scenario compatibility. One problem remained: many of my units did not appear under the category of my faction in 3DEN or Zeus (though some arbitrarily did). Instead, they appear under the subcategory I assigned them, but under the faction category that the unit I had built them upon belonged to. This includes infantry, vehicles, turrets, and other such hardware. Squads and groups appear to function fine. In order to solve this, we went into the configs and added a class editorCategory under the same display name as the faction, then assigned this category to all the units in cfgVehicles. they all appeared, neat and organized, as desired. This for some reason broke compatibility with the Reinforcements Module of Achilles, and now my faction no longer appears under the Vehicle Faction selection dialogue, although it still appears under the squad selection dialogue for the same module. Since Achilles reinforcements only handles infantry in the form of groups, I think the issue at hand is not limited to only vehicles, but all units under cfgVehicles including infantry and others. Just as well, in cfgVehicles, all the units are assigned to my faction, and should be appearing under the appropriate category, but don't. There is no issue with selecting the faction as a playable faction in scenarios like Dynamic Recon Ops, and if the classname for the faction were somehow wrong in the config files, I would be getting all kinds of errors. This leads me to believe that, somehow, there is an issue with my units inheriting the faction editor categories of the factions their base units originated from. This is strange, because unless a unit can somehow belong to more than one faction simultaneously, they should not be inheriting these classes and the original faction category should be completely overriden by the new one. I am ready to provide photographic examples as necessary for clarification, and my config as well.
  12. FuRixX Lamborghini

    Arma 3 Code Question

    Hi I wanna to do a BadWords script so i need a code that check if any word are in the message Example code: _badwords = ["Bitch", "Fuck", "Fuck You"]; _message = "You are a Bitch"; //(imagine that this message was recover in a dialog that was the chat). // next code is the wrong if (_message in _badwords) then { hint "You said a bad word"; }; // 😧 that cant becouse to give true need that the badword contain all the message, is imposible so any can help me? Pd: thats not the code, this is and example, sorry if the code is very wrong but im writing in my iPhone the script :,o
  13. So I have made "script" for myself that I put in the Player Init. This only executes once. But I want it to execute every time I spawn/respawn (so everytime the player starts existing). The script works great if I put it in the Init of the Player. But i wanted to make a .sqf file I could call/execute so I wont have to put everything in every Player. But the scipt is not working/compiling. The code I put in to the Init: varPlayer=this; spawnPos=getPos varPlayer; telePos=getPos varPlayer; [varPlayer, 3] call BIS_fnc_traceBullets; varPlayer addAction["<t color='#59b300'>Arsenal</t>", {["Open",true] spawn BIS_fnc_arsenal;}]; varPlayer addAction["<t color='#d9006c'>Go to Spawn</t>", {varPlayer setPos spawnPos;}]; varPlayer addAction["<t color='#bfff00'>Teleport</t>", {varPlayer setPos telePos;}]; varPlayer addAction["<t color='#4cffff'>set Teleport</t>", {telePos=getPos varPlayer;}]; varPlayer addAction["<t color='#0080ff'>Teleport with Map</t>", "teleport.sqf"]; The code I put in to the .sqf: _spawnPos=getPos _this; _telePos=getPos _this; [_this, 3] call BIS_fnc_traceBullets; _this addAction["<t color='#59b300'>Arsenal</t>", {["Open",true] spawn BIS_fnc_arsenal;}]; _this addAction["<t color='#d9006c'>Go to Spawn</t>", {_this setPos _spawnPos;}]; _this addAction["<t color='#bfff00'>Teleport</t>", {_this setPos _telePos;}]; _this addAction["<t color='#4cffff'>set Teleport</t>", {telePos=getPos _this;}]; _this addAction["<t color='#0080ff'>Teleport with Map</t>", "teleport.sqf"]; How I called it in the Init: _nul = []execVM "myFunction.sqf"; It wont run, but why? So for short. What i need help with is: finding the problem with the sqf executing the sqf every time the player starts existing Thx for reading my crap and I hope you can help me. :)
  14. Alright, so currently I am developing an OPTRE Spec Ops mission, where a group of ODST soldiers start in a Pelican dropship headed towards its insertion point. I want to begin the mission with a red light within the interior of the Pelican, which I have managed to do successfully. But, I want that light to switch to green whenever the dropship is over the insertion point activated by a trigger that I have designated as (A1). It seems that the code I implement within the initialization fields of the dropship works, but only for a split second as the red light flickers, but does not change to green. Any help is greatly appreciated! This is the code that I have tried to implement: if( triggerActivated A1) then { //The following code will set the interior color to Green. light2 = "#lightpoint" createVehicleLocal [0,0,0]; light2 setLightBrightness .125; light2 setLightAmbient [1,0.2,0.2]; light2 setLightColor [0,0,255]; light2 lightAttachObject [this,[0,-2.5,-0.8]]; }; if ( !triggerActivated A1) then { //The following code will set the interior to Red. light1 = "#lightpoint" createVehicleLocal [0,0,0]; light1 setLightBrightness .125; light1 setLightAmbient [1,0.2,0.2]; light1 setLightColor [255,0,0]; light1 lightAttachObject [this,[0,-2.5,-0.8]]; pelican1 say3D ["music1", 10, 1]; };
  15. so yeah i have the code done but the skin does not show on Huron, here is the code. class CfgPatches { class Iron_Skulls_PMC_CH47I_Chinook { units[]={" Iron_Skulls_PMC_CH47I_Chinook","Iron_Skulls_PMC_CH47I_Chinook_Desert","Iron_Skulls_PMC_CH47I_Chinook_Snow"}; weapons[]={}; requiredVersion=1; requiredAddons[]={}; author="Clumsy Baron"; name="CH-47I Chinook"; }; }; class CfgVehicleClasses { class Iron_Skulls_PMC_CH47I_Chinook { displayName="Iron Skulls PMC CH-47I Chinook"; }; }; class CfgVehicles { class B_Heli_Transport_03_F; class Iron_Skulls_PMC_CH47I_Chinook: B_Heli_Transport_03_F { author="Clumsy Baron"; _generalMacro="B_Heli_Transport_03_F"; displayName="CH-47I Chinook"; vehicleClass="Iron_Skulls_PMC_CH47I_Chinook"; faction="Iron_Skulls_PMC_Woodland"; crew="Iron_Skulls_PMC_Heli_Pilot"; typicalCargo[]={"Iron_Skulls_PMC_Woodland"}; availableForSupportTypes[]={"Drop","Transport"}; side=1; scope=2; attendant=1; threat[]={0,0,0}; class TransportItems { class _xx_FirstAidKit { name="FirstAidKit"; count=20; }; class _xx_Medikit { name="Medikit"; count=10; }; }; hiddenSelectionsTextures[]={"Arma3_Iron_Skulls_PMC_CH-47I_Chinook\Data\Heli_Transport_03_ext01_CO.paa","Arma3_Iron_Skulls_PMC_CH-47I_Chinook\Data\Heli_Transport_03_ext02_CO.paa"}; }; class Iron_Skulls_PMC_CH47I_Chinook_Desert: B_Heli_Transport_03_F { author="Clumsy Baron"; _generalMacro="B_Heli_Transport_03_F"; displayName="CH-47I Chinook"; vehicleClass="Iron_Skulls_PMC_CH47I_Chinook"; faction="Iron_Skulls_PMC_Desert"; crew="Iron_Skulls_PMC_Heli_Pilot"; typicalCargo[]={"Iron_Skulls_PMC_Desert"}; availableForSupportTypes[]={"Drop","Transport"}; side=1; scope=2; attendant=1; threat[]={0,0,0}; class TransportItems { class _xx_FirstAidKit { name="FirstAidKit"; count=20; }; class _xx_Medikit { name="Medikit"; count=10; }; }; hiddenSelectionsTextures[]={"Arma3_Iron_Skulls_PMC_CH-47I_Chinook\Data\Heli_Transport_03_ext01D_CO.paa","Arma3_Iron_Skulls_PMC_CH-47I_Chinook\Data\Heli_Transport_03_ext02D_CO.paa"}; }; class Iron_Skulls_PMC_CH47I_Chinook_Snow: B_Heli_Transport_03_F { author="Clumsy Baron"; _generalMacro="B_Heli_Transport_03_F"; displayName="CH-47I Chinook"; vehicleClass="Iron_Skulls_PMC_CH47I_Chinook"; faction="Iron_Skulls_PMC_Snow"; crew="Iron_Skulls_PMC_Heli_Pilot"; typicalCargo[]={"Iron_Skulls_PMC_Snow"}; availableForSupportTypes[]={"Drop","Transport"}; side=1; scope=2; attendant=1; threat[]={0,0,0}; class TransportItems { class _xx_FirstAidKit { name="FirstAidKit"; count=20; }; class _xx_Medikit { name="Medikit"; count=10; }; }; hiddenSelectionsTextures[]={"Arma3_Iron_Skulls_PMC_CH-47I_Chinook\Data\Heli_Transport_03_ext01S_CO.paa","Arma3_Iron_Skulls_PMC_CH-47I_Chinook\Data\Heli_Transport_03_ext02S_CO.paa"}; }; }; class cfgMods { author="76561198058073375"; timepacked="1437495037"; };
  16. Hello, I am looking to make a combat Alts life RPG. I would like to do most of the placing of objects myself and a bit of coding but ill need quite a bit of help if anyone knows scripting and functions inside and out contact me through bohemia interactive messages. What I am looking for is someone who can code all the essentials for a very militarised Altis Life RPG. Some of the jobs include; Jobs; truck missions, drug runs, bounties, police/rebel/army/civs and many items such as spike strips etc.
  17. so i need help again with a retexture code because i thought i had the code right but apparently not so if you could help that would be great. enum { OrdinalEnum = 2, destructengine = 2, destructdefault = 6, destructwreck = 7, destructtree = 3, destructtent = 4, stabilizedinaxisx = 1, stabilizedinaxesxyz = 4, stabilizedinaxisy = 2, stabilizedinaxesboth = 3, destructno = 0, stabilizedinaxesnone = 0, destructman = 5, destructbuilding = 1 }; class DefaultEventhandlers; class CfgPatches { class Iron_Skulls_PMC_Blackfoot { units[] = {}; weapons[] = {}; requiredVersion = 0.1; requiredAddons[] = {}; }; }; class WeaponFireGun; class WeaponCloudsGun; class WeaponFireMGun; class WeaponCloudsMGun; class CfgVehicles { class B_Heli_Attack_01_F; class Iron_Skulls_PMC_Blackfoot_Urban : B_Heli_Attack_01_F { displayName = "Iron Skulls PMC Blackfoot Urban"; author = "Clumsy Baron"; crew = "B_Helipilot_F"; hiddenSelectionsTextures[] = {"\Arma3_Iron_Skulls_PMC_Blackfoot\Data\pmc_blackfoot_urban_co.paa"}; }; class Iron_Skulls_PMC_Blackfoot_Desert : B_Heli_Attack_01_F { displayName = "Iron Skulls PMC Blackfoot Desert"; author = "Clumsy Baron"; crew = "B_Helipilot_F"; hiddenSelectionsTextures[] = {"\Arma3_Iron_Skulls_PMC_Blackfoot\Data\pmc_blackfoot_desert_co.paa"}; }; class Iron_Skulls_PMC_Blackfoot_Snow : B_Heli_Attack_01_F { displayName = "Iron Skulls PMC Blackfoot Snow"; author = "Clumsy Baron"; crew = "B_Helipilot_F"; hiddenSelectionsTextures[] = {"\Arma3_Iron_Skulls_PMC_Blackfoot\Data\pmc_blackfoot_snow_co.paa"}; }; class Iron_Skulls_PMC_Blackfoot_Woodland : B_Heli_Attack_01_F { displayName = "Iron Skulls PMC Blackfoot Woodland"; author = "Clumsy Baron"; crew = "B_Helipilot_F"; hiddenSelectionsTextures[] = {"\Arma3_Iron_Skulls_PMC_Blackfoot\Data\pmc_blackfoot_woodland_co.paa"}; }; }; so if somthing needs to be change please tell me
  18. hi my helicopter textures are not working and if its my config can you help? enum { OrdinalEnum = 2, destructengine = 2, destructdefault = 6, destructwreck = 7, destructtree = 3, destructtent = 4, stabilizedinaxisx = 1, stabilizedinaxesxyz = 4, stabilizedinaxisy = 2, stabilizedinaxesboth = 3, destructno = 0, stabilizedinaxesnone = 0, destructman = 5, destructbuilding = 1 }; class DefaultEventhandlers; class CfgPatches { class Iron_Skulls_PMC_Ghosthawk { units[] = {}; weapons[] = {}; requiredVersion = 0.1; requiredAddons[] = {}; }; }; class WeaponFireGun; class WeaponCloudsGun; class WeaponFireMGun; class WeaponCloudsMGun; class CfgVehicles { class B_Heli_Transport_01_F; class Iron_Skulls_PMC_Ghosthawk_Urban : B_Heli_Transport_01_F { displayName = "Iron Skulls PMC Ghosthawk Urban"; author = "Clumsy Baron"; crew = "Iron_Skulls_PMC_Heli_Pilot_Urban"; hiddenSelectionsTextures[] = {"Arma3_Iron_Skulls_PMC_Air\Data\pmc_ghosthawk_ext01_urban_co.paa", "Arma3_Iron_Skulls_PMC_Air\Data\pmc_ghosthawk_ext02_urban_co.paa"}; }; class Iron_Skulls_PMC_Ghosthawk_Desert : B_Heli_Transport_01_F { displayName = "Iron Skulls PMC Ghosthawk Desert"; author = "Clumsy Baron"; crew = "Iron_Skulls_PMC_Heli_Pilot_Desert"; hiddenSelectionsTextures[] = {"Arma3_Iron_Skulls_PMC_Air\Data\pmc_ghosthawk_ext01_desert_co.paa", "Arma3_Iron_Skulls_PMC_Air\Data\pmc_ghosthawk_ext02_desert_co.paa"}; }; class Iron_Skulls_PMC_Ghosthawk_Jungle : B_Heli_Transport_01_F { displayName = "Iron Skulls PMC Ghosthawk Jungle"; author = "Clumsy Baron"; crew = "Iron_Skulls_PMC_Heli_Pilot_Jungle"; hiddenSelectionsTextures[] = {"Arma3_Iron_Skulls_PMC_Air\Data\pmc_ghosthawk_ext01_jungle_co.paa", "Arma3_Iron_Skulls_PMC_Air\Data\pmc_ghosthawk_ext02_jungle_co.paa"}; }; class Iron_Skulls_PMC_Ghosthawk_Snow : B_Heli_Transport_01_F { displayName = "Iron Skulls PMC Ghosthawk Snow"; author = "Clumsy Baron"; crew = "Iron_Skulls_PMC_Heli_Pilot_Snow"; hiddenSelectionsTextures[] = {"Arma3_Iron_Skulls_PMC_Air\Data\pmc_ghosthawk_ext01_snow_co.paa","Arma3_Iron_Skulls_PMC_Air\Data\pmc_ghosthawk_ext02_snow_co.paa"}; }; class Iron_Skulls_PMC_Ghosthawk_Woodland : B_Heli_Transport_01_F { displayName = "Iron Skulls PMC Ghosthawk Woodland"; author = "Clumsy Baron"; crew = "Iron_Skulls_PMC_Heli_Pilot_Woodland"; hiddenSelectionsTextures[] = {"Arma3_Iron_Skulls_PMC_Air\Data\pmc_ghosthawk_ext01_woodland_co.paa", "Arma3_Iron_Skulls_PMC_Air\Data\pmc_ghosthawk_ext02_woodland_co.paa"}; }; }; any help will be appreciated
  19. Marcog93

    VBS3 Scripting editor help needed

    Hello everybody! I am a research student working on his final thesis on a Helicopter Simulator implemented in VBS3. I would need to do some script in order to create a training field in VBS3, something like targets appearing that responde when you pass throught. I was used working with unity and there it´s easy to access the editor and code there. Here in VBS3 I think it´s different, I have seen that there is the possibility of writing and external function and name it with .sqf extension and then call it, but where do I call it in VBS3? Isn´t is possible to write some code directly inside VBS3? Are there any other ways of creating interaction between things without scripting? I wish a good day to all of you, Marco Gotelli
  20. Hey, so I'm a novice when it comes to modding and coding. Iv already tried re-texturing some Arma3 content so I got the basic hang of that. However I'm trying to make a dress blue with a model from CUP. When checking the "hiddenselections", "hiddenselectionstextures" and "uniformmodel" they are all empty where as for example the beret from ArmaA 3 is "model = "\A3\Characters_F_EPB\BLUFOR\headgear_beret02a";"' Iv tried filling these out and the mod itself works. However the texture I made is not showing, only the original and I am assuming that is cause CUP models dont work the same was as the vanilla? This is the specific code for it that I have writen Can anyone explain to me why its not working?
  21. I am looking for someone to help me code a arma 3 altis life server at a reasonable price rang preferably someone who is experienced and knows a decent amount in this topic any help or recommendations are Welcome ~thank you
  22. Hello everybody, i am currently working on a very big and detailed plan to make a properly done arma 2 dayz mod mod oldschool style proper first day of release. I have played dayz since the very first day i know what its all about and i have done alot of research on what was there and how everything setup, unfortunatly i cant do all the coding and modding myself as my skills are limited on the heavy hitters. So i am looking of for some modders and coders who share my vision and passion for the old dayz and are down to work on this unique project, the project it aims to catch tha flair and feel of the good ol days of dayz arma2 mod. As some of you might know, there like 1 or 2 other server out there trying to do this and even tho they do horrible job on it, yet their server are still filled to the brim allmost allways so emagine what a proper done server will achive. A little overview of what is planned https://www.pic-upload.de/view-33301738/Overview.png.html (about 15 pages font size 11 in total and still growing) The main tasks would be : -Getting the hud up to date or rather down to date https://www.pic-upload.de/view-33301742/512231231.jpg.html means all the icons changed (i allready have all the icons ready to go just needs to be changed) -Importing all the guns we need from arma 2 into arma 3 (full list of all guns that where in the game back then is ready) and making them work with sound animations and very important ZEROING, obviously back then guns didnt have attatchments so now they wont have them either which means every gun has fixed attatchments (i allready started with that task) -Map changes chernarus back then was looking quite a bit different obviously this needs to be changed to fit aswell im sure you can find the code for the special dayz mapping somewhere in the dayz files (i got allmost every dayz version file from vanilla to now) but if that wont work ill just map in the stuf. -Custom loottables will ofc also be a task that needs to be done i allready got everything planned out on what spawns where just needs to be added in a lootcompiler -Importing skins from arma2/dayz to arma 3 and make them work i thought of putting them in the vest slot since i plan on giving certain skins more armor like the hero skins to encurage less kos. -Importing all the sounds from arma 2 to arma 3 including the (background music from dayz (dont know if we are allowed to do that might have to get a license)) -Getting custom models from arma 2/ dayz for all the misc items bloodbags, car parts, etc. -Also getting a repair system working because the normal all in one duct tape exile fix is just boring. -Possibitly of making cars damaged and also make guns spawn with attatchments if needed -Getting a debug monitor running -Adding helicopter crashsites with special loot Thats roughly the goal to get these things done and working. I know very well that this is no over the weekend project or even over a few weeks but this project would go off like a rocket i already asked many ppl (100+) if they would be interested in playing on such a server with highly positive responce. I am looking very much forward to translate this into action and make a proper oldschool arma 2 dayz server. THANK YOU VERY MUCH FOR YOUR ATTENTION Best regards. Chris. STEAM: http://steamcommunity.com/profiles/76561198046410470/
  23. Hello Ladies and Gentlemen. Im seeking help with a mission im making with mods (ill make a list of what they are at the end). That being aside i want to talk what i really can do and what i want to do and if its a thing that i can code to work. The thing i want at this moment (this thread will be me asking help alot as i cant find info that works for how i learn) Is to make a area restricted to anything but OPFOR faction. i think its ment to be something about the Restricted Zone tool but i dont know coding or if this will even work. The mission will basicly be me and friends as civilians using the Mocap melee take down to stealth through a city and only be engaged if seen attacking or. if entering this zone. Any help will be apreciated. Thank you! Mods. CBA_A3 CUP Weapons ,Units, Terrains Core and Maps, Vehicles Music file (friend made) (friend made face texture) Drifter's Fatigue Remover Ares Mod - Achilles Expansion Operation: Trebuchet RHSAFRF RHSUSAF RHSGREF RHSSAF Personal Arsenal Burnes Armories - Landing Craft Air Cushion USS Iowa USS Nimitz TOH - Static Civilian Ships CAF -Aggressors TRYK's Multi-play uniform's pack revision ( Community &KA TRYK Revision) MCC Sandbox 4 - mission making the easy way Zombies and Demons E.P.S.M Project G.O.S Leskovets Chernobyl Zone Esseker Mocap 3den Enhanced Any help at all will be greatly appreciated.
  24. Hey All - another question. How do you get to the actual code files of an existing Arma 3 model, for its properties and functions? Thanks!
  25. Hi. Would it be possible to create a visible laser like this? If so, how? Thanks. EDIT: If the beam is impossible, then how do you at least get the point where it hits?
×