xezon
Member-
Content Count
85 -
Joined
-
Last visited
-
Medals
Community Reputation
0 NeutralAbout xezon
-
Rank
Corporal
-
New conversation system how-to
xezon replied to Jezuro's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Is it common practice to use the kbTell for people talking in game, talking in cinematics, etc? Why would someone not just use say or groupRadio for speech? -
http://community.bistudio.com/wiki/currentZeroing
-
ArmaScript not working with Notepad++
xezon replied to xezon's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Looked promising with the syntax check features but the text editor in the program is very bad. And the concept of establishing a connection to a server each launch is horrible. Yep thanks. Works fine now with older notepad++. -
Making changes to Class Cfgsounds and other cfgs in description.ext
xezon replied to Asung's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Can someone explain me please why this crashes mission load? If I remove CfgRadio class or the other the user mission loads without crash. class CfgRadio { sounds[] = {}; class testA { name = "testB"; sound[] = {"\sound\test.ogg", db+0, 1.0}; title = {$SIMO_TEST}; }; }; class CfgSounds { sounds[] = {}; class testC { name = "testD"; sound[] = {"\sound\test.ogg", 1, 1}; titles[] = {$SIMO_TEST}; }; }; ---------- Post added at 21:29 ---------- Previous post was at 21:00 ---------- I experimented a bit now and this loads. I don't understand the exact reason though. class CfgRadio { sounds[] = {}; class testB { name = ""; sound[] = {"\sound\test.ogg", db+0, 1.0}; title = $SIMO_TEST; }; }; class CfgSounds { sounds[] = {}; class testB { name = ""; sound[] = {"\sound\test.ogg", db+0, 1.0}; titles[] = {$SIMO_TEST}; }; }; When I create the following now it will just print Resistance: "$SIMO_TEST" and for say it prints nothing. Why? private ["_unit", "_text"]; _unit = _this select 0; _text = _this select 1; if(_unit distance player < 10) then { _unit say _text; } else { _unit globalRadio _text; }; Language, English MIS_FOLLOW, FOLLOW SIMO_TEST, test -
Make russian CIVILIANS enemy with OPFOR
xezon replied to xezon's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
With beta patch it works! Thanks! -
Squint - the sqf editor and error-checker
xezon replied to sbsmac's topic in ARMA 2 & OA : Community Made Utilities
Can't make in-text tabs. Bad. And no comment shortcut. -
ArmaScript not working with Notepad++
xezon replied to xezon's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Thanks I will check this out. Those guys at OFPEC could have mentioned that in the release or the author himself in his package :S Thanks, but I tried that already and it looks ass :D -
Make russian CIVILIANS enemy with OPFOR
xezon replied to xezon's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I made missions for OFP 8 years ago but can't remember shit haha. I haven't played the ArmA missions yet. Mostly stuck in Editor trying to make my first mission. But I am very slow. I installed the latest Beta Patch and will try to run it tomorrow and check what happens with the teaming issue. -
ArmaScript not working with Notepad++
xezon replied to xezon's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
That would be handy. JDK is a bit too overkill I think. Do you remember the name of your tool? -
Detecting Player Movement?
xezon replied to Urbansausage's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
you can specifiy a timeout in the trigger i think -
ArmaScript not working with Notepad++
xezon replied to xezon's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Yes it's true. But that Arma script tool promised to add SQF support but it did not. -
Make russian CIVILIANS enemy with OPFOR
xezon replied to xezon's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
That post is labeled as Wednesday, 19 August 2009 19:08. Are you sure this is the correct package? Edit: Got it. Thanks. -
Make russian CIVILIANS enemy with OPFOR
xezon replied to xezon's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Do you have a link for me to that thing? I don't understand what you say because I am new to this. I bought ArmA_X 7 days ago. -
ArmaScript not working with Notepad++
xezon posted a topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Hi. I installed Notepad++ and Arma Script from here: http://www.ofpec.com/ed_depot/index.php?action=details&id=596 but there is no syntax highlighting for SQF or EXT or SQM or anything else. Opening HTML shows syntax highlighting. What is wrong with the tool? Is there any good working tool for notepad++ you can recommend? Currently I use ArmA Edit and that tool is ok but not cool on the long run. I can't attach an image of my current installation because this forum allows no attachments. -
Make russian CIVILIANS enemy with OPFOR
xezon replied to xezon's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
So what can I do?