![]() |
|
|||||||
| Enemy Territory - English News Latest news from Wolfenstein: Enemy Territory |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Clan-Leader
![]() ![]() ![]() |
A complete removal of grass, rain and snowflakes. Put the file "z_no-grass-rain-snowflakes.pk3" into a mod folder (etpro, jaymod, etpub, nq, etc...) to make sure it will be downloaded to the client. Or put the content of this file in your mod to customize the server. I only made the content so small as even possible for me.
Download: --> No grass, rain & snowflakesContent:
More...
__________________
![]() [edited] "Close your eyes, pay the price for your paradise..." ![]() Please do not hesitate to contact me or any member of the RoN Clan team if you have any questions. |
|
|
|
|
|
#2 (permalink) |
|
Clan-Member
![]() ![]() Join Date: 02.04.2008
Posts: 72
Thanks: 0
Thanked 1 Time in 1 Post
Time Spent Online: 30 Minutes 24 Seconds
|
I like the grass (can be irritating if they're hiding in it) but you can remove the snow, rain, particle effects (smoke on tank) with a script
![]() ////////////////////////////////////////////// //Atmospheric effects, particle and gun script ////////////////////////////////////////////// //By pressing this key (F6) you can enable/disable the "atmospheric effects" like rain or snow. set opady0 "echo ^6RAIN/SNOW ^7 is now ^1OFF; set cg_atmosphericeffects 0; set opady vstr opady1" set opady1 "echo ^6RAIN/SNOW ^7 is now ^2ON; set cg_atmosphericeffects 1; set opady vstr opady0" set opady "vstr opady0" bind "F6" "vstr opady" //By pressing this key (F7) you can enable/disable the "Particle" system in ET. set dym0 "echo ^6SMOKE ^7is now ^1OFF; set cg_wolfparticles 0; set dym vstr dym1" set dym1 "echo ^6SMOKE ^7is now ^2ON; cg_wolfparticles 1; set dym vstr dym0" set dym "vstr dym0" bind "F7" "vstr dym" //By pressing this key (F8) you can enable/disable your gun in your HUD. set gun0 "echo ^6GUN ^7 is now ^1OFF; set cg_drawgun 0; set gun vstr gun1" set gun1 "echo ^6GUN ^7 is now ^2ON; set cg_drawgun 1; set gun vstr gun0" set gun "vstr gun0" bind "F8" "vstr gun" |
|
|
|