

majorpwnage
Member-
Content Count
35 -
Joined
-
Last visited
-
Medals
Community Reputation
0 NeutralAbout majorpwnage
-
Rank
Private First Class
-
Has anyone got a working filter for Armed Assault on All-Seeing Eye? I tried to modify the OFP filter but it doesn't quite work. If anyone has the correct settings for the filter.txt, please post them. Thanks.
-
Has anyone got a working filter for Armed Assault on All-Seeing Eye? I tried to modify the OFP filter but it doesn't quite work. If anyone has the correct settings for the filter.txt, please post them. Thanks.
-
How to play CZ/GER version completely in English
majorpwnage replied to sickboy's topic in ARMA - GENERAL
I download the german version and applied the 0.6 patch. Has anyone translated the keyboard configuration in the set up options yet? edit: nevermind, I reinstalled the game and reapplied the patch. All fine. Thanks for the hard work! -
To the people who are playing ArmA, how is it?
majorpwnage replied to evilnate's topic in ARMA - GENERAL
Wow nice specs on your PC. Â Did you buy it with all of the money you stole from people with your server company that disappeared in the middle of the night leaving all of your customers hanging? -
Quite fast? Â what rock have you lived under for the past 5 years?
-
The =USA= squad will host a dedicated ArmA server. http://www.usasquad.com
-
To be honest, as long as I am able to get the game in my language it doesnt matter if its online distribution, or in a retail box, or mailed to me on 10,000 3.5" floppies. Â Besides do you honestly care what the DVD case looks like? Â I prefer to focus on the content, which seems like what BIS is doing at the moment.
-
The CCL (Classic Combat League) set of maps are multiplayer capture and hold and the only addon requirement is editor update.
-
Complete Classic Combat League mission pack: http://www.classiccombatleague.com/downloa....ack.zip from Classic Combat League website
-
I'd hire them!!! Â Look at the great job they have done getting BIS a publisher. Â
-
Regardless if it is someone from BIS who writes the blog or someone from PCZone UK magazine....they suck at updating it.
-
As far as marketing goes, the use of the blog in the first person character to describe what was happening in this fictional place was a great idea. Â A lot of possibilities with narratives, pictures, video, etc. The end result though has been disappointing. Â Just like everything else related to ArmA, the lack of updates to the blog and the poor information released is typical of the way BIS has distributed information. Â Great concept but poor execution. As far as the actual game goes, I expect that it will be nothing short of fantastic. Â I look forward to buying it in 2013 when it is finally released.
-
Nice site there. Â I too received page errors when trying to download. Â If you need space to store missions for downloading, send me a PM. Â I can help.
-
Thurs C&H night on =USA= Server. 2100 EST.
-
Descrition EXT (weapons & Magazines class per side
majorpwnage replied to terox's topic in OFP : MISSION EDITING & SCRIPTING
well if you mean that for the mp mission, west gets a specific load out at start and east gets a different load out you can do this in the init.sqs <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> removeallweapons player ? (side player == WEST): player addweapon "binocular"; player addmagazine "M4"; player addmagazine "M4"; player addmagazine "M4"; player addmagazine "M4"; player addmagazine "M4"; player addmagazine "M4"; player addmagazine "M4"; player addmagazine "M4"; player addmagazine "Handgrenade"; player addmagazine "Handgrenade"; player addweapon "XMS"; player selectWeapon "XMS" ? (side player == EAST): player addweapon "binocular"; player addmagazine "Steyrmag"; player addmagazine "Steyrmag"; player addmagazine "Steyrmag"; player addmagazine "Steyrmag"; player addmagazine "Steyrmag"; player addmagazine "Steyrmag"; player addmagazine "Steyrmag"; player addmagazine "Steyrmag"; player addmagazine "Handgrenade"; player addmagazine "Handgrenade"; player addweapon "Steyr"; player selectWeapon "Steyr" But if you mean that at in mission set up you have team options like: m16/ak47 xms/steyr bizon/bizon then you can use something like this: <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">titleParam2 = "Weapons:"; valuesParam2[] = {0,1,2,3}; defValueParam2 = 0; textsParam2[] = {" M16/AK74"," XMS/Steyr"," G36/G36"," Bizon/Bizon"}; with another script for the loadouts. Â check out ctf hexenkessel v1.9 for an example.