Trilon
Member-
Content Count
28 -
Joined
-
Last visited
Never -
Medals
Everything posted by Trilon
-
Well, I finally went out and got myself a new video card (a Radeon 8500) and now guns and sometimes parts of vehicles are flickering white in ofp Im running ofp in 1024x768 32bit. HWTL is on. Heres is a screenshot of what it looks like. Any ideas? System- WinME Athlon XP 1600+ Radeon 8500 128mb ddr (using newest drivers from ati.com) VIA K7T Turbo2 Motherboard AC97 Audio Controller
-
</span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote (grey @ Aug. 07 2002,17:49)</td></tr><tr><td id="QUOTE">get a geforce4? sorry couldnt resist ehe<span id='postcolor'> I would if I had enough money, OFP is the main reason I splashed out & bought a new card I've done a bit of testing and the bug only appears in resistance. OFP v1.46 is flicker free. I guess I just gotta hope BIS fixes it in their next patch
-
Ok, I disabled HW T&L and... no more flickering! Only problem is, the game runs much worse without HW T&L enabled. I'm talking a 50% performance drop here. Anyone know of another way to fix this problem?
-
</span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote (mithrandir @ July 31 2002,10:10)</td></tr><tr><td id="QUOTE">Has someone extracted the two new missions? So it can be put into the retail version!<span id='postcolor'> Yep, get them here: resdemo-missions.zip
-
This isnt really the right place for this post. If the AI is part of your group tell him to disembark and he'll land.
-
</span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote (Major Fubar @ July 20 2002,03:57)</td></tr><tr><td id="QUOTE">Can you do the same thing with static weapons, like mounted MGs and the new TOW launcher, AGS-17 etc.?<span id='postcolor'> Set their starting height? Sure can... I might as well answer the original question... In the units init field type- this setPos [getPos this select 0, getPos this select 1, 20] Replace 20 with the height you want.
-
Go for it Eviscerator, I forgot about that star wars mod, if they actually finish their mod those star wars vehicles would fit in nicely. Do them after you've done the other ones first tho, a truck with machine gun sounds cool, hehe
-
Go for it Eviscerator, I forgot about that star wars mod, if they actually finish their mod those star wars vehicles would fit in nicely. Do them after you've done the other ones first tho, a truck with machine gun sounds cool, hehe
-
Personally I don't like the idea of Star Wars vehicles in ofp, I don't think I would go to the extent of chaining you up and throwing rocks at you if you were to release them though
-
Personally I don't like the idea of Star Wars vehicles in ofp, I don't think I would go to the extent of chaining you up and throwing rocks at you if you were to release them though
-
Seb nam pack v1 - resistance quickfix
Trilon replied to SelectThis's topic in ADDONS & MODS: COMPLETE
Operation Flashpoint can only have 1 airport usable by the AI on each map. On Nogova the AI can only take off from the airport down the bottom-left of the map. On SelectThis's vietnam map the AI can only take off from the airport near the Plei Me SF Base. Good work on the quick fix SelectThis, any eta on when the updated pack will be available? -
[question] createunit and execute a script
Trilon replied to Malle2000's topic in OFP : MISSION EDITING & SCRIPTING
Ahh, nevermind, I think understand. The init for a unit has to be executed slightly after the createUnit command and the unit might not be named before it carries out the rest of the commands in the line, am I right? Would this work then (if in a script)? "SoldierWB" createUnit [getMarkerPos "seek", alphagroup, "enemyR1 = this", 0.7, "CAPTAIN"] ~1 enemyR1 setBehaviour "careless" [enemyR1, "seek", 40] exec "RandomMove.sqs" -
[question] createunit and execute a script
Trilon replied to Malle2000's topic in OFP : MISSION EDITING & SCRIPTING
Hmm, interesting bit of info Suma. Are you saying that in a MP environment the init for each unit is executed on each client and might get executed at slightly different times? -
The newly implemented explosion
Trilon replied to shadow's topic in OFP : MISSION EDITING & SCRIPTING
HandGrenade should work fine too... hg="HandGrenade" camCreate getPos unitName -
How to set a flag on a vehicle
Trilon replied to DestroyerX's topic in OFP : MISSION EDITING & SCRIPTING
Place an Empty>Objects>Flag (International) somewhere on the map where it wont be seen and put this in its init field- this setFlagTexture "\Flags\Flagname.jpg"; this setFlagOwner (driver vehicleName) Only problem is if the driver gets out of the vehicle he keeps the flag....simple trigger can fix that though. -
I use dbPowerAMP Music Converter. Its a great lil peice of software. Lotsa options I think if you define an ogg in CfgSounds it has to be mono, that could be causing OFP to crash with your .ogg files?
-
Question: how do i introduce players
Trilon replied to hoz's topic in OFP : MISSION EDITING & SCRIPTING
name unitName Simple really example- titletext[format["%1",name player],"PLAIN DOWN"] -
Addweapon and addmagazine
Trilon replied to anders@dac.se's topic in OFP : MISSION EDITING & SCRIPTING
Ya beat me to it InqWiper! -
Addweapon and addmagazine
Trilon replied to anders@dac.se's topic in OFP : MISSION EDITING & SCRIPTING
Uh....I dont know what you're doing wrong but it works fine for me. AK47 is a valid magazine type btw. </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE">removeAllWeapons this; this addMagazine "AK47"; this addMagazine "AK47"; this addMagazine "AK47"; this addWeapon "AK47"<span id='postcolor'> -
[question] createunit and execute a script
Trilon replied to Malle2000's topic in OFP : MISSION EDITING & SCRIPTING
Ah damn, sorry I never really played around with createUnit much... I think your workaround is the best way to do it. You could shorten it a little bit though- "SoldierWB" createUnit [getMarkerPos "seek", alphagroup, "enemyR1 = this", 0.7, "CAPTAIN"]; enemyR1 setBehaviour "careless"; [enemyR1, "seek", 40] exec "RandomMove.sqs" not that there's much point in making it shorter, except having to type a bit less -
[question] createunit and execute a script
Trilon replied to Malle2000's topic in OFP : MISSION EDITING & SCRIPTING
Try this- "SoldierWB" createUnit [getMarkerPos "seek", alphagroup, [this "seek", 40] Exec "RandomMove.sqs", 0.7, "CAPTAIN"] -
The newly implemented explosion
Trilon replied to shadow's topic in OFP : MISSION EDITING & SCRIPTING
bomb="Bomb" camCreate getPos unit; bomb setDammage 1 I havn't tested it, but it should work... -
http://topshop.com.au/?action=view&id=521228 Operation Flashpoint: Resistance TopShop Price: $49.95 Add To Your Shopping Trolley >> In Stock - Usually begins delivery within 1 business day. * FREE DELIVERY when you order 3 or more In Stock items. This page said release date was 19th yesterday, this morning its in stock. Resistance has landed in oz!
-
Cannot memory map file res/addons/o.pbo This error happened to me the other day, I had a few programs running in background and after closing them the problem disappeared. Never happened before that and it hasn't happened since, no matter what programs are running in the background. Weird...
-
Is that meant to say sit down on the bunk? or bench or something? Maybe one of these? : ManActCargoVer1 ManActCargoVer2 ManActCargoVer3 ManActCargoVer4 ManActCargoVer5 I guess they work... Edit- Please make it hold more soldiers in cargo