Jump to content

Recommended Posts

Posted

I do have the follwing error when starting my Mod Client:

 

  Reveal hidden contents

 

So I checked my: sounds.json and it looks like

 

{
  "p99_shot": {
    "category" : "player",
    "sounds": [{
        "name": "p99/shot",
        "stream": false
      }
    ]
  },
  "p99_reload": {
    "category" : "player",
    "sounds": [{
        "name": "p99/reload",
        "stream": false
      }
    ]
  },
  "bullet_flyby": {
    "category" : "player",
    "sounds": [
      {
        "name": "bullet/flyby01",
        "stream": false
      }, {
        "name": "bullet/flyby02",
        "stream": false
      }, {
        "name": "bullet/flyby03",
        "stream": false
      }, {
        "name": "bullet/flyby04",
        "stream": false
      }, {
        "name": "bullet/flyby05",
        "stream": false
      }, {
        "name": "bullet/flyby06",
        "stream": false
      }, {
        "name": "bullet/flyby07",
        "stream": false
      }, {
        "name": "bullet/flyby08",
        "stream": false
      }, {
        "name": "bullet/flyby09",
        "stream": false
      }
    ]
  }
}

 

 

My files are all there, in the directory:

 

C:\Modding\mod1\src\main\resources\assets\survivethis\sounds\p99\

C:\Modding\mod1\src\main\resources\assets\survivethis\sounds\bullet\

 

containing all the files of type "*.ogg"

What did I miss?

Posted

FYI - sounds are non-streaming by default so you could take some shortcuts in your definition:

"bullet_flyby": {
    "category" : "player",
    "sounds": [
        "modid:bullet/flyby01",
        "modid:bullet/flyby02",
        "modid:bullet/flyby03",
        "modid:bullet/flyby04",
        "modid:bullet/flyby05",
        "modid:bullet/flyby06",
        "modid:bullet/flyby07",
        "modid:bullet/flyby08",
        "modid:bullet/flyby09"
    ]

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.