RT. Green Label
Member-
Content Count
55 -
Joined
-
Last visited
-
Medals
Community Reputation
10 GoodAbout RT. Green Label
-
Rank
Lance Corporal
-
whenever you played a domination mission on a server, it will pop up in c:\users\%name%\appdata. copy them in your mp folder and u can host them.
-
Editing, Expanding and Modifying Domination
RT. Green Label replied to Tankbuster's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
it seems to be working now... :) a releave tho' remains a question, probably script did not load properly. Another question guys, more of a general question, but since i am editing a domination mission you guys can help me out: I added f16's in the OA domi, so i made a @folder and copied addons in, etc. And it works fine on the server BUT, only people who have the addon (or mod) aswel can join the server. i know this is normal because it is setup as a mod and I wonder if there is a way to put an addon in the server so everyone who hasn't got the f16 addon will download it from the server and join after that. kind of like a mission you didn't play yet. 1.is it possible? 2.How? maybe i can mix it in the domination mission so it is in the PBO? -
Editing, Expanding and Modifying Domination
RT. Green Label replied to Tankbuster's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
anyone advice on that airdrop? or am i the only one with that problem? no airdrop on DOMI ACE 2.28 is normal? or is there a fix for it? -
Editing, Expanding and Modifying Domination
RT. Green Label replied to Tankbuster's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Sry Tank, i was refering to the chances of getting an aircraft, nvm. I am since today running an ACE domi AI 2.28 version on my server, but the airdrop doesn't seem to work. I tried every airdrop but the when the planes flies over, he droppes nothing. Any advice on how to solve this? i compared the x_createdrop.sqf of an ace and non-ace 2.28 version and they show no difference. Regards -
Editing, Expanding and Modifying Domination
RT. Green Label replied to Tankbuster's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Xeno adjusted that already since version 2.24 (i believe) What version are you using? -
Editing, Expanding and Modifying Domination
RT. Green Label replied to Tankbuster's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
TX lads, i can work with this info. I'll start cracking my brain after my morning coffee :D -
Editing, Expanding and Modifying Domination
RT. Green Label replied to Tankbuster's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
nice thread Tankbuster, sure it will be helpfull for a lot of people when it gets filled up. I'll start by posting the question i had on the other thread: "on request of a clanmember i have added a blackhawk to the 2.28 version. For now it can pick up ammoboxes, but i got no 'chopper menu' to drop it after loading it in. How can i get that chopper to have such a menu?" -
ty for the turorial of ACRE, this is obviously something i want! :D Another question: on request of a clanmember i have added a blackhawk to the 2.28 version. For now it can pick up ammoboxes, but i got no 'chopper menu' to drop it after loading it in. How can i get that chopper to have such a menu? feedback is always appreciated* tx
-
yo guys, in the new version i got a parameter that sais: 'with ACRE' might be a stupid question, but what is it?
-
you have to mix it with the vehicle.sqf (respawnscript) like this in the init.line: veh = [this, 30, 1800, 0, TRUE, FALSE,"_vc=[this,0] execVM ""verification.sqf"""] execVM "vehicle.sqf"; _vc=[this,0] execVM "verification.sqf";
-
(_letter0==61)&&(_letter1==87)&&(_letter2==66)&&(_letter3==71)&&(_letter4==61) http://asciitable.com/ use this table to make adjustments. and its not MY script, Edited it from BoneCollector (=7Cav=) ;)
-
I use a verification script, u just need to change the letters from this line: (_letter2==??)&&(_letter3==??)&&(_letter4==??)&&(_letter5==??) according to the ACII table (starts with letter 0 as the first letter of your name). It will kick people out of vehicles if they are not from your clan. VERIFICATION SCRIPT: /* Type 0 - no gunner verification Type 1 - gunner verification Made by bonecollector edited by RT. Green Label for Green Label Comment it kick out people out of a vehicle when they are no from GL Usage : _vc=[this,0] execVM "verification.sqf"; */ _vec = _this select 0; _type = _this select 1; private [ "_vec","_was_engineon", "_name", "_narray","_letter0","_letter1","_letter2","_letter3","_letter4","_letter5","_cnt"]; //if (!isServer) then { while {true} do { //check driver if (player == driver _vec || (player == gunner _vec && _type==1) || player == commander _vec) then { _name=name player; _narray= toArray(_name); _letter0=(_narray select 0); _letter1=(_narray select 1); _letter2=(_narray select 2); _letter3=(_narray select 3); _letter4=(_narray select 4); _letter5=(_narray select 5); _cnt=count _narray; if (_cnt<7) then { player action ["Eject",_vec]; player commandChat "This vehicule is restricted to Green Label members only" ; _vec engineOn false; } else { if (((_letter2==??)&&(_letter3==??)&&(_letter4==??)&&(_letter5==??))) then { } else { player action ["Eject",_vec]; player commandChat "This vehicle is restricted to Green Label members only" ; _vec engineOn false; }; }; }; sleep 3; }; //}; hope this helps.
-
nice, this is handy for me aswel. tx Tank
-
If you are doing the 'sidemissions only' there are no supportbuildings. So no Jet service, Wreck service or Chopper service. Don't know about the Vehicle service tho'.
-
hehe, no problem, we can edit them in ourselfs. but i do concurr with the team vs team version, if you ever find the time.