Jump to content

Winters

Member
  • Content Count

    1947
  • Joined

  • Last visited

  • Medals

Everything posted by Winters

  1. Winters

    How would I advertise

    I wouldnt worry about the amount of members on your forum. I have very few at the Pubs' forum but the Pub itself has over 2,200 hits since its inception in late Feb. People just want to download the missions, if the mission sucks or they are having trouble with it they will then join so they can post about it. Now sign up on my forum DAMMIT!!!!!
  2. Winters

    UEFA Euro 2004

    Hmmm, let me see now, would that happen to be our beloved OFP?
  3. Winters

    Ogg layer

    You can use WinAmp WinAmp home page Just visit the plugins page and do a quick search for .ogg and your set
  4. Winters

    War against terror

    They should lift the sanctions against Cuba. The missles are gone and we could take over the island in less than a day. Sheeesh, just lift them already, i wanna smoke some Cubans (cigars) Â sorry about going kinda OT
  5. ooopsie, boy do i feel foolish now, i get impulsive sometimes, sorry i will slap myself on the wrist now. Ouch!!
  6. Winters

    The X-Hawk Aerial Vehicle

    We need the hover cars from "Blade Runner" they fly, they glide and they drive. Now if i can just find a pic of one....
  7. Winters

    The X-Hawk Aerial Vehicle

    I can see the appeal of this for all female drivers
  8. Will sound and voice files from BIS campaigns/missions be allowed in mission submissions or does this violate the now copyrighted rule?
  9. Winters

    the invasion 44 CTI maps...any servers yet?

    We will be releasing an "Official" Invasion '44 CTI with the full mod. It wont be long before my mission team gets its hands on all the goodies and starts work on the Campaign and all the SP/MP missions.
  10. Winters

    Ammo crate load out

    Here is a simple script that you could use that will allow you to easily fill ammocrates with any weapons you choose. I used this for a nam mission but half of it also lists normal weapons (which i didnt use for the Nam mission) try it out. Credit goes to Backoff and Deadmeat for the script. <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">;------------------------------------------------------------------------------ ;AmmoCrate.sqs v 2.0 ;By Backoff & DeaDMeaT Productions ;Add weapon to an ammo crate ;Exemple: type this line in the init field of an ammo crate ;[this, "LIGHT", "WEST"] exec "ammocrate.sqs" ;[objectname, load type, side] exec "ammocrate.sqs" ;load type: ;---------- ;"LIGHT": basic weapons ;"MEDIUM": weapons ;"HARD": rocket & grenade launcher ;"Explosive": hand grenade, mine, etc... ;"Equipment": night vision google, binocular, etc... ;side: ;----- ;"WEST": add ammo/weapon for west side ;"EAST": add ammo/weapon for east side ;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------ _crate = _this select 0 _type = _this select 1 _side = _this select 2 ;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------ clearmagazinecargo _crate clearweaponcargo _crate ;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------ ?(_type == "Equipment"): goto "Equipment" ?(_type == "Explosive"): goto "Explosive" goto format ["%1%2", _type, _side] Goto "End" ;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------ #LightWEST _crate AddWeaponCargo ["sebm16a1", 20] _crate AddWeaponCargo ["sebm14", 20] _crate AddWeaponCargo ["sebcar15", 20] _crate AddMagazineCargo ["sebm16a1magn", 200] _crate AddMagazineCargo ["sebm14magn", 200] _crate AddMagazineCargo ["sebcar15magn", 200] Goto "End" ;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------ #LightEAST _crate AddWeaponCargo ["sebsks", 20] _crate AddWeaponCargo ["sebrpd", 20] _crate AddWeaponCargo ["sebrpglauncher", 20] _crate AddMagazineCargo ["sebsksmagn", 200] _crate AddMagazineCargo ["sebrpdmagn", 200] _crate AddMagazineCargo ["sebrpgrocket", 200] Goto "End" ;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------ #MediumWEST _crate AddWeaponCargo ["sebm16a1gl", 20] _crate AddWeaponCargo ["sebm60", 20] _crate AddWeaponCargo ["sebm79", 20] _crate AddWeaponCargo ["seblawlauncher", 20] _crate AddWeaponCargo ["seb90mmrecoiless", 20] _crate AddMagazineCargo ["sebm16a1magn", 200] _crate AddMagazineCargo ["sebm60magn", 200] _crate AddMagazineCargo ["sebm79he", 300] _crate AddMagazineCargo ["seblawrocket", 200] _crate AddMagazineCargo ["seb90mmrocket", 200] Goto "End" ;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------ #MediumEAST _crate AddWeaponCargo ["AK47", 20] _crate AddWeaponCargo ["PK", 20] _crate AddWeaponCargo ["G36a", 20] _crate AddWeaponCargo ["RPGLauncher", 20] _crate AddMagazineCargo ["Pipebomb", 200] _crate AddMagazineCargo ["AK47", 200] _crate AddMagazineCargo ["PK", 200] _crate AddMagazineCargo ["G36aMag", 200] _crate AddMagazineCargo ["RPGLauncher", 200] _crate AddMagazineCargo ["Mine", 200] Goto "End" ;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------ #HardWEST _crate AddWeaponCargo ["LAWLauncher", 20] _crate AddWeaponCargo ["M16GrenadeLauncher", 20] _crate AddWeaponCargo ["MM1", 20] _crate AddWeaponCargo ["AALauncher", 20] _crate AddWeaponCargo ["CarlGustavLauncher", 20] _crate AddMagazineCargo ["AALauncher", 200] _crate AddMagazineCargo ["M16", 200] _crate AddMagazineCargo ["LAWLauncher", 200] _crate AddMagazineCargo ["GrenadeLauncher", 200] _crate AddMagazineCargo ["MM1Magazine", 200] _crate AddMagazineCargo ["CarlGustavLauncher", 200] Goto "End" ;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------ #HardEAST _crate AddWeaponCargo ["RPGLauncher", 20] _crate AddWeaponCargo ["AK74GrenadeLauncher", 20] _crate AddWeaponCargo ["6G30", 20] _crate AddMagazineCargo ["AK74", 200] _crate AddMagazineCargo ["RPGLauncher", 200] _crate AddMagazineCargo ["6G30Magazine", 200] _crate AddMagazineCargo ["GrenadeLauncher", 200] Goto "End" ;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------ #Explosive _crate AddMagazineCargo ["HandGrenade", 200] _crate AddMagazineCargo ["Mine", 200] _crate AddMagazineCargo ["Timebomb", 200] _crate AddMagazineCargo ["Pipebomb", 200] Goto "end" ;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------ #Equipment _crate AddWeaponCargo ["NVgoggles", 200] _crate AddWeaponCargo ["Binocular", 200] _crate AddWeaponCargo ["Flare", 200] _crate AddWeaponCargo ["SmokeShell", 200] Goto "end" ;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------ #end Exit ;------------------------------------------------------------------------------
  11. Winters

    UEFA Euro 2004

    Heh, guess what I've been playing most of the night Every football loving gamer knows Pro Evolution football 3 is the best football game on earth .... Why Fifa ... whyyyyyyyyyyyyyy  It's the first game i could think of. Besides, are all those others on PC or just for console gaming? plez splain to me.
  12. Winters

    UEFA Euro 2004

    What? none of you guys have FIFA?
  13. Winters

    After Action Reports

    Yeah, i read that, had a good laugh at some of his sayings. They are true though. "When in doubt, find a Corporal" lol i love that one. So true...
  14. Winters

    After Action Reports

    Hi all, Anyone know of any sites that i may be able to find some AAR's? i am looking for some on the ongoing conflict in Iraq. Thanks
  15. Winters

    After Action Reports

    Thanks for the reply, i had already grabbed the 3rd ID PDF file. It's good but not exactly what i am looking for to help me develop some scenarios.
  16. Winters

    Tour de France

    I ride on a regular basis (great cardio workout) and was a Bike messenger in NYC when i was a teenager.
  17. Winters

    UEFA Euro 2004

    But it's the quarters now and your predictions are at 0% This weekend i am going to try to find Pub thats showing the games, since i have no allegiance to any of the teams i will just hope all the matches are well played and exciting to watch
  18. Winters

    Tour de France

    Until someone beats him my moneys on Lance Armstrong.
  19. Winters

    Help figuring out a war movie

    Wow, two movies with the same scene in it. I never saw that WW3 movie (it looks like a TV movie) and Ice Station Zebra is pretty long winded and dull, i wouldn't recommend it.
  20. Winters

    Help figuring out a war movie

    It is "Ice Station Zebra" I remember the part you are talking about clearly
  21. Winters

    WW2 "Color of War" Preview

    Wow that was great, i lost video as well at 7:32 but still it was top notch. My only question is: "When is the campaign going to be released?"
  22. Winters

    War music

    Which is not 'ALL THE MUSIC YOU HEAR IN THE MATRIX MOVIES' I never said ALL. I said ALMOST all, there is a big difference. But go on and feel what you must. I'm not getting into a war of words on symantics, he still made a lot of the instrumental music thats in the movies. I am done with this thread.
  23. Winters

    Teleportation breakthrough made

    Nope, you make him go to work while you sit on a beach in Rio
  24. Winters

    Teleportation breakthrough made

    Never be late for work again, your employer will just beam your arse directly to your desk.
  25. Winters

    War music

    Sir, That is absolute balderdash. 1. Rock Is Dead - Marilyn Manson 2. Spybreak - Propellerheads 3. Bad Blood - Ministry 4. Clubbed to Death [Kurayamino Mix] - Rob D. 5. Prime Audio Soup - Meat Beat Manifesto 6. Leave You Far Behind - Lunatic Calm  7. Mindfields - The Prodigy  8. Dragula [Hot Rod Herman Remix] - Rob Zombie  9. My Own Summer (Shove It) - Deftones  10. Ultrasonic Sound - Hive  11. Look to Your Orb for the Warning - Monster Magnet  12. Hast - Rammstein  13. Wake Up - Rage Against the Machine And the other ones were mainly by Don Davis No it is not balderdash, He makes a lot of the instrumental soundtrack music, not the crap that has lyrics to it. for Example: in the first Matrix the music that plays while Neo and Morpheus are training (kung fu scene) and in reloaded when Neo is fighting the agents and he says "hmmm, upgrades" and when he is fighting all those dudes at the Chateau. Thats just a couple of the myriad of tunes he has, and if you check your list you even have one of his tunes listed (#4). I think you are getting credited songs mixed up with the uncredited background soundtrack music which is what i was referring to. But since your source is Amazon that explains a lot. Amazon only lists whats on the soundtrack you can purchase and not ALL the music in the movies.
×