Jump to content

FCOPZ-illuminator

Member
  • Content Count

    224
  • Joined

  • Last visited

  • Medals

Everything posted by FCOPZ-illuminator

  1. Hi guys, today i played around a bit, using the general respawn module in multiplayer. It works great to define different respawn points. So, my last issue is, that i'd like to offer in this spawn menu a respawn in a vehicle. Any chance to manage this somehow, using the general spawn module? THX in advance illu
  2. FCOPZ-illuminator

    Squad.xml not working properly

    Hi guys, i just have a question regarding the Squad.xml featue. I already took over my squad.xml from ArmA and ArmA2, which is working there without any problems. But if i take over it to ArmA3, if have the following issue: Text will be displayes, but no logo. I only see a kind of "shadow" on this place, where the logo should be available. If i use a PNG file or JPG as logo, instead of PAA, it's viewable. But alpha channel is missing: http://www.abload.de/img/arma32013-03-0621-25-olypf.png (687 kB) http://www.abload.de/img/arma32013-03-0621-54-s4jtn.png (825 kB) I guess it's still a bug? Or any changes on functionality it self in ArmA3? Cheers illu
  3. FCOPZ-illuminator

    Respawn in vehicle using respawn module

    With the latest patch, the mentioned error no longer exist. N1 BI. Now i have the vehicle Name in the respawn menu back again, instead of having this funny error - AI: Error: No Unit Topic closed, from my Point of view. :)
  4. FCOPZ-illuminator

    Respawn in vehicle using respawn module

    Hi guys, until the final release of the game everything was working fine. Mobile Respawn was working including the right description in the spawn menu. Now i get a confusing Discription within the respawn menu: AI: Error: No Unit http://img5.imageshack.us/img5/6356/2uaf.jpg (282 kB) But the respawn it self is working. Name of mobile respawn car in Editor is: Ifrit Anyone an idea whats going on here? THX illu
  5. FCOPZ-illuminator

    Respawn in vehicle using respawn module

    Works great! Issue solved. Thanks guys. :)
  6. FCOPZ-illuminator

    Respawn in vehicle using respawn module

    Yeah Moricky, this is working, really! You made my day. ;) Still found a small bug/Problem (?) using the mobile respawn, in the spawn menu. I gave the spawn maker in Name (in this case "Hunter"), that user is aware of it, where to respawn. But in the spawn menu only the name of my unit is displayed ("Rifleman" instead of "Hunter"). http://img202.imageshack.us/img202/6631/nqfg.jpg (259 kB) Also possible to fix it? ;) Thanks in advance. illu
  7. FCOPZ-illuminator

    Squad.xml not working properly

    I guess it's just because of the Alpha Status. We already had this feature in ArmA before. So i'm quite sure we will also have this in the final game. But at the Moment, no official comment yet...
  8. FCOPZ-illuminator

    Squad.xml not working properly

    Don't know. But just compare the logo. The better one is in 128 x 128. http://img62.imageshack.us/img62/7538/arma32.jpg (153 kB)
  9. FCOPZ-illuminator

    sideChat only local

    Hi guys, i've question regarding "sideChat". As i know (in the meanwhile) "sideChat" is only working on my local host, if i'm hosting a Coop mission on my computer. *gg* I'm trying to give a kind of mission status report to all connected clients via "sideChat" command. I'm unable to manage it. So, i tried to use the PublicVariable, like this: Trigger "Sidechat1" Activation: Sidechat1=true; publicVariable "Sidechat1"; Trigger "Sidechat1_1" Condition: !isServer and Sidechat1 Activation: [East,"HQ"] sideChat "My Text bla blub." But this way of working is not working at all. The message does not appear on my pc, even as host. Anyone an idea how it's working? Would be great. Thanks in advance. illu
  10. FCOPZ-illuminator

    Squad.xml not working properly

    I already fixed it guys. By the way. It's also working with 512 x 512. But better result using the 128 x 128 format. http://portal.fcopz.com/showpost.php?p=53348&postcount=1
  11. Yes, it's a server setting. Kill Cam as well. Also true for vehicle third person view You can disable/enable it. Just enable the the HC mode (hardcore) to disable everything (kill cam, 3d spotting, third person on vehicle, crosshair ect...) This is already possible within Bad Company 2 and will be possible in BF3 too.
  12. FCOPZ-illuminator

    FP : DR - News & Discussion

    Still no official statement, but i'm quite sure, they will... *g
  13. FCOPZ-illuminator

    FP : DR - News & Discussion

    Come on, you are funny my friend. You know, thats not a playable resolution/quality setting ;) I mean, thats doenst looks worst ever seen.
  14. This only could be the reason. The class name for weapon or just a bug. :(I got the weapon class name from two different sites (ArmA WiKi and a ArmA Editing website). A temporary solution looks a bit crazy, if the Harrier flys a airstrike for the russian party.
  15. Hi IndeedPete, sorry but your stuff with the gunner doesnt work. Ok, i modified the script like this, to get this script running with a SU25.. ;=========DEFINE======================= _Ziel=_this select 0; _dropPosition = getpos _Ziel; ~0.5 _dropPosX = _dropPosition select 0; _dropPosY = _dropPosition select 1; _dropPosZ = _dropPosition select 2; ~0.1 _planespawnpos = [_dropPosX + 3000, _dropPosY, _dropPosZ + 1000]; _pilotspawnpos = [_dropPosX + 3000, _dropPosY, _dropPosZ + 1000]; ;=========CREATE======================= _PlaneG = creategroup EAST; _plane = createVehicle [[b]"Su25_Ins[/b]",_planespawnpos,[], 0, "FLY"]; _plane setPos [(getPos _plane select 0),(getPos _plane select 1),900] ; _pilot = "Pilot" createUnit [getMarkerPos "Firedirection2", _PlaneG, "P2=this"]; _Plane setVelocity [100,0,0] ; ~0.4 P2 moveinDriver _plane; P2 setDamage 0; P2 action ["gear_up", vehicle P2] ; _plane flyinHeight 100; #CHECK P2 doMove getPos _Ziel; P2 doTarget _Ziel; P2 doWatch _Ziel; ? (_plane distance _Ziel) < 1500 : goto "DROP" goto "CHECK" ;=========FIRE======================= #DROP _i = 0 _plane flyInHeight 100; _plane setPos [(getPos _plane select 0),(getPos _plane select 1),100] ; ~13 #FIRE _i=_i+1 _plane fire "[b]AirBombLauncher[/b]"; ~0.2 ? _i <= 6 : goto "FIRE" ;=========FLY AWAY======================= _Ziel setPos [0,0,0]; "Firedirection2" setMarkerPos [0,0]; ~4 _plane flyInHeight 300; P2 doMove getPos _Ziel; #Check2 _plane setDamage 0; P2 setDamage 0; ? (_plane distance Player) > 2500 : goto "ENDE"; goto "Check2" ;=========DELETE======================== #ENDE; deleteVehicle _plane; deleteGroup _PlaneG deleteVehicle P2; exit The Su25_Ins has 4 FAB bombs (see here). I also changed the _plane fire classname, based on http://community.bistudio.com/wiki/Worldeater%27s_Sandbox, which is AirBombLauncher for the SU. But the SU dont drop any bombs :confused: Do you have an idea ?
  16. Yeah, you are right, SU doesnt have LGB bombs. But the Mi24.P chooper has two FAB-250 bomb. The problem here: The script genrates just a pilot, and the Mi has a pilot and a gunner. so yo also need a gunner to drop these FAB-250 bombs... :rolleyes:
  17. Nice work. I'd like to change the plane from Harrier to SU25 or SU 34. It works nearly. But the SU doesnt drop any bombs. It only flys over the target :confused: Could you help ? THX illu
  18. Hi guys, i'm still trying to create a CTF map, with only one flag. So far so good. I made some triggers to change the flag, to this side, which is taking the flag. It works very well for US side. If the "west guy" take the neutral flag, the US flag will be put on the flagpole. But if the "east guy" take the neutral flag, there will no flag put on the flagpole. The "east guy" still running around with the neutral flag on his back. :confused: It' confusion. I made a very simlple small test map. It's possible that anyone is checking this stuff maybe ? :( Would be really great... www.fcopz.net/temp/CTF-Test.utes.rar Kind Regards illu
  19. FCOPZ-illuminator

    Flag change does not work for both sides

    Yeah, thats it, you made my day !THX ;)
  20. FCOPZ-illuminator

    Flag change does not work for both sides

    Ok guys, lools like nobody wants to download the mission.sqm to have an eye on it. So here the code..., from EAST side, which is not working. I made two triggers for East: The first one Condition: OstHatFahne==1 Activiation: WestHatFahne=0; Fahne setflagtexture "Ca\Data\flag_rus_co.paa"; Fahne setFlagOwner objNull; Fahne setflagside east; And the second one Condition: not isnull flagowner Fahne and side (flagowner Fahne) == east Activiation: OststHatFahne=1; publicVariable "OstHatFahne"; Well, as i told you in the first post. When east guy is taking the flag, the flag wont be changed. The flag is still on the back of the guy. Does see anyone some "bad code" here :confused: Kind Regards & Greetz illu
  21. FCOPZ-illuminator

    Flag Change

    You made my day. Thanks a lot ;) ****** to close ******
  22. FCOPZ-illuminator

    Flag Change

    Hi guys. I'm trying to create a CTF map, which has only one flag. At the beginning the flag has a custom flag type, not a problem. But now i have to change the map, to WEST and EAST during the game. to change to american flag, i tried this, but it doesnt work: Fahne setflagtexture "\ca\misc\data\usa_vlajka.paa"; Got an error message, the flag could not be found. Do you know, where the american flag is located ? And the russian as well maybe ;) *hihi* Thanks for help guys. Kind Regards illu
  23. FCOPZ-illuminator

    Operation Flashpoint 2 officially announced

    E3 Video is still available on the real only one OFP2 Community site Â
  24. FCOPZ-illuminator

    Arma feedback thread - based on 1.14

    Is there any chance to update the server without upload the whole local ArmA folder. Maybe to update the server folder with the patch after modify the registry (?) Â Thanks a lot illu
  25. FCOPZ-illuminator

    Frontlines

    Yeah, looks good. any infos about MP Demo ?
×