Скачать curseforge

Installed mod is not detected ▾

The CurseForge app is connected to the same repository as the CurseForge website, and allows many mod authors to upload their projects to it and share it with the world!

If you’re using a mod that cannot be found in the CurseForge app or website, it can mean:

  1. That the mod is pending review by CurseForge’s moderators, and should be available once it’s approved (check out the working hours of the moderation team ).Or
  2. The project is not available in the repository, and therefore will not be detected by the CurseForge app.

Why don’t certain mods get uploaded to CurseForge?

Mods and addons in the CurseForge repository are submitted and managed directly by their creators. 

Some authors prefer to host their addons and mods in other sources, in which case their projects will not be available in CurseForge.

If you would like to see an addons or mods you enjoy in CurseForge, contact the authors and submit a request to them.

«This addon might be corrupt» Warning (World of Warcraft) ▾

You may notice this warning message for certain addons that you currently have installed. This warning indicates that the installed addon does not match the game’s current instance, or that there may be something wrong with the addon’s files.

To resolve this issue, simply right click the addon and choose ‘Reinstall’ (or ‘Update’):

If reinstalling the mod didn’t help, please delete it, make sure you are currently set on the right instance (if you have more than one installed), search for the mod and install it again. If you are unable to find the mod when searching for it, it means that it’s not available for your currently set instance, and is meant to be installed for a different one.

Need help resolving the ‘corrupt’ warning? Contact us and we will do our best to assist you!

*You may notice the ‘corrupt’ warning being displayed despite the addon(s) working properly in-game.

**Please note that mods in ‘Modified’ or ‘Working Copy’ states will not get automatically updated. This is not an issue, but rather made intentionally in order to protect these mods’ files from getting overwritten or deleted by updates.

***As of May 19th, 2021 a new instance of the game named ‘Burning Crusade Classic’ — These instructions are relevant for this new instance as well. Follow the Tooltip box instructions and click ‘Update All’.

«Oops, that was not supposed to happen!» ▾

There are several possible causes for this issue:

  • Firewall and/or antivirus software may block Overwolf/the CurseForge app, and thus prevent them from connecting to CurseForge’s servers.Please check your firewall/antivirus software and unblock/provide permissions accordingly.
  • DNS Issues

    To resolve any existing DNS issues that could affect the app’s connection to CurseForge’s servers, you can try to set\change change your IPv4 DNS server address by following these steps:

    1. Open the Control Panel
    2. Click ‘Network and Internet’
    3. Click ‘Network and Sharing Center’
    4. Click the ‘Change adapter settings’ option in the left pane
    5. Right-click the network interface that connects Windows to the internet, and select ‘Properties’
    6. Select and check the Internet Protocol Version 4 (TCP/IPv4) option
    7. Click the ‘Properties’ button
    8. Select the ‘Use the following DNS server addresses’ option
    9. For ‘Preferred DNS server’ type in: 1.1.1.1
    1. Open the System Preferences
    2. Click ‘Network’
    3. Select your connection and click ‘Advanced’
    4. Click the ‘+’ at the button of the ‘DNS Servers’ section
    5. Type in 1.1.1.1
    6. Click ‘OK’
    7. Relaunch CurseForge
  • At times, this issue can be caused by a certain issue with CurseForge’s plugin.To solve it, please uninstall the CurseForge from Overwolf, and install it again from the or run the app’s installer file (if you still have it).

  • Certain ISPs (Internet Service Providers) may block your connection to the CurseForge domain. Please try connecting to a different network (a mobile hotspot may work as well), or try a VPN connection.
  • IPv6

    Disabling IPv6 may resolve this issue, but please note this is a last resort solution and is generally not recommended by Microsoft.To disable IPv6, please follow these steps:

    1. Open the Control Panel
    2. Click ‘Network and Internet’
    3. Click ‘Network and Sharing Center’
    4. Click the ‘Change adapter settings’ option in the left pane
    5. Right-click the network interface that connects Windows to the internet, and select ‘Properties’
    6. Uncheck the box for ‘Internet Protocol Version 6’

Project File Management API

To update a file, issue a POST multipart/form-data request to , containing the field: . The ID of your project will be in the URL when you go to its overview page.

must contain a json object with the following fields:

{
    fileID: 20402, // This is the file ID you are updating. This is required.

    // Note: These are all optional fields, you can include any of these in any combination. 
    // The API will fail if you do not include any settings to change.
    changelog: "A string describing changes.", // Can be HTML or markdown if changelogType is set.
    changelogType: , // Choose one, defaults to text
    displayName: "Foo", // A friendly display name used on the site if provided.
    gameVersions: , // A list of supported game versions, see the Game Versions API for details. Not supported if parentFileID is provided.
    releaseType: "alpha", // One of "alpha", "beta", "release".
    relations: {
        projects: [{
            slug: "mantle", // Slug of related plugin.
            type:  // Choose one
        }]
    } // Optional: An array of project relations by slug and type of dependency for inclusion in your project. 
}

On successful upload, returns a json object containing the old file ID:

{
    id: 20402
}

Maven

CurseForge includes a maven endpoint so that you can include your dependancies using any build scripts that support maven. Please note that due to how maven works you do not provide your API key as a header, but as part of the maven URL. 

https://www.curseforge.com/api/maven/{projectSlug}/{mavenArtifact}/{mavenVersion}/{projectFileNameArtifact}-{projectFileNameVersion}-{projectFileNameTag}.jar

This is the Maven full URL. Below is the explanation of each part, and where you can find that information. For the examples below we will be using the CoFHCore Project.

: The slug of the project you want to use. In our example its cofhcore

: This should be the files name, in our example CoFHCore-1.10.2

: This should be what release you want, in our case we are going to use release as this gives us the latest, but you can also use the file version in the name (Such as 4.1.0.155 for CoFHCore-1.10.2-4.1.0.155-universal.jar)

: The same as mavenArtifact

: The same as mavenVersion

: The name tag on the file, on older mods it would be dev on newer ones it might be universal, in our case its universal

This puts our final example link at:

https://minecraft.curseforge.com/api/maven/cofhcore/CoFHCore-1.10.2/release/CoFHCore-1.10.2-release-universal.jar

If you want to use the maven with ForgeGradle I’ve also provided the same example in the script below

This goes above

repositories {
    maven {
        name = "CurseForge"
        url = "https://minecraft.curseforge.com/api/maven/"
    }
}

Then add this to dependencies

compile ‘cofhcore:CoFHCore-1.10.2:release:universal’

Export

The localization API allows exporting via a GET request. Below is the list of optional parameters that are accepted by the endpoint. These all correspond to the available feature on the export page, and none are required.

https://wow.curseforge.com/api/projects/{projectID}/localization/export

Maven

CurseForge includes a maven endpoint so that you can include your dependancies using any build scripts that support maven. Please note that due to how maven works you do not provide your API key as a header, but as part of the maven URL. 

https://www.curseforge.com/api/maven/{projectSlug}/{mavenArtifact}/{mavenVersion}/{projectFileNameArtifact}-{projectFileNameVersion}-{projectFileNameTag}.jar

This is the Maven full URL. Below is the explanation of each part, and where you can find that information. For the examples below we will be using the CoFHCore Project.

: The slug of the project you want to use. In our example its cofhcore

: This should be the files name, in our example CoFHCore-1.10.2

: This should be what release you want, in our case we are going to use release as this gives us the latest, but you can also use the file version in the name (Such as 4.1.0.155 for CoFHCore-1.10.2-4.1.0.155-universal.jar)

: The same as mavenArtifact

: The same as mavenVersion

: The name tag on the file, on older mods it would be dev on newer ones it might be universal, in our case its universal

This puts our final example link at:

https://minecraft.curseforge.com/api/maven/cofhcore/CoFHCore-1.10.2/release/CoFHCore-1.10.2-release-universal.jar

If you want to use the maven with ForgeGradle I’ve also provided the same example in the script below

This goes above

repositories {
    maven {
        name = "CurseForge"
        url = "https://minecraft.curseforge.com/api/maven/"
    }
}

Then add this to dependencies

compile ‘cofhcore:CoFHCore-1.10.2:release:universal’

Frequently Asked Questions

How to download and install Minecraft Forge?

The first step to downloading and installing Minecraft Forge 1.17.1 is by navigating to the official website. Select 1.17.1 from the Minecraft Version menu. Click on the installer button under the ‘Download Latest’ section to begin your download.

How do you download forge Minecraft?

After you’ve got the Forge program open, it’s time to install it into Minecraft. This is very easy to do. Just make sure “Install Client” is selected at the top, and then click “OK” at the bottom of the program. It will now download and install Forge in Minecraft.

How do you get Minecraft Forge on Minecraft?

You can install Minecraft Forge in these three easy steps: Download Minecraft Forge at the official website. Make sure you double check your version, so you download the correct one. … Open the downloaded installer, which will bring up the installation process. Be sure to confirm with ‘Install Client’ still selected and click ‘OK’. Open the Minecraft Launcher and change the profile to ‘forge’. …

Maybe you want to know

› Ssundee Insane Craft Modpack

› Ssundee Crazy Craft 2 0 Download

› Ssundee Insane Craft Mod Download

› Shaders

› Sell Crafts

› Sell Homemade Crafts

› Sewing Crafts

› Ssundee Crazy Craft Modpack 2021

› Stone Crafts

› Ssundee Crazy Craft Mod Download

› Sears Craftsman Chainsaw Manual

› Soap Making Craft Kit

› Sell Crafts Locally

› Sell Your Crafts Online

Security Craft Mod 1 12 2

› Sears Craftsman Air Compressors For Sale

› Summer Crafts

› Ssundee Crazy Craft Install

› Swtor Implant Crafting

› Sell Handmade Crafts Online Free

› School Crafts

› Salt Lake Arts Festival 2021

› Summer Painting Craft

› Swtor Crafting Recipe List

› Soap Making Crafts

› String Crafts Easy

› Sennheiser Gsp 550

› Sites To Sell Crafts Online

› Steamunlocked Minecraft Windows 10 Edition

› Spruce Tree Crafts

› Sugarloaf Craft Festival 2021

› Ssundee Crazy Craft Mod List

› Scramble Craft Download Minecraft

› Styrofoam Egg Carton Crafts

› Shadowlands Legendary Crafting Wowhead

› Sherwin Williams Craftsman Exterior Colors

› Security Craft Mod Minecraft

› Selling Arts And Crafts Online

› Sears Craftsman Tool Manuals Downloads

› Samson Bible Crafts Free Printables

› Shadowlands Legendary Crafting Guide

› Seri Zoo Crafting Modpack

› Spaceship Craft For Kids

› Sell Crafts Online For Free

› Skill Craft Construction

› Sponeed Men’s Cycling Shorts

› Ssundee Insane Craft Download

› Shadowlands Legendary Crafting Requirements

› Ssundee Crazy Craft Download

› Security Craft Minecraft Addon

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *

Adblock
detector