Jump to content

Recommended Posts

I wanted to test a custom item in game. The game crashes and this shows up, what does it even mean? Blueprint is an original game file and not a port of the mod, but somehow it becomes a problem. Does anyone have a solution for this?

I'm also attaching modmain and prefab files

image.thumb.png.9c1e26e8f4b0d7af818a4b41ceb3b5fb.png

modmain.lua dskull.lua

3 hours ago, Dr Wikhailov said:

I wanted to test a custom item in game. The game crashes and this shows up, what does it even mean? Blueprint is an original game file and not a port of the mod, but somehow it becomes a problem. Does anyone have a solution for this?

I'm also attaching modmain and prefab files

image.thumb.png.9c1e26e8f4b0d7af818a4b41ceb3b5fb.png

modmain.lua 1.21 kB · 0 downloads dskull.lua 11.39 kB · 0 downloads

AddRecipe has been deprecated, if it is a recipe for a character, use AddCharacterRecipe

Spoiler

AddCharacterRecipe("dskull",
    {    Ingredient("houndstooth", 2),
        Ingredient("redgem", 1),
        Ingredient("nightmarefuel", 4),
        Ingredient("moonrocknugget", 2)
    },
        TECH.NONE,
    {    atlas = "images/inventoryimages/dskull.xml",
        builder_tag = "fragonia"
    },
    {    "CHARACTER",
        "MAGIC",
        "LIGHT"
    }
    
)

 

 

  • Health 1
15 hours ago, Haruhi Kawaii said:

AddRecipe has been deprecated, if it is a recipe for a character, use AddCharacterRecipe

  Hide contents

AddCharacterRecipe("dskull",
    {    Ingredient("houndstooth", 2),
        Ingredient("redgem", 1),
        Ingredient("nightmarefuel", 4),
        Ingredient("moonrocknugget", 2)
    },
        TECH.NONE,
    {    atlas = "images/inventoryimages/dskull.xml",
        builder_tag = "fragonia"
    },
    {    "CHARACTER",
        "MAGIC",
        "LIGHT"
    }
    
)

 

 

Thank you very much! The game isn't crashing anymore, but there's another problem now :hopelessness: The item supposed to work like thermal stone, but when I put it on the ground it completely disappears. It's probably not an anim file problem. It doesn't become invisible with ability to pick it back up, it's just gone and I cant even pick it up

8 hours ago, Dr Wikhailov said:

Thank you very much! The game isn't crashing anymore, but there's another problem now :hopelessness: The item supposed to work like thermal stone, but when I put it on the ground it completely disappears. It's probably not an anim file problem. It doesn't become invisible with ability to pick it back up, it's just gone and I cant even pick it up

Attach your mod file I will try to help if possible

  • Health 1

 

10 hours ago, Haruhi Kawaii said:

Attach your mod file I will try to help if possible

here is a link to google drive folder with the files: https://drive.google.com/drive/folders/19Hh0Fs2dY4G5g9nY-N1zj9lBVwAzbHml?usp=sharing

 

Edited by Dr Wikhailov
4 hours ago, Dr Wikhailov said:

 

here is a link to google drive folder with the files: https://drive.google.com/drive/folders/19Hh0Fs2dY4G5g9nY-N1zj9lBVwAzbHml?usp=sharing

 

I'm not good at coding, here's what I fixed, however not all work like when equipped it won't work like a Thermal Stone

ds.zip

On 5/12/2023 at 5:11 PM, Haruhi Kawaii said:

I'm not good at coding, here's what I fixed, however not all work like when equipped it won't work like a Thermal Stone

ds.zip 578.67 kB · 1 download

THANK YOU SOOO MUCH!!!!!!! It works now! :wilson_love:

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...