Released Rally Forest (Now with winter version!) 1.5.1

Medium size map with dirt and paved roads in a dense, detailed forest

  1. dpitkin

    dpitkin
    Expand Collapse

    Joined:
    Aug 7, 2012
    Messages:
    85
    I actually made a scenario a while back, you will have to have my level extracted. Take the scenario zip and extract it onto the level where the .mis file is, merge everything and overwrite. let me know if it works, also it has a custom song that plays. The song was royalty free music, and I don't know how I feel about it. You can adjust the song volume with the music slider in audio options. If someone finds better royalty free racing music let me know.
     

    Attached Files:

  2. Dagalufh

    Dagalufh
    Expand Collapse

    Joined:
    Feb 14, 2014
    Messages:
    101

    I will try this out as soon as i can. Tonight or tomorrow or something. Really enjoy trying to survive this map. :)
     
  3. loonybin0

    loonybin0
    Expand Collapse

    Joined:
    Mar 3, 2014
    Messages:
    7
    I actually haven't even tried the map yet, but I wanted to ask about groundmodel.lua. (I am using the latest version of BNG and of your updated groundmodel.zip.)

    I decided to take a look at what you had altered in groundmodel, and found lines missing in yours that were in the BNG one... I thought perhaps BNG had updated since you made those edits.

    BNG code:
    Code:
    Adhesion velocity (deprecated)
    
    ...
    
    g.slidingFrictionCoefficient  = 0.71
    
    ...
    
    g.strength                    = 1.01
    
    ...
    
    g.collisiontype               = particles.getMaterialIDByName(materials, "DIRT")
    g.skidMarks                   = false
    BeamEngine:setGroundModel(g, "Dirt")
    BeamEngine:setGroundModel(g, "RockyDirt")
    BeamEngine:setGroundModel(g, "dirt_loose")
    BeamEngine:setGroundModel(g, "dirt_loose_dusty")
    BeamEngine:setGroundModel(g, "dirt_rocky")
    BeamEngine:setGroundModel(g, "dirt_rocky_large")
    BeamEngine:setGroundModel(g, "dirt_sandy")
    
    ...
    
    
    g.collisiontype               = particles.getMaterialIDByName(materials, "SNOW")g.skidMarks                   = false
    BeamEngine:setGroundModel(g, "Snow")
    
    ...
    
    g.collisiontype               = particles.getMaterialIDByName(materials, "MUD")
    g.skidMarks                   = false
    BeamEngine:setGroundModel(g, "Mud")
    
    
    -------------------------------------------------------------------------------
    -- kickplate, for kick plate prop
    g = groundModel()
    g.adhesionVelocity            = 3
    g.staticFrictionCoefficient   = 5.0
    g.slidingFrictionCoefficient  = 5.0
    g.hydrodynamicFriction        = 0.001
    g.stribeckVelocity            = 3.0
    g.strength                    = 1.0
    g.defaultDepth                = 0
    -------------------------------------------------------------------------------
    
    
    -- public interface
    
    ...
    
    vs. your code
    Code:
    Adhesion velocity
    
    ...
    
    g.slidingFrictionCoefficient  = 0.7
    
    ...
    
    g.strength                    = 1.0
    
    ...
    
    g.collisiontype               = particles.getMaterialIDByName(materials, "DIRT")
    g.skidMarks                   = false
    BeamEngine:setGroundModel(g, "Dirt")
    BeamEngine:setGroundModel(g, "RockyDirt")
    
    ...
    
    g.collisiontype               = particles.getMaterialIDByName(materials, "MUD")g.skidMarks                   = false
    BeamEngine:setGroundModel(g, "Snow")
    BeamEngine:setGroundModel(g, "Snow2")
    BeamEngine:setGroundModel(g, "Snow3")
    BeamEngine:setGroundModel(g, "Snow4")
    BeamEngine:setGroundModel(g, "Snow5")
    BeamEngine:setGroundModel(g, "Snow6")
    ...
    
    g.collisiontype = particles.getMaterialIDByName(materials, "MUD")
    g.skidMarks = false
    BeamEngine:setGroundModel(g, "Mud")
    
    ...
    
    Which altered lines are specifically for your groundmodel? Maybe just post the changed lines and we could copy it in ourselves?

    Anyway I totally agree that there should be a way to have separate modded files from game files to avoid this kind of thing.
     
  4. dpitkin

    dpitkin
    Expand Collapse

    Joined:
    Aug 7, 2012
    Messages:
    85
    Yes the updates do change stuff, simmply add these lines underneath the BeamEngine:setGroundModel(g, "Snow") line in the snow category. Also to get the snow particle change the particles.getMaterialIDByName(materials, "SNOW") to particles.getMaterialIDByName(materials, "MUD")

    Code:
    BeamEngine:setGroundModel(g, "Snow2")
    BeamEngine:setGroundModel(g, "Snow3")
    BeamEngine:setGroundModel(g, "Snow4")
    BeamEngine:setGroundModel(g, "Snow5")
    BeamEngine:setGroundModel(g, "Snow6")
    This is an example of the code with the lines added, I made them bold to show what is new
    -- snow
    g = groundModel()
    g.adhesionVelocity = 5
    g.staticFrictionCoefficient = 0.65
    g.slidingFrictionCoefficient = 0.4
    g.hydrodynamicFriction = 0.1
    g.stribeckVelocity = 0.2
    g.strength = 1.0
    g.defaultDepth = 0

    -- http://www.simetric.co.uk/si_materials.htm
    g.fluidDensity = 481
    g.flowConsistencyIndex = 300
    g.flowBehaviorIndex = 0.8
    g.dragAnisotropy = 0.02

    g.collisiontype = particles.getMaterialIDByName(materials, "MUD")
    g.skidMarks = false
    BeamEngine:setGroundModel(g, "Snow")
    BeamEngine:setGroundModel(g, "Snow2")
    BeamEngine:setGroundModel(g, "Snow3")
    BeamEngine:setGroundModel(g, "Snow4")
    BeamEngine:setGroundModel(g, "Snow5")
    BeamEngine:setGroundModel(g, "Snow6")
     
    #184 dpitkin, Oct 4, 2015
    Last edited: Oct 13, 2015
  5. tjschel

    tjschel
    Expand Collapse

    Joined:
    Jan 6, 2014
    Messages:
    231
    Funky Skies

    I have the winter version and the skies are really weird. They are like black and white and are in sections and are always moving.
     

    Attached Files:

    • screenshot_00014.png
  6. GeoTelnet111

    GeoTelnet111
    Expand Collapse

    Joined:
    Mar 7, 2013
    Messages:
    193
    Hey man, love the map! :D

    I'm trying to create my own (in development phase, see my thread if you want) and am in the process of creating realistic vegetation in the forest areas. Which level did you use to base your forest file off of? Or did you just copy a bunch of vegetation files in from a bunch of maps...

    Thanks bro! :)
     
  7. dpitkin

    dpitkin
    Expand Collapse

    Joined:
    Aug 7, 2012
    Messages:
    85
    No idea why the sky looks like that for you, it works fine for me, I'd suggest messing with your graphics settings

    I used the east coast usa forest. and I applied the forest as a base coat with all the trees and undergrowth. then at the edges of the forest i applied in layers, the big trees, then a few feet farther off the edge, the small trees, bushes, and undergrowth. this gives a realistic look to the forest making it grow outwards with young saplings on the outside and older growth within.
    Crude Example:
    screenshot_00009.jpg
     
  8. bob102341

    bob102341
    Expand Collapse

    Joined:
    Oct 7, 2015
    Messages:
    1
    Re: Rally Forest

    I've been having the same problem and I don't understand how to fix it could you please clarify.
     
  9. joes123

    joes123
    Expand Collapse

    Joined:
    Jan 4, 2014
    Messages:
    72
    Wow man this map is absolutely great. I love winter maps it just makes it even more fun especially drifting.
     
  10. Zs0l1

    Zs0l1
    Expand Collapse

    Joined:
    Nov 4, 2015
    Messages:
    27
    Pretty great! btw favorite map
     
  11. pipinghot17

    pipinghot17
    Expand Collapse

    Joined:
    Dec 10, 2015
    Messages:
    6
    snow version won't download
     
  12. Zero_code_name_Reaper

    Zero_code_name_Reaper
    Expand Collapse

    Joined:
    Nov 9, 2015
    Messages:
    56
    Love this map. Found a campsite which feels empty seeing some tents and camp fires in it would be a nice touch.
    However to the point are there plans to make the winter version to be setup with the automatic install feature?
     
  13. dpitkin

    dpitkin
    Expand Collapse

    Joined:
    Aug 7, 2012
    Messages:
    85
    Unfortunately the winter version requires the modification of the groundmodel.lua for proper snow physics, and currently I have no way to modify that automatically. so unless that is solved, I can't release it to the mod database.
     
  14. Aboroath

    Aboroath
    Expand Collapse

    Joined:
    Aug 25, 2013
    Messages:
    3,804
    I would love to eventually see a modified groundmodel.lua that doesn't get replaced with every update.
    Best thing I can currently come up with is keeping a saved modified groundmodel and replacing the
    stock one every time an update occurs.
     
  15. dorven5

    dorven5
    Expand Collapse

    Joined:
    Nov 12, 2013
    Messages:
    2
    I absolutely love this map and the scenarios. I need to know the name of the song that plays in the scenario that isn't for the VW. The one track that loops and is kind of techno. Can anyone tell me what it is called? It is really nice, and it loops the entire time you're in the scenario.
     
  16. Dank Memes Bro

    Dank Memes Bro
    Expand Collapse

    Joined:
    Feb 15, 2016
    Messages:
    1
    My car got stuck on the first bridge if you just follow the track in the winter version. Except for that very very good map! :)
     
  17. Dealercrash

    Dealercrash
    Expand Collapse

    Joined:
    Apr 1, 2016
    Messages:
    3,122
    When I go on the map the clouds are really glitchy any suggestions?
     
  18. 1MBStudios

    1MBStudios
    Expand Collapse

    Joined:
    Nov 15, 2013
    Messages:
    22
    This map is great and I love taking the Sunburst around it



    My only complaints is that the check points #4 and #5 are just slightly too small, and if you cut them hard enough while still being on the track you will pass them without hitting them. Other than that this map really feels like a WRC race and is very enjoyable
     
    • Like Like x 1
  19. Tashy26

    Tashy26
    Expand Collapse

    Joined:
    Jan 11, 2016
    Messages:
    40
    where can I get the golf
     
  20. TedHallgren

    TedHallgren
    Expand Collapse

    Joined:
    Nov 19, 2012
    Messages:
    97
    help, i downloaded the latest version and whenever i try to load it i get infinite amounts of error messages about missing resources... so many that i cant even go through them all... the winter version works fine tho
     
    • Agree Agree x 1
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice