Jump to content

[Tutorial] Using Extended Sample Character Template


Dragon Wolf Leo
 Share

Recommended Posts

So I cannot seem to find the edit button, but if I wanted my character's tail to be big and fluffy and sway like a wave kinda in an idle animation? Would I simple draw over the tail given in the character?


So I cannot seem to find the edit button, but if I wanted my character's tail to be big and fluffy and sway like a wave kinda in an idle animation? Would I simple draw over the tail given in the character?

Link to comment
Share on other sites

My friend and I tried to start creating a character for DST, but ran into a problem upon selecting the character.

 

http://puu.sh/jnqv8/51c1ff9ee0.jpg

 

After choosing the character we were experimenting with from the character selection screen, this is what followed. The game did not crash shortly afterwards; it simply stayed like this until we exited the program. The only thing we've changed so far is the name of the character and the appropriate files, so I'm pretty lost as to what we did wrong. Could anyone provide some insight? It's the first time the two of us have done anything like this.

 

I was having the same exact problem as you were having. The way I solved it was making sure that in all the lua files, there are two forms of your name. My character is Daryl, so when I was replacing all of the names in the lua files, I made sure to do it so it is case sensitive. for example, I had to use the find and replace and replace "esctemplate" with "daryl" and then replace "ESCTEMPLATE" with "DARYL". After doing that, you have to rename all the files to be completely lowercase, so your bigportrait, the exported folders, etc. Hopefully that makes sense, and hopefully it helps. It fixed mine right up.

  • Like 1
Link to comment
Share on other sites

Hi! I really love this mod and I think I might've done something wrong, it won't work. I couldnt get any animations in my anim folder and the game crashed everytime I tried to enable it. I did it manually in the command prompt and now I have this image. tumblr_nt4dg6MfA61tnyhtlo1_540.png

 

Also, when I went in to change ESCTEMPLATE in all caps to my char RAYMON, it found 0 replacements, and when i did it in lowercase, it found 34 instead of 33. I think I didn't click the match caps-- And I think honestly that might be my problem, or part of it. Is there anyways I can manually fix this?... I might just scratch it all and restart, I'm so bad with things like this. Any help would be really appreciated... 

Link to comment
Share on other sites

I'm sorry if this sounds foolish, but I can't find the Don't Starve Mod Tools in the tools menu in the steam app, as in its not there period.  have screenshots also:

I don't have the steam version of the game, I have the standalone you buy from the Klei website, and I just set up the game in steam to run as a non-steam app:oM8FRcP.png

Can anyone tell me how to find the tool? I have everything else, but I need the Don't Starve Tools.

Link to comment
Share on other sites

Is there a way to make a pet for my character? Like, a catcoon that follows my character aroundand does what a catcoon does. If it dies it would respawn in a specified time, can anyone help? if you can.

 

The catcoon already does this. You can give it certain items and it will follow you. It will also cough up items for you. :-)

 

EDIT: You can make a follower like a catcoon by simply copying the catcoon prefabs and brain and tweak the loyalty rate for it. you can also take some follower ticks from Abigail's prefab. :)

Edited by Asparagus
Link to comment
Share on other sites

Hey um great tutorial. I was able to make my own character, but I was wondering how I could make her spawn with 5 blue mushrooms and 5 green ones.

Go to the scripts folder and open prefabs folder, then open scripts.lua. in scripts.lua find:

local prefabs = {}
local start_inv = {
 
}
 
Edit it so that it looks like this:
local prefabs = {}
local start_inv = {
 
"blue_mushroom",
"blue_mushroom",
"blue_mushroom",
"blue_mushroom",
"blue_mushroom",
"green_mushroom",
"green_mushroom",
"green_mushroom",
"green_mushroom",
"green_mushroom",
 
}
 
 
And that should work.
Link to comment
Share on other sites

I havent been able to Test my character within the Dont Starve Together Beta. Ive gotten up to the point where ive Edited everything but when ever I go to Test out the Sprite (even though it is still a Cat) the Character Doesnt Even Show up on the list. Did I miss something?

Link to comment
Share on other sites

 

Go to the scripts folder and open prefabs folder, then open scripts.lua. in scripts.lua find:

local prefabs = {}
local start_inv = {
 
}
 
Edit it so that it looks like this:
local prefabs = {}
local start_inv = {
 
"blue_mushroom",
"blue_mushroom",
"blue_mushroom",
"blue_mushroom",
"blue_mushroom",
"green_mushroom",
"green_mushroom",
"green_mushroom",
"green_mushroom",
"green_mushroom",
 
}
 
 
And that should work.

 

It isn't working.  I still don't spawn with mushrooms.  Here is what I put in the code:

 

local start_inv = {
 

"blue_mushroom",

"blue_mushroom",

"blue_mushroom",

"blue_mushroom",

"blue_mushroom",

"green_mushroom",

"green_mushroom",

"green_mushroom",

"green_mushroom",

"green_mushroom",

 

}

 
Thanks for responding btw.

Link to comment
Share on other sites

It isn't working.  I still don't spawn with mushrooms.  Here is what I put in the code:

 

local start_inv = {
 

"blue_mushroom",

"blue_mushroom",

"blue_mushroom",

"blue_mushroom",

"blue_mushroom",

"green_mushroom",

"green_mushroom",

"green_mushroom",

"green_mushroom",

"green_mushroom",

 

}

 
Thanks for responding btw.

 

Ah, I had this problem too! A lot of tutorials don't really mention this, but to give your character starting items, at the bottom of their .lua file you need to add "start_inv" to the return list like this

return MakePlayerCharacter("your characters name", prefabs, assets, fn, start_inv)
Link to comment
Share on other sites

Hey, I was doing the art for a custom character, and when I got to the hand folder, something threw me off.

6B0nigLsbOBFimFRSTU8FkXfZuxsl.jpg

What exactly is this? Is it a placeholder for tools? How exactly should I go about editing this, or should I just leave it alone?

in DST, the /bonesaw emote uses this. type /bonesaw into the chat to see what I mean.

Link to comment
Share on other sites

Hi :) I'm trying to use your mod and I already changed all the names and I started to play with the look. I have a problem and maybe you're able to help me (or anyone here) - PLEASE

 

I changed the front look and it works in the game, but when the character is showing its back, hair and head does this weird thing:

 why.jpg?1440628006

My question is WHY? I'm so frustrated after trying to solve the problem myself.

  :snarlingspider:

Link to comment
Share on other sites

I havent been able to Test my character within the Dont Starve Together Beta. Ive gotten up to the point where ive Edited everything but when ever I go to Test out the Sprite (even though it is still a Cat) the Character Doesnt Even Show up on the list. Did I miss something?

I fixed the issue

Link to comment
Share on other sites

This tutorial is fantastic! I can safely say that without it, I would have given up making a character long ago. The character I made is Beans (who is our kitty in real life). Unfortunately, just when I was thinking I was home free, I ran into a problem.

 

I did all of the coding first, and then played a save file with the mod for a few days to make sure everything was working. Then I started editing the art... I made a backup copy of the entire exported folder (just in case), and then I took each image into Fireworks, added a new layer, copied the old layer onto the new layer (since my character is also a cat, I just wanted to alter a few things), edited the new layer, and turned the visibility off for the old layer. The bit and canvas size remained the same for all images. When this was done for all images, I checked the .scml and it all looked perfect. I made sure the beans.zip file was deleted in both the anim folder and the exported folder, and then I autocompiled. It ran fine, and when I opened the beans.zip file, the two .tex files looked great. Now here's the problem: I can start the game, and it loads up just fine. I can choose a save file to play (or start a new game). But after a few seconds of the black loading screen, the game stops and closes, without a single warning or followup message. I don't understand anything in the log, but it's included below. Hopefully I did the spoiler tag thing right...

 

Starting up
Don't Starve: 146724 WIN32_STEAM
Build Date: 2015-08-17_12-02-06
THREAD - started 'GAClient' (3696)
HttpClient::ClientThread::Main()
cGame::InitializeOnMainThread
WindowManager::Initialize
WindowManager::SetFullscreen(0, 1366, 768, 60)
GLInfo
~~~~~~
GL_VENDOR: Google Inc.
GL_RENDERER: ANGLE (AMD Radeon HD 6250M )
GL_VERSION: OpenGL ES 2.0 (ANGLE 1.0.0.2249)
GL_SHADING_LANGUAGE_VERSION: OpenGL ES GLSL ES 1.00 (ANGLE 1.0.0.2249)
OpenGL extensions (19, 19):
GL_ANGLE_depth_texture
GL_ANGLE_framebuffer_blit
GL_ANGLE_framebuffer_multisample
GL_ANGLE_instanced_arrays
GL_ANGLE_pack_reverse_row_order
GL_ANGLE_texture_compression_dxt3
GL_ANGLE_texture_compression_dxt5
GL_ANGLE_texture_usage
GL_ANGLE_translated_shader_source
GL_EXT_read_format_bgra
GL_EXT_robustness
GL_EXT_texture_compression_dxt1
GL_EXT_texture_format_BGRA8888
GL_EXT_texture_storage
GL_OES_get_program_binary
GL_OES_packed_depth_stencil
GL_OES_rgb8_rgba8
GL_OES_standard_derivatives
GL_OES_texture_npot
GL_MAX_TEXTURE_SIZE = 16384
GL_MAX_TEXTURE_IMAGE_UNITS = 16
GL_MAX_RENDERBUFFER_SIZE = 16384
GL_MAX_VIEWPORT_DIMS = 16384, 16384
GL_MAX_VARYING_VECTORS = 10
GL_MAX_VERTEX_ATTRIBS = 16
GL_MAX_VERTEX_UNIFORM_VECTORS = 254
GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS = 4
GL_MAX_FRAGMENT_UNIFORM_VECTORS = 221
4 compressed texture formats
texture format 0x83f0
texture format 0x83f1
texture format 0x83f2
texture format 0x83f3
THREAD - started 'WindowsInputManager' (5616)
cDontStarveGame::DoGameSpecificInitialize()
cGame::StartPlaying
LOADING LUA
DoLuaFile scripts/main.lua
DoLuaFile loading buffer scripts/main.lua
scripts/main.lua(161,1) running main.lua
 
scripts/modindex.lua(320,1) loaded modindex
scripts/modindex.lua(75,1) ModIndex: Beginning normal load sequence.
 
scripts/modindex.lua(248,1) WARNING loading modinfo.lua: workshop-174032436 does not specify if it is compatible with the base game. It may not work properly.
scripts/modindex.lua(251,1) WARNING loading modinfo.lua: workshop-174032436 does not specify if it is compatible with Reign of Giants. It may not work properly.
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_Beans
scripts/mods.lua(170,1) Loading mod: Beans
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-174032436
scripts/mods.lua(170,1) Loading mod: workshop-174032436 (InfiniteArmor)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-177824493
scripts/mods.lua(170,1) Loading mod: workshop-177824493 (Always On Tiki Torch)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-177826455
scripts/mods.lua(170,1) Loading mod: workshop-177826455 (Wilson's House With Light)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-179601445
scripts/mods.lua(170,1) Loading mod: workshop-179601445 (Lighter Logs)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-186751793
scripts/mods.lua(170,1) Loading mod: workshop-186751793 (Craftable Krampus Sack) (Old API! (mod: 4 game: 6) )
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-191405153
scripts/mods.lua(170,1) Loading mod: workshop-191405153 (Auto Catch)
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-222103064
scripts/mods.lua(170,1) Loading mod: workshop-222103064 (Where's My Beefalo?)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-249713554
scripts/mods.lua(170,1) Loading mod: workshop-249713554 (BackPackPlus)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-255101162
scripts/mods.lua(170,1) Loading mod: workshop-255101162 (Wendeline)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-265969805
scripts/mods.lua(170,1) Loading mod: workshop-265969805 (Wiggins)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-272586077
scripts/mods.lua(170,1) Loading mod: workshop-272586077 (TARDIS_1.5)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-287049398
scripts/mods.lua(170,1) Loading mod: workshop-287049398 (Spider Blade)
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-287889074
scripts/mods.lua(170,1) Loading mod: workshop-287889074 (Resurrection Shelter)
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-298407615
scripts/mods.lua(170,1) Loading mod: workshop-298407615 (Season Clock)
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-305071895
scripts/mods.lua(170,1) Loading mod: workshop-305071895 (Clock in caves)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-323996352
scripts/mods.lua(170,1) Loading mod: workshop-323996352 (Wormhole Marks)
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-341263372
scripts/mods.lua(170,1) Loading mod: workshop-341263372 (Speed Me Up)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-354232464
scripts/mods.lua(170,1) Loading mod: workshop-354232464 (Koalefants Family)
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-379794091
scripts/mods.lua(170,1) Loading mod: workshop-379794091 (Craftable Tunnels)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-386256562
scripts/mods.lua(170,1) Loading mod: workshop-386256562 (Bunny puffs from rabbit holes)
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-388948823
scripts/mods.lua(170,1) Loading mod: workshop-388948823 (Path Lights)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-395417557
scripts/mods.lua(170,1) Loading mod: workshop-395417557 (Charlie (Custom Intro))
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-416988873
scripts/mods.lua(170,1) Loading mod: workshop-416988873 (Dusk and Night Music)
scripts/mods.lua(197,1) Mod: workshop-298407615 (Season Clock) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-298407615 (Season Clock)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-298407615 (Season Clock) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-305071895 (Clock in caves) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-305071895 (Clock in caves)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-305071895 (Clock in caves) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-323996352 (Wormhole Marks) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-323996352 (Wormhole Marks)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-323996352 (Wormhole Marks) Loading modmain.lua
scripts/mods.lua(197,1) Mod: Beans Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: Beans  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: Beans Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-287889074 (Resurrection Shelter) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-287889074 (Resurrection Shelter)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-287889074 (Resurrection Shelter) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-287049398 (Spider Blade) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-287049398 (Spider Blade)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-287049398 (Spider Blade) Loading modmain.lua
scripts/mods.lua(123,1) modimport: ../mods/workshop-287049398/queen_loot.lua
scripts/mods.lua(197,1) Mod: workshop-341263372 (Speed Me Up) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-341263372 (Speed Me Up)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-341263372 (Speed Me Up) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-379794091 (Craftable Tunnels) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-379794091 (Craftable Tunnels)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-379794091 (Craftable Tunnels) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-354232464 (Koalefants Family) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-354232464 (Koalefants Family)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-354232464 (Koalefants Family) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-388948823 (Path Lights) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-388948823 (Path Lights)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-388948823 (Path Lights) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-386256562 (Bunny puffs from rabbit holes) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-386256562 (Bunny puffs from rabbit holes)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-386256562 (Bunny puffs from rabbit holes) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-395417557 (Charlie (Custom Intro)) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-395417557 (Charlie (Custom Intro))  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-395417557 (Charlie (Custom Intro)) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-272586077 (TARDIS_1.5) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-272586077 (TARDIS_1.5)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-272586077 (TARDIS_1.5) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-255101162 (Wendeline) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-255101162 (Wendeline)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-255101162 (Wendeline) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-177826455 (Wilson's House With Light) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-177826455 (Wilson's House With Light)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-177826455 (Wilson's House With Light) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-177824493 (Always On Tiki Torch) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-177824493 (Always On Tiki Torch)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-177824493 (Always On Tiki Torch) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-174032436 (InfiniteArmor) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-174032436 (InfiniteArmor)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-174032436 (InfiniteArmor) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-265969805 (Wiggins) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-265969805 (Wiggins)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-265969805 (Wiggins) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-179601445 (Lighter Logs) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-179601445 (Lighter Logs)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-179601445 (Lighter Logs) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-191405153 (Auto Catch) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-191405153 (Auto Catch)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-191405153 (Auto Catch) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-186751793 (Craftable Krampus Sack) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-186751793 (Craftable Krampus Sack)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-186751793 (Craftable Krampus Sack) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-249713554 (BackPackPlus) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-249713554 (BackPackPlus)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-249713554 (BackPackPlus) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-222103064 (Where's My Beefalo?) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-222103064 (Where's My Beefalo?)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-222103064 (Where's My Beefalo?) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-416988873 (Dusk and Night Music) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-416988873 (Dusk and Night Music)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-416988873 (Dusk and Night Music) Loading modmain.lua
LOADING LUA SUCCESS
scripts/playerdeaths.lua(79,1) PlayerDeaths loaded morgue 1348
scripts/playerprofile.lua(508,1) loaded profile
scripts/playerprofile.lua(572,1) bloom_enabled false
DEVICE CAP 1441507584
scripts/saveindex.lua(99,1) loaded saveindex
scripts/gamelogic.lua(1165,1) OnFilesLoaded()
scripts/gamelogic.lua(1154,1) OnUpdatePurchaseStateComplete
scripts/gamelogic.lua(118,1) Unload BE
Could not unload undefined prefab 0x4374c56c (yellowstaff)
Could not unload undefined prefab 0x36768a92 (orangestaff)
Could not unload undefined prefab 0x378bda50 (wall_wood_item)
Could not unload undefined prefab 0x8cc766ef (pumpkin_lantern)
Could not unload undefined prefab 0xe2bfa46 (tophat)
Could not unload undefined prefab 0x46094f1b (beefalohat)
Could not unload undefined prefab 0xcceee6c3 (cutstone)
Could not unload undefined prefab 0xaf34ecc0 (trunkvest_winter)
Could not unload undefined prefab 0x875750ea (turf_road)
Could not unload undefined prefab 0xcd7669e5 (nightsword)
Could not unload undefined prefab 0x1daa5ab7 (turf_carpetfloor)
Could not unload undefined prefab 0xefa57cea (bandage)
Could not unload undefined prefab 0x86860bc2 (boomerang)
Could not unload undefined prefab 0xe51acd32 (lightning_rod)
Could not unload undefined prefab 0x947bfcb8 (lightning_rod_placer)
Could not unload undefined prefab 0xb1fa364d (pickaxe)
Could not unload undefined prefab 0x3f5176c5 (firepit)
Could not unload undefined prefab 0x8a462465 (firepit_placer)
Could not unload undefined prefab 0xe87e06c0 (icebox)
Could not unload undefined prefab 0xf2bd1baa (icebox_placer)
Could not unload undefined prefab 0xbea16a01 (hambat)
Could not unload undefined prefab 0x10473739 (spear)
Could not unload undefined prefab 0x8d44bbad (cookpot)
Could not unload undefined prefab 0x30d2f57d (cookpot_placer)
Could not unload undefined prefab 0x89c20b1b (telebase)
Could not unload undefined prefab 0x868a468f (telebase_placer)
Could not unload undefined prefab 0x9d92cce (purpleamulet)
Could not unload undefined prefab 0xcf1626 (rabbithouse)
Could not unload undefined prefab 0x1aa31ec4 (rabbithouse_placer)
Could not unload undefined prefab 0xe474f23c (armormarble)
Could not unload undefined prefab 0x3ccdbe75 (icestaff)
Could not unload undefined prefab 0x68ba7101 (researchlab3)
Could not unload undefined prefab 0xd6985329 (researchlab3_placer)
Could not unload undefined prefab 0x21bf03b1 (thulecite)
Could not unload undefined prefab 0x539e9e8a (trunkvest_summer)
Could not unload undefined prefab 0xf4eb0943 (shovel)
Could not unload undefined prefab 0x761a1799 (gunpowder)
Could not unload undefined prefab 0x6a6679d0 (wilson_house_light)
Could not unload undefined prefab 0x6ac9049a (wilson_house_light_placer)
Could not unload undefined prefab 0x9a99c7b7 (armorgrass)
Could not unload undefined prefab 0xda17c8e8 (armorslurper)
Could not unload undefined prefab 0x47611d71 (sweatervest)
Could not unload undefined prefab 0x85181f7c (minerhat)
Could not unload undefined prefab 0xe8f381a1 (turf_checkerfloor)
Could not unload undefined prefab 0x80cb1e18 (featherhat)
Could not unload undefined prefab 0x2e264dbc (blowdart_pipe)
Could not unload undefined prefab 0xc4101586 (hammer)
Could not unload undefined prefab 0x462db11b (alwaysontikitorch)
Could not unload undefined prefab 0x8ea1208f (alwaysontikitorch_placer)
Could not unload undefined prefab 0x41ba89b5 (nightmarefuel)
Could not unload undefined prefab 0xfbaefa0e (rainometer)
Could not unload undefined prefab 0xeea990dc (rainometer_placer)
Could not unload undefined prefab 0xefc1904a (hat_four_bw)
Could not unload undefined prefab 0x7fcb037d (greenstaff)
Could not unload undefined prefab 0x62fde398 (r_shelter)
Could not unload undefined prefab 0xf22c38d2 (r_shelter_placer)
Could not unload undefined prefab 0x3c935451 (eyeturret_item)
Could not unload undefined prefab 0xcba65752 (amulet)
Could not unload undefined prefab 0xe16c07d0 (ruinshat)
Could not unload undefined prefab 0xcad92460 (flowerhat)
Could not unload undefined prefab 0xb1591875 (greenamulet)
Could not unload undefined prefab 0xdac7fbf5 (birdcage)
Could not unload undefined prefab 0xe1f9b335 (birdcage_placer)
Could not unload undefined prefab 0x68ba7102 (researchlab4)
Could not unload undefined prefab 0x79aa04e8 (researchlab4_placer)
Could not unload undefined prefab 0x2c158f7c (torch)
Could not unload undefined prefab 0x265d1455 (turf_woodfloor)
Could not unload undefined prefab 0x9a0ed246 (yellowamulet)
Could not unload undefined prefab 0x9a6718eb (resurrectionstatue)
Could not unload undefined prefab 0x6b0c64bf (resurrectionstatue_placer)
Could not unload undefined prefab 0xdfb37276 (telestaff)
Could not unload undefined prefab 0x3f6c9ebb (diviningrod)
Could not unload undefined prefab 0xe5936c6a (firestaff)
Could not unload undefined prefab 0x34fb4f82 (pitchfork)
Could not unload undefined prefab 0x3d4d1dc6 (bedroll_straw)
Could not unload undefined prefab 0xadfdb7ae (armor_sanity)
Could not unload undefined prefab 0xf8e41fa9 (bedroll_furry)
Could not unload undefined prefab 0x5ce426c4 (blowdart_fire)
Could not unload undefined prefab 0x4740cff7 (tent)
Could not unload undefined prefab 0xb4d742b3 (tent_placer)
Could not unload undefined prefab 0x4ba0f0c8 (tunnel)
Could not unload undefined prefab 0xb0213fa2 (tunnel_placer)
Could not unload undefined prefab 0x62a5e7fe (nightlight)
Could not unload undefined prefab 0x185806ec (nightlight_placer)
Could not unload undefined prefab 0xa1e54a85 (goldenaxe)
Could not unload undefined prefab 0xa2c788fc (path_light)
Could not unload undefined prefab 0x9c9cc26e (path_light_placer)
Could not unload undefined prefab 0xe6af29d2 (compass)
Could not unload undefined prefab 0x19c004b2 (pighouse)
Could not unload undefined prefab 0x469fe538 (pighouse_placer)
Could not unload undefined prefab 0xca16846d (boards)
Could not unload undefined prefab 0x71983768 (scythe)
Could not unload undefined prefab 0xfa14dec6 (birdtrap)
Could not unload undefined prefab 0x7c11af2 (treasurechest)
Could not unload undefined prefab 0xd411bef8 (treasurechest_placer)
Could not unload undefined prefab 0xef21c9f2 (rope)
Could not unload undefined prefab 0xb981ecda (fast_farmplot)
Could not unload undefined prefab 0x2639673 (farmplot_placer)
Could not unload undefined prefab 0xbcfca634 (strawhat)
Could not unload undefined prefab 0x111db7ae (footballhat)
Could not unload undefined prefab 0x1cd9e60e (razor)
Could not unload undefined prefab 0xd8067599 (beehat)
Could not unload undefined prefab 0xa77110b7 (whitestaff)
Could not unload undefined prefab 0x15220700 (backpack)
Could not unload undefined prefab 0xd5201c09 (beebox)
Could not unload undefined prefab 0x753b7621 (beebox_placer)
Could not unload undefined prefab 0xb918c5fd (fishingrod)
Could not unload undefined prefab 0xb921cd3a (krampus_sack)
Could not unload undefined prefab 0xec43b9f4 (sewing_kit)
Could not unload undefined prefab 0x739fbe3c (homesign)
Could not unload undefined prefab 0x33fdbd2e (homesign_placer)
Could not unload undefined prefab 0x303bfdce (axe)
Could not unload undefined prefab 0xb6201ac9 (onemanband)
Could not unload undefined prefab 0x4685284 (umbrella)
Could not unload undefined prefab 0x6f21e747 (piggyback)
Could not unload undefined prefab 0x94cf6c04 (goldenpickaxe)
Could not unload undefined prefab 0x75370b6 (papyrus)
Could not unload undefined prefab 0x3949a42 (meatrack)
Could not unload undefined prefab 0x56340ba8 (meatrack_placer)
Could not unload undefined prefab 0xbc429ef3 (bushhat)
Could not unload undefined prefab 0xfdcabd86 (earmuffshat)
Could not unload undefined prefab 0xb18763a5 (scarf)
Could not unload undefined prefab 0x7f46d7c0 (batbat)
Could not unload undefined prefab 0x3cb06493 (healingsalve)
Could not unload undefined prefab 0x68ba7100 (researchlab2)
Could not unload undefined prefab 0x3386a16a (researchlab2_placer)
Could not unload undefined prefab 0x37c31aa6 (lantern)
Could not unload undefined prefab 0xde4bc7e7 (wall_hay_item)
Could not unload undefined prefab 0x8bbc7f55 (beemine)
Could not unload undefined prefab 0x3edae42e (multitool_axe_pickaxe)
Could not unload undefined prefab 0x7f2d088c (armorwood)
Could not unload undefined prefab 0x76d26529 (bugnet)
Could not unload undefined prefab 0x1541c9cc (armorruins)
Could not unload undefined prefab 0xee1125f1 (bluebox)
Could not unload undefined prefab 0x19534239 (bluebox_placer)
Could not unload undefined prefab 0x1c48b877 (campfire)
Could not unload undefined prefab 0xdfe3a33 (campfire_placer)
Could not unload undefined prefab 0x2ca456a0 (orangeamulet)
Could not unload undefined prefab 0xa8b25abc (wall_ruins_item)
Could not unload undefined prefab 0x68370bd6 (trap_teeth)
Could not unload undefined prefab 0x2e54b535 (cane)
Could not unload undefined prefab 0xcda99af6 (winterhat)
Could not unload undefined prefab 0xfb180669 (blowdart_sleep)
Could not unload undefined prefab 0x38967bb2 (researchlab)
Could not unload undefined prefab 0x77e9ae38 (researchlab_placer)
Could not unload undefined prefab 0x4d9a964d (trap)
Could not unload undefined prefab 0xdf13a0c1 (ruins_bat)
Could not unload undefined prefab 0x1153dbb9 (pottedfern)
Could not unload undefined prefab 0xf2102a71 (pottedfern_placer)
Could not unload undefined prefab 0x5a59f5cc (goldenshovel)
Could not unload undefined prefab 0x263bc4d5 (slow_farmplot)
Could not unload undefined prefab 0x2639673 (farmplot_placer)
Could not unload undefined prefab 0xe5071541 (nightmare_timepiece)
Could not unload undefined prefab 0xc3bf310c (blueamulet)
Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
Could not unload undefined prefab 0xda1f7edf (winterometer)
Could not unload undefined prefab 0x955229cb (winterometer_placer)
Could not unload undefined prefab 0x22ec3802 (wall_stone_item)
Could not unload undefined prefab 0xdb20fa95 (heatrock)
Could not unload undefined prefab 0xf0330963 (panflute)
Could not unload undefined prefab 0x33ab6997 (hud)
Could not unload undefined prefab 0x3364203d (forest)
Could not unload undefined prefab 0x2e5cb72d (cave)
Could not unload undefined prefab 0x40b82ff2 (maxwell)
Could not unload undefined prefab 0xbddda476 (fire)
Could not unload undefined prefab 0x1078732c (character_fire)
Could not unload undefined prefab 0x427b5b39 (shatter)
scripts/gamelogic.lua(123,1) Unload BE done
scripts/mods.lua(287,1) Mod: workshop-298407615 (Season Clock) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-298407615 (Season Clock)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-305071895 (Clock in caves) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-305071895 (Clock in caves)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-323996352 (Wormhole Marks) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-323996352 (Wormhole Marks)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: Beans Registering prefabs
scripts/mods.lua(293,1) Mod: Beans  Registering prefab file: prefabs/beans
scripts/mods.lua(297,1) Mod: Beans    beans
scripts/mods.lua(310,1) Mod: Beans  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-287889074 (Resurrection Shelter) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-287889074 (Resurrection Shelter)  Registering prefab file: prefabs/r_shelter
scripts/mods.lua(297,1) Mod: workshop-287889074 (Resurrection Shelter)    r_shelter
scripts/mods.lua(297,1) Mod: workshop-287889074 (Resurrection Shelter)    r_shelter_placer
scripts/mods.lua(310,1) Mod: workshop-287889074 (Resurrection Shelter)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-287049398 (Spider Blade) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-287049398 (Spider Blade)  Registering prefab file: prefabs/scythe
scripts/mods.lua(297,1) Mod: workshop-287049398 (Spider Blade)    scythe
scripts/mods.lua(293,1) Mod: workshop-287049398 (Spider Blade)  Registering prefab file: prefabs/queen_claw
scripts/mods.lua(297,1) Mod: workshop-287049398 (Spider Blade)    queen_claw
scripts/mods.lua(310,1) Mod: workshop-287049398 (Spider Blade)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-341263372 (Speed Me Up) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-341263372 (Speed Me Up)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-379794091 (Craftable Tunnels) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-379794091 (Craftable Tunnels)  Registering prefab file: prefabs/tunnel
scripts/mods.lua(297,1) Mod: workshop-379794091 (Craftable Tunnels)    tunnel
scripts/mods.lua(297,1) Mod: workshop-379794091 (Craftable Tunnels)    tunnel_placer
scripts/mods.lua(293,1) Mod: workshop-379794091 (Craftable Tunnels)  Registering prefab file: prefabs/flag
scripts/mods.lua(297,1) Mod: workshop-379794091 (Craftable Tunnels)    flag
scripts/mods.lua(310,1) Mod: workshop-379794091 (Craftable Tunnels)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-354232464 (Koalefants Family) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-354232464 (Koalefants Family)  Registering prefab file: prefabs/baby_koalefant_summer
scripts/mods.lua(297,1) Mod: workshop-354232464 (Koalefants Family)    baby_koalefant_summer
scripts/mods.lua(293,1) Mod: workshop-354232464 (Koalefants Family)  Registering prefab file: prefabs/baby_koalefant_winter
scripts/mods.lua(297,1) Mod: workshop-354232464 (Koalefants Family)    baby_koalefant_winter
scripts/mods.lua(310,1) Mod: workshop-354232464 (Koalefants Family)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-388948823 (Path Lights) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-388948823 (Path Lights)  Registering prefab file: prefabs/path_light
scripts/mods.lua(297,1) Mod: workshop-388948823 (Path Lights)    path_light
scripts/mods.lua(297,1) Mod: workshop-388948823 (Path Lights)    path_light_placer
scripts/mods.lua(310,1) Mod: workshop-388948823 (Path Lights)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-386256562 (Bunny puffs from rabbit holes) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-386256562 (Bunny puffs from rabbit holes)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-395417557 (Charlie (Custom Intro)) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-395417557 (Charlie (Custom Intro))  Registering prefab file: prefabs/charlie
scripts/mods.lua(297,1) Mod: workshop-395417557 (Charlie (Custom Intro))    charlie
scripts/mods.lua(310,1) Mod: workshop-395417557 (Charlie (Custom Intro))  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-272586077 (TARDIS_1.5) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/bluebox
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    bluebox
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    bluebox_placer
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/statueharp
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    statueharp
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/whitegem
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    whitegem
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/whitestaff
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    whitestaff
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/package
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    package
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    package_placer
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/cube
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    cube
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/scarf
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    scarf
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/hat_four_bw
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    hat_four_bw
scripts/mods.lua(310,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering default mod prefab
../mods/workshop-272586077/images/inventoryimages/whitestaff.tex is 60x60 but compressed textures must have power of 2 dimensions.
scripts/mods.lua(287,1) Mod: workshop-255101162 (Wendeline) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-255101162 (Wendeline)  Registering prefab file: prefabs/wei
scripts/mods.lua(297,1) Mod: workshop-255101162 (Wendeline)    wei
scripts/mods.lua(310,1) Mod: workshop-255101162 (Wendeline)  Registering default mod prefab
../mods/workshop-255101162/images/saveslot_portraits/wei.tex is 120x104 but compressed textures must have power of 2 dimensions.
../mods/workshop-255101162/images/selectscreen_portraits/wei.tex is 188x284 but compressed textures must have power of 2 dimensions.
../mods/workshop-255101162/images/selectscreen_portraits/wei_silho.tex is 188x284 but compressed textures must have power of 2 dimensions.
scripts/mods.lua(287,1) Mod: workshop-177826455 (Wilson's House With Light) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-177826455 (Wilson's House With Light)  Registering prefab file: prefabs/wilson_house_light
scripts/mods.lua(297,1) Mod: workshop-177826455 (Wilson's House With Light)    wilson_house_light
scripts/mods.lua(297,1) Mod: workshop-177826455 (Wilson's House With Light)    wilson_house_light_placer
scripts/mods.lua(293,1) Mod: workshop-177826455 (Wilson's House With Light)  Registering prefab file: prefabs/pigtorch_flame
scripts/mods.lua(297,1) Mod: workshop-177826455 (Wilson's House With Light)    pigtorch_flame
scripts/mods.lua(310,1) Mod: workshop-177826455 (Wilson's House With Light)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-177824493 (Always On Tiki Torch) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-177824493 (Always On Tiki Torch)  Registering prefab file: prefabs/alwaysontikitorch
scripts/mods.lua(297,1) Mod: workshop-177824493 (Always On Tiki Torch)    alwaysontikitorch
scripts/mods.lua(297,1) Mod: workshop-177824493 (Always On Tiki Torch)    alwaysontikitorch_placer
scripts/mods.lua(293,1) Mod: workshop-177824493 (Always On Tiki Torch)  Registering prefab file: prefabs/tikitorchflame
scripts/mods.lua(297,1) Mod: workshop-177824493 (Always On Tiki Torch)    tikitorchflame
scripts/mods.lua(310,1) Mod: workshop-177824493 (Always On Tiki Torch)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-174032436 (InfiniteArmor) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-174032436 (InfiniteArmor)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-265969805 (Wiggins) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-265969805 (Wiggins)  Registering prefab file: prefabs/wgg
scripts/mods.lua(297,1) Mod: workshop-265969805 (Wiggins)    wgg
scripts/mods.lua(310,1) Mod: workshop-265969805 (Wiggins)  Registering default mod prefab
../mods/workshop-265969805/images/selectscreen_portraits/wgg_silho.tex is 188x284 but compressed textures must have power of 2 dimensions.
scripts/mods.lua(287,1) Mod: workshop-179601445 (Lighter Logs) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-179601445 (Lighter Logs)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-191405153 (Auto Catch) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-191405153 (Auto Catch)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-186751793 (Craftable Krampus Sack) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-186751793 (Craftable Krampus Sack)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-249713554 (BackPackPlus) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-249713554 (BackPackPlus)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-222103064 (Where's My Beefalo?) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-222103064 (Where's My Beefalo?)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-416988873 (Dusk and Night Music) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-416988873 (Dusk and Night Music)  Registering default mod prefab
scripts/gamelogic.lua(133,1) Load FE
scripts/gamelogic.lua(135,1) Load FE: done
scripts/screens/mainscreen.lua(583,1) platform_motd table: 123F71C0
SimLuaProxy::QueryServer()
scripts/modindex.lua(85,1) ModIndex: Load sequence finished successfully.
 
Reset() returning
HttpClientWriteCallback (0x020C6164, 1, 1298, 0x0671FDB4)
HttpClientWriteCallback READ 1298 (1298 total)
QueryServerComplete no callback
QueryServerComplete no callback
scripts/screens/mainscreen.lua(583,1) platform_motd table: 12584F10
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-298407615
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-305071895
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-323996352
scripts/mods.lua(322,1) unloading prefabs for mod MOD_Beans
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-287889074
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-287049398
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-341263372
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-379794091
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-354232464
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-388948823
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-386256562
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-395417557
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-272586077
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-255101162
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-177826455
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-177824493
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-174032436
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-265969805
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-179601445
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-191405153
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-186751793
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-249713554
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-222103064
scripts/mods.lua(322,1) unloading prefabs for mod MOD_workshop-416988873
Collecting garbage...
lua_gc took 0.07 seconds
~SimLuaProxy()
lua_close took 0.11 seconds
ReleaseAll
ReleaseAll Finished
cGame::StartPlaying
LOADING LUA
DoLuaFile scripts/main.lua
DoLuaFile loading buffer scripts/main.lua
scripts/main.lua(161,1) running main.lua
 
scripts/modindex.lua(320,1) loaded modindex
scripts/modindex.lua(75,1) ModIndex: Beginning normal load sequence.
 
scripts/modindex.lua(248,1) WARNING loading modinfo.lua: workshop-174032436 does not specify if it is compatible with the base game. It may not work properly.
scripts/modindex.lua(251,1) WARNING loading modinfo.lua: workshop-174032436 does not specify if it is compatible with Reign of Giants. It may not work properly.
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_Beans
scripts/mods.lua(170,1) Loading mod: Beans
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-174032436
scripts/mods.lua(170,1) Loading mod: workshop-174032436 (InfiniteArmor)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-177824493
scripts/mods.lua(170,1) Loading mod: workshop-177824493 (Always On Tiki Torch)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-177826455
scripts/mods.lua(170,1) Loading mod: workshop-177826455 (Wilson's House With Light)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-179601445
scripts/mods.lua(170,1) Loading mod: workshop-179601445 (Lighter Logs)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-186751793
scripts/mods.lua(170,1) Loading mod: workshop-186751793 (Craftable Krampus Sack) (Old API! (mod: 4 game: 6) )
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-191405153
scripts/mods.lua(170,1) Loading mod: workshop-191405153 (Auto Catch)
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-222103064
scripts/mods.lua(170,1) Loading mod: workshop-222103064 (Where's My Beefalo?)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-249713554
scripts/mods.lua(170,1) Loading mod: workshop-249713554 (BackPackPlus)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-255101162
scripts/mods.lua(170,1) Loading mod: workshop-255101162 (Wendeline)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-265969805
scripts/mods.lua(170,1) Loading mod: workshop-265969805 (Wiggins)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-272586077
scripts/mods.lua(170,1) Loading mod: workshop-272586077 (TARDIS_1.5)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-287049398
scripts/mods.lua(170,1) Loading mod: workshop-287049398 (Spider Blade)
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-287889074
scripts/mods.lua(170,1) Loading mod: workshop-287889074 (Resurrection Shelter)
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-298407615
scripts/mods.lua(170,1) Loading mod: workshop-298407615 (Season Clock)
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-305071895
scripts/mods.lua(170,1) Loading mod: workshop-305071895 (Clock in caves)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-323996352
scripts/mods.lua(170,1) Loading mod: workshop-323996352 (Wormhole Marks)
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-341263372
scripts/mods.lua(170,1) Loading mod: workshop-341263372 (Speed Me Up)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-354232464
scripts/mods.lua(170,1) Loading mod: workshop-354232464 (Koalefants Family)
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-379794091
scripts/mods.lua(170,1) Loading mod: workshop-379794091 (Craftable Tunnels)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-386256562
scripts/mods.lua(170,1) Loading mod: workshop-386256562 (Bunny puffs from rabbit holes)
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-388948823
scripts/mods.lua(170,1) Loading mod: workshop-388948823 (Path Lights)
scripts/modindex.lua(395,1) Could not load mod_config_data/modconfiguration_workshop-395417557
scripts/mods.lua(170,1) Loading mod: workshop-395417557 (Charlie (Custom Intro))
scripts/modindex.lua(390,1) loaded mod_config_data/modconfiguration_workshop-416988873
scripts/mods.lua(170,1) Loading mod: workshop-416988873 (Dusk and Night Music)
scripts/mods.lua(197,1) Mod: workshop-298407615 (Season Clock) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-298407615 (Season Clock)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-298407615 (Season Clock) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-305071895 (Clock in caves) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-305071895 (Clock in caves)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-305071895 (Clock in caves) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-323996352 (Wormhole Marks) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-323996352 (Wormhole Marks)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-323996352 (Wormhole Marks) Loading modmain.lua
scripts/mods.lua(197,1) Mod: Beans Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: Beans  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: Beans Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-287889074 (Resurrection Shelter) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-287889074 (Resurrection Shelter)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-287889074 (Resurrection Shelter) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-287049398 (Spider Blade) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-287049398 (Spider Blade)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-287049398 (Spider Blade) Loading modmain.lua
scripts/mods.lua(123,1) modimport: ../mods/workshop-287049398/queen_loot.lua
scripts/mods.lua(197,1) Mod: workshop-341263372 (Speed Me Up) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-341263372 (Speed Me Up)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-341263372 (Speed Me Up) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-379794091 (Craftable Tunnels) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-379794091 (Craftable Tunnels)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-379794091 (Craftable Tunnels) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-354232464 (Koalefants Family) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-354232464 (Koalefants Family)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-354232464 (Koalefants Family) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-388948823 (Path Lights) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-388948823 (Path Lights)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-388948823 (Path Lights) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-386256562 (Bunny puffs from rabbit holes) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-386256562 (Bunny puffs from rabbit holes)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-386256562 (Bunny puffs from rabbit holes) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-395417557 (Charlie (Custom Intro)) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-395417557 (Charlie (Custom Intro))  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-395417557 (Charlie (Custom Intro)) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-272586077 (TARDIS_1.5) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-272586077 (TARDIS_1.5)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-272586077 (TARDIS_1.5) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-255101162 (Wendeline) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-255101162 (Wendeline)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-255101162 (Wendeline) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-177826455 (Wilson's House With Light) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-177826455 (Wilson's House With Light)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-177826455 (Wilson's House With Light) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-177824493 (Always On Tiki Torch) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-177824493 (Always On Tiki Torch)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-177824493 (Always On Tiki Torch) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-174032436 (InfiniteArmor) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-174032436 (InfiniteArmor)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-174032436 (InfiniteArmor) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-265969805 (Wiggins) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-265969805 (Wiggins)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-265969805 (Wiggins) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-179601445 (Lighter Logs) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-179601445 (Lighter Logs)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-179601445 (Lighter Logs) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-191405153 (Auto Catch) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-191405153 (Auto Catch)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-191405153 (Auto Catch) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-186751793 (Craftable Krampus Sack) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-186751793 (Craftable Krampus Sack)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-186751793 (Craftable Krampus Sack) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-249713554 (BackPackPlus) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-249713554 (BackPackPlus)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-249713554 (BackPackPlus) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-222103064 (Where's My Beefalo?) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-222103064 (Where's My Beefalo?)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-222103064 (Where's My Beefalo?) Loading modmain.lua
scripts/mods.lua(197,1) Mod: workshop-416988873 (Dusk and Night Music) Loading modworldgenmain.lua
scripts/mods.lua(205,1) Mod: workshop-416988873 (Dusk and Night Music)  Mod had no modworldgenmain.lua. Skipping.
scripts/mods.lua(197,1) Mod: workshop-416988873 (Dusk and Night Music) Loading modmain.lua
LOADING LUA SUCCESS
scripts/playerdeaths.lua(79,1) PlayerDeaths loaded morgue 1348
scripts/playerprofile.lua(508,1) loaded profile
scripts/playerprofile.lua(572,1) bloom_enabled false
DEVICE CAP 1441507635
scripts/saveindex.lua(99,1) loaded saveindex
scripts/gamelogic.lua(1165,1) OnFilesLoaded()
scripts/gamelogic.lua(1154,1) OnUpdatePurchaseStateComplete
scripts/gamelogic.lua(148,1) Unload FE
scripts/gamelogic.lua(150,1) Unload FE done
scripts/mods.lua(287,1) Mod: workshop-298407615 (Season Clock) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-298407615 (Season Clock)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-305071895 (Clock in caves) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-305071895 (Clock in caves)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-323996352 (Wormhole Marks) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-323996352 (Wormhole Marks)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: Beans Registering prefabs
scripts/mods.lua(293,1) Mod: Beans  Registering prefab file: prefabs/beans
scripts/mods.lua(297,1) Mod: Beans    beans
scripts/mods.lua(310,1) Mod: Beans  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-287889074 (Resurrection Shelter) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-287889074 (Resurrection Shelter)  Registering prefab file: prefabs/r_shelter
scripts/mods.lua(297,1) Mod: workshop-287889074 (Resurrection Shelter)    r_shelter
scripts/mods.lua(297,1) Mod: workshop-287889074 (Resurrection Shelter)    r_shelter_placer
scripts/mods.lua(310,1) Mod: workshop-287889074 (Resurrection Shelter)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-287049398 (Spider Blade) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-287049398 (Spider Blade)  Registering prefab file: prefabs/scythe
scripts/mods.lua(297,1) Mod: workshop-287049398 (Spider Blade)    scythe
scripts/mods.lua(293,1) Mod: workshop-287049398 (Spider Blade)  Registering prefab file: prefabs/queen_claw
scripts/mods.lua(297,1) Mod: workshop-287049398 (Spider Blade)    queen_claw
scripts/mods.lua(310,1) Mod: workshop-287049398 (Spider Blade)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-341263372 (Speed Me Up) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-341263372 (Speed Me Up)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-379794091 (Craftable Tunnels) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-379794091 (Craftable Tunnels)  Registering prefab file: prefabs/tunnel
scripts/mods.lua(297,1) Mod: workshop-379794091 (Craftable Tunnels)    tunnel
scripts/mods.lua(297,1) Mod: workshop-379794091 (Craftable Tunnels)    tunnel_placer
scripts/mods.lua(293,1) Mod: workshop-379794091 (Craftable Tunnels)  Registering prefab file: prefabs/flag
scripts/mods.lua(297,1) Mod: workshop-379794091 (Craftable Tunnels)    flag
scripts/mods.lua(310,1) Mod: workshop-379794091 (Craftable Tunnels)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-354232464 (Koalefants Family) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-354232464 (Koalefants Family)  Registering prefab file: prefabs/baby_koalefant_summer
scripts/mods.lua(297,1) Mod: workshop-354232464 (Koalefants Family)    baby_koalefant_summer
scripts/mods.lua(293,1) Mod: workshop-354232464 (Koalefants Family)  Registering prefab file: prefabs/baby_koalefant_winter
scripts/mods.lua(297,1) Mod: workshop-354232464 (Koalefants Family)    baby_koalefant_winter
scripts/mods.lua(310,1) Mod: workshop-354232464 (Koalefants Family)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-388948823 (Path Lights) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-388948823 (Path Lights)  Registering prefab file: prefabs/path_light
scripts/mods.lua(297,1) Mod: workshop-388948823 (Path Lights)    path_light
scripts/mods.lua(297,1) Mod: workshop-388948823 (Path Lights)    path_light_placer
scripts/mods.lua(310,1) Mod: workshop-388948823 (Path Lights)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-386256562 (Bunny puffs from rabbit holes) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-386256562 (Bunny puffs from rabbit holes)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-395417557 (Charlie (Custom Intro)) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-395417557 (Charlie (Custom Intro))  Registering prefab file: prefabs/charlie
scripts/mods.lua(297,1) Mod: workshop-395417557 (Charlie (Custom Intro))    charlie
scripts/mods.lua(310,1) Mod: workshop-395417557 (Charlie (Custom Intro))  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-272586077 (TARDIS_1.5) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/bluebox
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    bluebox
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    bluebox_placer
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/statueharp
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    statueharp
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/whitegem
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    whitegem
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/whitestaff
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    whitestaff
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/package
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    package
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    package_placer
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/cube
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    cube
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/scarf
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    scarf
scripts/mods.lua(293,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering prefab file: prefabs/hat_four_bw
scripts/mods.lua(297,1) Mod: workshop-272586077 (TARDIS_1.5)    hat_four_bw
scripts/mods.lua(310,1) Mod: workshop-272586077 (TARDIS_1.5)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-255101162 (Wendeline) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-255101162 (Wendeline)  Registering prefab file: prefabs/wei
scripts/mods.lua(297,1) Mod: workshop-255101162 (Wendeline)    wei
scripts/mods.lua(310,1) Mod: workshop-255101162 (Wendeline)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-177826455 (Wilson's House With Light) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-177826455 (Wilson's House With Light)  Registering prefab file: prefabs/wilson_house_light
scripts/mods.lua(297,1) Mod: workshop-177826455 (Wilson's House With Light)    wilson_house_light
scripts/mods.lua(297,1) Mod: workshop-177826455 (Wilson's House With Light)    wilson_house_light_placer
scripts/mods.lua(293,1) Mod: workshop-177826455 (Wilson's House With Light)  Registering prefab file: prefabs/pigtorch_flame
scripts/mods.lua(297,1) Mod: workshop-177826455 (Wilson's House With Light)    pigtorch_flame
scripts/mods.lua(310,1) Mod: workshop-177826455 (Wilson's House With Light)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-177824493 (Always On Tiki Torch) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-177824493 (Always On Tiki Torch)  Registering prefab file: prefabs/alwaysontikitorch
scripts/mods.lua(297,1) Mod: workshop-177824493 (Always On Tiki Torch)    alwaysontikitorch
scripts/mods.lua(297,1) Mod: workshop-177824493 (Always On Tiki Torch)    alwaysontikitorch_placer
scripts/mods.lua(293,1) Mod: workshop-177824493 (Always On Tiki Torch)  Registering prefab file: prefabs/tikitorchflame
scripts/mods.lua(297,1) Mod: workshop-177824493 (Always On Tiki Torch)    tikitorchflame
scripts/mods.lua(310,1) Mod: workshop-177824493 (Always On Tiki Torch)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-174032436 (InfiniteArmor) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-174032436 (InfiniteArmor)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-265969805 (Wiggins) Registering prefabs
scripts/mods.lua(293,1) Mod: workshop-265969805 (Wiggins)  Registering prefab file: prefabs/wgg
scripts/mods.lua(297,1) Mod: workshop-265969805 (Wiggins)    wgg
scripts/mods.lua(310,1) Mod: workshop-265969805 (Wiggins)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-179601445 (Lighter Logs) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-179601445 (Lighter Logs)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-191405153 (Auto Catch) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-191405153 (Auto Catch)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-186751793 (Craftable Krampus Sack) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-186751793 (Craftable Krampus Sack)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-249713554 (BackPackPlus) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-249713554 (BackPackPlus)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-222103064 (Where's My Beefalo?) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-222103064 (Where's My Beefalo?)  Registering default mod prefab
scripts/mods.lua(287,1) Mod: workshop-416988873 (Dusk and Night Music) Registering prefabs
scripts/mods.lua(310,1) Mod: workshop-416988873 (Dusk and Night Music)  Registering default mod prefab
scripts/gamelogic.lua(164,1) LOAD BE
Could not preload undefined prefab 0x350a87f2 (note)
Could not preload undefined prefab 0x350a87f2 (note)
Could not preload undefined prefab 0x350a87f2 (note)
scripts/gamelogic.lua(172,1) LOAD BE: done
MiniMapComponent::AddAtlas( minimap/minimap_data.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-323996352/images/mark_1.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-323996352/images/mark_2.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-323996352/images/mark_3.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-323996352/images/mark_4.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-323996352/images/mark_5.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-323996352/images/mark_6.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-323996352/images/mark_7.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-323996352/images/mark_8.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-323996352/images/mark_9.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-323996352/images/mark_10.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-323996352/images/mark_11.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-323996352/images/mark_12.xml )
MiniMapComponent::AddAtlas( ../mods/Beans/images/map_icons/beans.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-287889074/minimap/r_shelter.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-379794091/minimap/minimap_tunnel.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-395417557/images/map_icons/charlie.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-272586077/minimap/bluebox.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-272586077/minimap/statue_small.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-272586077/minimap/scarf.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-255101162/images/wei.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-177826455/minimap/wilson_house_light.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-177824493/minimap/alwaysontikitorch.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-265969805/images/wgg.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-222103064/minimap/koalefant_winter.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-222103064/minimap/koalefant_summer.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-222103064/minimap/babybeefalo.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-222103064/minimap/beefalo.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-222103064/minimap/chester_eyebone.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-222103064/minimap/red_mushroom.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-222103064/minimap/green_mushroom.xml )
MiniMapComponent::AddAtlas( ../mods/workshop-222103064/minimap/mandrake.xml )
..._starve/data/../mods/Beans/scripts/prefabs/beans.lua:97: attempt to call method 'SetCanEatRaw' (a nil value)
LUA ERROR stack traceback:
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/../mods/Beans/scripts/prefabs/beans.lua(97,1) in function 'customfn'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/prefabs/player_common.lua(303,1) in function 'fn'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/mainfunctions.lua(127,1)
        =[C] in function 'SpawnPrefab'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/mainfunctions.lua(161,1) in function 'SpawnPrefab'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/gamelogic.lua(466,1) in function 'PopulateWorld'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/gamelogic.lua(835,1) in function 'DoInitGame'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/gamelogic.lua(1011,1) in function 'cb'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/saveindex.lua(512,1)
        =[C] in function 'GetPersistentString'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/saveindex.lua(489,1) in function 'GetSaveData'
...
        =[C] in function 'GetPersistentString'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/saveindex.lua(91,1) in function 'Load'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/gamelogic.lua(1182,1) in function 'callback'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/playerprofile.lua(602,1) in function 'Set'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/playerprofile.lua(486,1)
        =[C] in function 'GetPersistentString'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/playerprofile.lua(484,1) in function 'Load'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/gamelogic.lua(1181,1) in main chunk
        =[C] in function 'require'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/mainfunctions.lua(652,1)
scripts/frontend.lua(723,1) SCRIPT ERROR! Showing error screen
...amapps/common/dont_starve/data/scripts/gamelogic.lua:467: could not spawn player character
LUA ERROR stack traceback:
        =[C] in function 'assert'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/gamelogic.lua(467,1) in function 'PopulateWorld'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/gamelogic.lua(835,1) in function 'DoInitGame'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/gamelogic.lua(1011,1) in function 'cb'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/saveindex.lua(512,1)
        =[C] in function 'GetPersistentString'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/saveindex.lua(489,1) in function 'GetSaveData'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/gamelogic.lua(1013,1) in function 'DoLoadWorld'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/gamelogic.lua(1060,1) in function 'LoadSlot'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/gamelogic.lua(1126,1) in function 'DoResetAction'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/gamelogic.lua(1161,1) in function 'complete_callback'
...
        =[C] in function 'GetPersistentString'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/saveindex.lua(91,1) in function 'Load'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/gamelogic.lua(1182,1) in function 'callback'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/playerprofile.lua(602,1) in function 'Set'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/playerprofile.lua(486,1)
        =[C] in function 'GetPersistentString'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/playerprofile.lua(484,1) in function 'Load'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/gamelogic.lua(1181,1) in main chunk
        =[C] in function 'require'
        C:/Program Files (x86)/Steam/steamapps/common/dont_starve/data/scripts/mainfunctions.lua(652,1)
scripts/modindex.lua(85,1) ModIndex: Load sequence finished successfully.
 
 

Link to comment
Share on other sites

I need help making my character lose sanity when he kills small animals. Help anyone?

EDIT: Here is the chunk of code involving the killing:
 

AddPrefabPostInit("wilfred", function(inst)    if not GLOBAL.TheWorld.ismastersim then        return    endlocal function onkilledother(inst, data)    -- KAJ: what happens if mobs kill someone?    local victim = data.victim            if victim.prefab == "crow" or            victim.prefab == "robin" or            victim.prefab == "robin_winter" then                inst.components.sanity:DoDelta(-5)                inst.components.talker:Say("I'm sorry Mr. Birdy")            elseif victim.prefab == "butterfly" then                inst.components.sanity:DoDelta(-5)                inst.components.talker:Say("I'm sorry Miss Butterfly")            elseif victim.prefab == "rabbit" then                inst.components.sanity:DoDelta(-5)                inst.components.talker:Say("I'm sorry Mr. Rabbit")            elseif victim.prefab == "perd" then                inst.components.sanity:DoDelta(-5)                inst.components.talker:Say("I'm sorry Mr. Turkey")            elseif victim.prefab == "babybeefalo" then                 inst.components.sanity:DoDelta(-5)                inst.components.talker:Say("I'm sorry little Beefalo")            elseif victim.prefab == "mole" then                inst.components.sanity:DoDelta(-5)                inst.components.talker:Say("I'm sorry Mr. Mole")            elseif victim.prefab == "prey" then                inst.components.sanity:DoDelta(-5)                inst.components.talker:Say("Forgive me!")            elseif 	victim.prefab == "spider" or            	victim.prefab == "spider_warrior" or            	victim.prefab == "spiderqueen" or            	victim.prefab == "tentacle" or             	victim.prefab == "tentacle_pillar" or            	victim.prefab == "worm" or            	victim.prefab == "bunnyman" or            	victim.prefab == "hound" or            	victim.prefab == "firehound" or            	victim.prefab == "icehound" or            	victim.prefab == "krampus" or            	victim.prefab == "ghost" or            	victim.prefab == "knight" or            	victim.prefab == "knight_nightmare" or            	victim.prefab == "bishop" or            	victim.prefab == "bishop_nightmare" or            	victim.prefab == "rook" or            	victim.prefab == "rook_nightmare" or            	victim.prefab == "spider_hider" or            	victim.prefab == "spider_spitter" or            	victim.prefab == "spider_dropper" or            	victim.prefab == "bat" or            	victim.prefab == "crawlinghorror" or            	victim.prefab == "crawlingnightmare" or            	victim.prefab == "terrorbreak" or            	victim.prefab == "nightmarebeak" or            	victim.prefab == "lureplant" or            	victim.prefab == "walrus" or            	victim.prefab == "sluper" or            	victim.prefab == "tallbird" or            	victim.prefab == "frog" or            	victim.prefab == "mosquito" or            	victim.prefab == "killerbee" or            	victim.prefab == "pigguard" or            	victim.prefab == "merm" or            	victim.prefab == "leif" or            	victim.prefab == "warg" or            	victim.prefab == "leif_sparse" or	            	victim.prefab == "birchnutdrake" or            	victim.prefab == "deciduousmonster" or            	victim.prefab == "mossling" then            	inst.components.talker:Say("I'll slay anything that's evil. That's my deal!")                        elseif victim.prefab == "deerclops" or            		victim.prefab == "bearger" or            		victim.prefab == "moose" or            		victim.prefab == "dragonfly" or            		victim.prefab == "minotaur" then            	inst.components.talker:Say("Holy stuff! That was AWESOME!")            	inst.components.sanity:DoDelta(inst.components.sanity.max)    		end    end        inst:ListenForEvent("killed", onkilledother)end)

The game (when it crashes) mentions that it don't understand about the "TheWorld" bit (near the top.) Can any1 help?

Edited by NeddoFreddo
Link to comment
Share on other sites

Hi there!

 

Like everyone else, I'm playing with the character mod creation, and although it's fun searching why it doesn't work, this time I'm a little stuck^^

 

Since it's my first time, I'm using the ESCTemplate, and after a little coding, I'm currently designing the character, by replacing the original pictures. Of course since my character is different, my drawings don't always match with the originals, and I replace them right with Spriter.

 

Problem: Although in Spriter it's all good, the game doesn't care about that, and use the position of the original files (thus, my head and all are misplaced).

 

It's my first time using this software, did I miss something? I don't see any other files with positions.

 

Thank you in advance for the reply!

Link to comment
Share on other sites

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
 Share

×
  • Create New...