Jump to content

[Support] Game crash? Post here for help


Recommended Posts

Greetings, modders.

 

So you've made your new cool mod. You're hyped up about testing it, you start up the game a enable it. This is what you've been working for till now, all the effort you put into it to finally see it work.

But all you get is a crash, and possibly a long confusing wall of text.

 

Don't be discouraged, this is all part of modding! In fact, that wall of text (along with your log) tells you something is working, and gives you an explanation on what went wrong in there.

 

First off, you should locate your log.txt file. It contains vital information on the problem.

Make sure you do this right after the crash, don't start up your game again or it will reset the log and delete the information.

 

Log file locations:
PC: Documents folder at Documents\ klei\donotstarve\log.txt
Mac: Documents folder at ~/Documents/Klei/DoNotStarve/log.txt
Linux: Klei folder at ~/.klei/DoNotStarve/log.txt
 

The contents of the log may seem daunting at best if you've never dealt with something like this before.

I've put together a simple beginners guide to help you get started. I highly recommend that you look through it and try to figure out the problem on your own, it'll help build your skill set to solve problems as they arise. You'll be making mods much faster if you don't have to post about every bug that comes up.

 

Now for the guide.

 

 

 

How to read your log file

 

The log file contains information on what portion of the game executed. Whenever something goes wrong, information on that also gets appending to the log. The information includes a specific error message, the location in the code to find the cause of the problem, and a stack trace which tells us how the game got to that location.

 

 

Understanding stack trace

 

As the game executes, it jumps from function to function, doing various things. Sometimes it jumps into a function which causes a problem, and it's unable to continue executing. It remembers which functions it came from, and which lines of code it used to jump into functions.

The stack trace is essentially a collection of this kind of memory in a human-readable format (not counting people who can read binary).

 

 

Using the print function

 

Every time the code calls the "print" function (or equivalent), it also adds information to the log file. This is very useful as programmers/modders because we can write our own "notes" along the code to help us understand why it's not working as we want it to.

 

Example,

my_variable = my_variableprint("Changed my_variable", my_variable)print("Calling my_function with my_variable")my_function(my_variable)

-

 

 

Finding the error

 

The error which caused the crash usually prints to the log in a generic format. First you'll have am error message prefixed with the location of the error, then directly below it you'll see the stack trace information starting with "LUA ERROR stack traceback:"

 

For example,

...path/to/ds/data/scripts/util.lua:276: Could not find an asset matching path/to/asset.xml in any of the search paths.LUA ERROR stack traceback:

Lets break that down and see what it means.

 

"...path/to/ds/data/scripts/util.lua:276:"

This part tells us which line of code crashed the game. In this case, it was line 276 in util.lua.

 

"Could not find an asset matching path/to/asset.xml in any of the search paths."

This is the error message, it tells us what went wrong. In this case, the game couldn't find the file called "asset.xml" anywhere.

 

"LUA ERROR stack traceback:"

This is just the generic starting line of the stack trace. It tells us the stack trace is printed below.

 

Remember, the format is something like this.

path_to_file:line_number : Error_MessageLUA ERROR stack traceback:

Due to the generic message being used for the stack trace, you can usually just search (ctrl+f) for "ERROR" in the log file and you'll find this portion.

 

Sometimes, the crash won't produce a well formatted stack trace error. In this case, you'll need to do a little more investigation to figure out what's wrong. Look through the log file and try to find things like "Could not load" or "Could not find". You can even search (ctrl+f) for "could not" if you wish.

 

 

Putting it all together

 

You know what stack trace does, you know how to use the print function, and you've found your error. Now you might be wondering, "Well, that's great, but how do I fix it?"

 

There isn't any straight forward answer to this as there can be a variety of different problems, but there is a general set of actions you can take to help you figure out the answer yourself.

 

First, you want to actually read and understand the error message. It tries it's best to tell you what's wrong, but it doesn't usually know why that's a problem because it has no idea what you were trying to do. Basically, it thinks of it like "Hey man, why would you put this weird code here? It's confusing me."

Sometimes, it might realize that you made a small mistake, like missed a closing bracket, so it'll point that out. Otherwise, it'll just tell you what part of the code made it crash.

 

Remember, a healthy computer never makes mistakes, it just doesn't understand you because it can't think outside the box (literally, the computer box). You, on the other hand, can make mistakes, but you can also think outside the box. So you must try to understand what the computer is trying to tell you, and work with it to fix the problem.

 

 

Common errors

 

nil global variable

attempt to index global 'some_variable' (a nil value)

This might be the most common error you come across. It means that the code wasn't able to access a variable because it is nil (not found).

There can be a number of reasons for this, here are some of the common ones.

  • You forgot to put some value into that variable
  • A function was supposed to initialize it, but didn't work as you wanted it to
  • The variable is a parameter in a function, but nothing was passed in through it
  • Your variable is out of scope.

To fix it, figure out why the variable is nil. Use the stack trace to find where it was supposed to get its value from.

 

Usually, if the error is in modmain, you will need to access that variable from the GLOBAL table by using "GLOBAL.SomeVar" instead of "SomeVar". Alternately, can also put "SomeVar = GLOBAL.SomeVar" before the variable is needed (at the top of the script) and it won’t cause an error when you attempt to use "SomeVar".

 

 

nil parent variable

attempt to index field 'SOME_CHILD_VAR' (a nil value)

Similar to the one above. This one usually occurs when you attempt to access the child of a table that hasn't been initialized correctly.

You can not use a child element ( such as parent.child ) unless the parent has been declared ( parent = {} ).

 

See this guide for more information.

 

 

nil value/variable in an expression
attempt to perform arithmetic on a nil value

 

Like the first two, some variable (or evaluated value) is nil and the code tries to perform arithmetic (math) on it. Check the line which is causing the error, and see which values might be nil at that point in execution. Your stack trace will be really helpful here.

 

 

Missing asset error

Could not find an asset matching images/asset.xml in any of the search paths.--Could not find an asset matching images/asset.tex in any of the search paths.

Both of these occur when you tried to access a file that isn't available in the correct folders. Check the folders to make sure you do have it there.

It might also be that you didn't want to use the file at all, but forgot to remove that portion of the code. If so, simply go to the corresponding error line, and remove it.

 

You might also see this without the generic stack trace format, like so,

Could not load texture ../mods/ModName/images/path/to/image.tex

-

 

Missing syntax

'}' expected (to close '{' at line 1) near 'some_function_or_var'
This kind of error arises when you forgot to complete the syntax (brackets, commas, etc) of a portion of code.
Check on and around (usually before) the line specified in your error. You're looking for any missing brackets (curly or normal), commas, "end"s, or any other small mistakes.

 

 

Missing "end" of functions or control statements
'end' expected (to close 'function' at line 11) near '<eof>'
'end' expected (to close 'if' at line 20) near '<eof>'
These are quite straightforward, but may be hard to spot. You might have some variations, such as "while" instead of "if", but they're all the same reason. The code is missing an "end" to close off a function or a control statement (if, else, while, etc).
 
A good way to spot it is to start looking from the beginning of the function or control statement specified, and reading down towards the error line. Look for any function or if statement that doesn't end. Keep in mind that nested functions/statements need an "end" too, so you might have only one "end" instead of two if the nested one completes at the same place as the outer one.
 
Example,
function outer_fn(inst)	function nested_fn()		-- do stuff	-- Nested function missing an "end" hereend

Note: A good code editor will spot these kind of errors automatically, so you'll be able to catch them before you even test the code.

 

 

The crash screen

 

Remember that crashed wall of text we talked of earlier? It actually contains a portion of the log.txt file. You might not even have to look through the log, in most cases. Try to compare them yourself to get a better understanding of how it works.

 

 

 

If you've tried to solve the problem, but you just can't figure it out, post below and either someone else or I will try to help you out.

 

Feel free to respond to other peoples post if you think you can help them.

Even if you aren't good at it yet, just give it a try. It'll be good practice. Read through the guide above and try to spot the problem(s).

 

 

Hope this helps you develop mods more efficiently.

 

Please let me know if there are any grammatical, spelling, or logical mistakes as I don't have the time or patience to proof-read it all.
 
This guide is also available at the api doc for reference.
 
Link to comment
Share on other sites

Could you possibly help me with my crash for Don't Starve together?

 

This is the log:

 

 [00:00:00]: Starting Up
[00:00:00]: Version: 125063
[00:00:00]: Command Line Arguments:
[00:00:00]: Don't Starve: 125063 WIN32_STEAM
Build Date: 2015-01-28_14-39-59
[00:00:00]: THREAD - started 'GAClient' (5040)
[00:00:00]: HttpClient::ClientThread::Main()
[00:00:00]: THREAD - started 'GAClient' (3984)
[00:00:00]: Network tick rate: U=15(2), D=0
[00:00:00]: HttpClient::ClientThread::Main()
[00:00:00]: THREAD - started 'GAClient' (600)
[00:00:00]: HttpClient::ClientThread::Main()
[00:00:00]: Network tick rate: U=15(2), D=0
[00:00:00]: Authorized application C:\Program Files (x86)\Steam\steamapps\common\Don't Starve Together Beta\bin\dontstarve_steam.exe is enabled in the firewall.
[00:00:00]: WindowsFirewall - Application already authorized
[00:00:00]: loaded ping_cache
[00:00:00]: OnLoadPermissionList: APP:Klei/DoNotStarveTogether/save/blocklist.txt (Failure)
[00:00:00]: OnLoadPermissionList: APP:Klei/DoNotStarveTogether/save/adminlist.txt (Failure)
[00:00:00]: Offline user name: OU_76561198113819187
[00:00:00]: SteamID: 76561198113819187
[00:00:00]: cGame::InitializeOnMainThread
[00:00:00]: WindowManager::Initialize
[00:00:00]: THREAD - started 'GAClient' (5076)
[00:00:00]: HttpClient::ClientThread::Main()
[00:00:00]: RestoreWindowPosition
[00:00:00]: Saved Client Pos (0 x 27)
[00:00:00]: Adjusted Window Pos (-9 x -9)
[00:00:00]: EnsureWindowOnScreen
[00:00:00]: All good.
[00:00:00]: GLInfo
[00:00:00]: ~~~~~~
[00:00:00]: GL_VENDOR: Google Inc.
[00:00:00]: GL_RENDERER: ANGLE (ATI Radeon HD 4600 Series)
[00:00:00]: GL_VERSION: OpenGL ES 2.0 (ANGLE 1.0.0.2249)
[00:00:00]: GL_SHADING_LANGUAGE_VERSION: OpenGL ES GLSL ES 1.00 (ANGLE 1.0.0.2249)
[00:00:00]: THREAD - started 'WindowsInputManager' (2864)
[00:00:00]: OpenGL extensions (19, 19):
[00:00:00]: GL_ANGLE_depth_texture
[00:00:00]: GL_ANGLE_framebuffer_blit
[00:00:00]: GL_ANGLE_framebuffer_multisample
[00:00:00]: GL_ANGLE_instanced_arrays
[00:00:00]: GL_ANGLE_pack_reverse_row_order
[00:00:00]: GL_ANGLE_texture_compression_dxt3
[00:00:00]: GL_ANGLE_texture_compression_dxt5
[00:00:00]: GL_ANGLE_texture_usage
[00:00:00]: GL_ANGLE_translated_shader_source
[00:00:00]: GL_EXT_read_format_bgra
[00:00:00]: GL_EXT_robustness
[00:00:00]: GL_EXT_texture_compression_dxt1
[00:00:00]: GL_EXT_texture_format_BGRA8888
[00:00:00]: GL_EXT_texture_storage
[00:00:00]: GL_OES_get_program_binary
[00:00:00]: GL_OES_packed_depth_stencil
[00:00:00]: GL_OES_rgb8_rgba8
[00:00:00]: GL_OES_standard_derivatives
[00:00:00]: GL_OES_texture_npot
[00:00:00]: GL_MAX_TEXTURE_SIZE = 8192
[00:00:00]: GL_MAX_TEXTURE_IMAGE_UNITS = 16
[00:00:00]: GL_MAX_RENDERBUFFER_SIZE = 8192
[00:00:00]: GL_MAX_VIEWPORT_DIMS = 8192, 8192
[00:00:00]: GL_MAX_VARYING_VECTORS = 10
[00:00:00]: GL_MAX_VERTEX_ATTRIBS = 16
[00:00:00]: GL_MAX_VERTEX_UNIFORM_VECTORS = 254
[00:00:00]: GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS = 4
[00:00:00]: GL_MAX_FRAGMENT_UNIFORM_VECTORS = 221
[00:00:00]: 4 compressed texture formats
[00:00:00]: texture format 0x83f0
[00:00:00]: texture format 0x83f1
[00:00:00]: texture format 0x83f2
[00:00:00]: texture format 0x83f3
[00:00:02]: cDontStarveGame::DoGameSpecificInitialize()
[00:00:02]: cGame::StartPlaying
[00:00:02]: LOADING LUA
[00:00:02]: DoLuaFile scripts/main.lua
[00:00:02]: DoLuaFile loading buffer scripts/main.lua
[00:00:02]: scripts/main.lua(167,1) running main.lua

[00:00:02]: loaded modindex
[00:00:02]: ModIndex: Beginning normal load sequence.

[00:00:02]: ModIndex:GetModsToLoad inserting moddir, workshop-352499675
[00:00:02]: ModIndex:GetModsToLoad inserting moddir, workshop-356420397
[00:00:02]: ModIndex:GetModsToLoad inserting moddir, workshop-361994110
[00:00:02]: ModIndex:GetModsToLoad inserting moddir, workshop-365119238
[00:00:02]: ModIndex:GetModsToLoad inserting moddir, workshop-369588618
[00:00:02]: ModIndex:GetModsToLoad inserting moddir, workshop-370370586
[00:00:02]: ModIndex:GetModsToLoad inserting moddir, workshop-375859599
[00:00:02]: loaded mod_config_data/modconfiguration_workshop-352499675
[00:00:02]: Loading mod: workshop-352499675 (DST Resurrection Shelter)
[00:00:02]: Could not load mod_config_data/modconfiguration_workshop-356420397
[00:00:02]: Loading mod: workshop-356420397 (No More Respawn Penalty)
[00:00:02]: Could not load mod_config_data/modconfiguration_workshop-361994110
[00:00:02]: Loading mod: workshop-361994110 (Bee Nice)
[00:00:02]: Could not load mod_config_data/modconfiguration_workshop-365119238
[00:00:02]: Loading mod: workshop-365119238 (SmartCrockPot)
[00:00:02]: loaded mod_config_data/modconfiguration_workshop-369588618
[00:00:02]: Loading mod: workshop-369588618 (Renewable World)
[00:00:02]: Could not load mod_config_data/modconfiguration_workshop-370370586
[00:00:02]: Loading mod: workshop-370370586 (Mineable Gems [FIXED])
[00:00:02]: Could not load mod_config_data/modconfiguration_workshop-375859599
[00:00:02]: Loading mod: workshop-375859599 (Health Info)
[00:00:02]: Mod: workshop-365119238 (SmartCrockPot) Loading modworldgenmain.lua
[00:00:02]: Mod: workshop-365119238 (SmartCrockPot) Mod had no modworldgenmain.lua. Skipping.
[00:00:02]: Mod: workshop-365119238 (SmartCrockPot) Loading modmain.lua
[00:00:02]: modimport: ../mods/workshop-365119238/modmain_segments/containerwidgetfunction.lua
[00:00:02]: modimport: ../mods/workshop-365119238/modmain_segments/containers_setup.lua
[00:00:02]: modimport: ../mods/workshop-365119238/modmain_segments/action_predict.lua
[00:00:02]: Mod: workshop-369588618 (Renewable World) Loading modworldgenmain.lua
[00:00:02]: Mod: workshop-369588618 (Renewable World) Mod had no modworldgenmain.lua. Skipping.
[00:00:02]: Mod: workshop-369588618 (Renewable World) Loading modmain.lua
[00:00:02]: Mod: workshop-370370586 (Mineable Gems [FIXED]) Loading modworldgenmain.lua
[00:00:02]: Mod: workshop-370370586 (Mineable Gems [FIXED]) Mod had no modworldgenmain.lua. Skipping.
[00:00:02]: Mod: workshop-370370586 (Mineable Gems [FIXED]) Loading modmain.lua
[00:00:02]: Mod: workshop-352499675 (DST Resurrection Shelter) Loading modworldgenmain.lua
[00:00:02]: Mod: workshop-352499675 (DST Resurrection Shelter) Mod had no modworldgenmain.lua. Skipping.
[00:00:02]: Mod: workshop-352499675 (DST Resurrection Shelter) Loading modmain.lua
[00:00:02]: Mod: workshop-356420397 (No More Respawn Penalty) Loading modworldgenmain.lua
[00:00:02]: Mod: workshop-356420397 (No More Respawn Penalty) Mod had no modworldgenmain.lua. Skipping.
[00:00:02]: Mod: workshop-356420397 (No More Respawn Penalty) Loading modmain.lua
[00:00:02]: Mod: workshop-361994110 (Bee Nice) Loading modworldgenmain.lua
[00:00:02]: Mod: workshop-361994110 (Bee Nice) Mod had no modworldgenmain.lua. Skipping.
[00:00:02]: Mod: workshop-361994110 (Bee Nice) Loading modmain.lua
[00:00:02]: Mod: workshop-375859599 (Health Info) Loading modworldgenmain.lua
[00:00:02]: Mod: workshop-375859599 (Health Info) Mod had no modworldgenmain.lua. Skipping.
[00:00:02]: Mod: workshop-375859599 (Health Info) Loading modmain.lua
[00:00:04]: LOADING LUA SUCCESS
[00:00:04]: PlayerDeaths loaded morgue 5743
[00:00:04]: loaded profile
[00:00:04]: bloom_enabled false
[00:00:04]: loaded saveindex
[00:00:04]: OnFilesLoaded()
[00:00:04]: OnUpdatePurchaseStateComplete
[00:00:04]: Unload BE
[00:00:04]: Could not unload undefined prefab 0x4374c56c (yellowstaff)
[00:00:04]: Could not unload undefined prefab 0x62fde398 (r_shelter)
[00:00:04]: Could not unload undefined prefab 0xf22c38d2 (r_shelter_placer)
[00:00:04]: Could not unload undefined prefab 0x303bfdce (axe)
[00:00:04]: Could not unload undefined prefab 0x94cf6c04 (goldenpickaxe)
[00:00:04]: Could not unload undefined prefab 0x1541c9cc (armorruins)
[00:00:04]: Could not unload undefined prefab 0x8cc766ef (pumpkin_lantern)
[00:00:04]: Could not unload undefined prefab 0xfdcabd86 (earmuffshat)
[00:00:04]: Could not unload undefined prefab 0x9a6718eb (resurrectionstatue)
[00:00:04]: Could not unload undefined prefab 0x6b0c64bf (resurrectionstatue_placer)
[00:00:04]: Could not unload undefined prefab 0x69afe33b (book_brimstone)
[00:00:04]: Could not unload undefined prefab 0xdfb37276 (telestaff)
[00:00:04]: Could not unload undefined prefab 0xaf34ecc0 (trunkvest_winter)
[00:00:04]: Could not unload undefined prefab 0x34a58be1 (book_sleep)
[00:00:04]: Could not unload undefined prefab 0xa3ec4f57 (book_gardening)
[00:00:04]: Could not unload undefined prefab 0x875750ea (turf_road)
[00:00:04]: Could not unload undefined prefab 0x2cc493e4 (book_birds)
[00:00:04]: Could not unload undefined prefab 0xcd7669e5 (nightsword)
[00:00:04]: Could not unload undefined prefab 0x1daa5ab7 (turf_carpetfloor)
[00:00:04]: Could not unload undefined prefab 0xefa57cea (bandage)
[00:00:04]: Could not unload undefined prefab 0xde4bc7e7 (wall_hay_item)
[00:00:04]: Could not unload undefined prefab 0xe51acd32 (lightning_rod)
[00:00:04]: Could not unload undefined prefab 0x947bfcb8 (lightning_rod_placer)
[00:00:04]: Could not unload undefined prefab 0x378bda50 (wall_wood_item)
[00:00:04]: Could not unload undefined prefab 0xb1fa364d (pickaxe)
[00:00:04]: Could not unload undefined prefab 0x34fb4f82 (pitchfork)
[00:00:04]: Could not unload undefined prefab 0xdf13a0c1 (ruins_bat)
[00:00:04]: Could not unload undefined prefab 0xe490ce6b (book_tentacles)
[00:00:04]: Could not unload undefined prefab 0x3f5176c5 (firepit)
[00:00:04]: Could not unload undefined prefab 0x8a462465 (firepit_placer)
[00:00:04]: Could not unload undefined prefab 0xe16c07d0 (ruinshat)
[00:00:04]: Could not unload undefined prefab 0x3d4d1dc6 (bedroll_straw)
[00:00:04]: Could not unload undefined prefab 0xadfdb7ae (armor_sanity)
[00:00:04]: Could not unload undefined prefab 0x3edae42e (multitool_axe_pickaxe)
[00:00:04]: Could not unload undefined prefab 0x76d26529 (bugnet)
[00:00:04]: Could not unload undefined prefab 0x5ce426c4 (blowdart_fire)
[00:00:04]: Could not unload undefined prefab 0xc3bf310c (blueamulet)
[00:00:04]: Could not unload undefined prefab 0x36768a92 (orangestaff)
[00:00:04]: Could not unload undefined prefab 0xa0c84037 (wall_moonrock_item)
[00:00:04]: Could not unload undefined prefab 0x1c48b877 (campfire)
[00:00:04]: Could not unload undefined prefab 0xdfe3a33 (campfire_placer)
[00:00:04]: Could not unload undefined prefab 0x1153dbb9 (pottedfern)
[00:00:04]: Could not unload undefined prefab 0xf2102a71 (pottedfern_placer)
[00:00:04]: Could not unload undefined prefab 0x4740cff7 (tent)
[00:00:04]: Could not unload undefined prefab 0xb4d742b3 (tent_placer)
[00:00:04]: Could not unload undefined prefab 0x10473739 (spear)
[00:00:04]: Could not unload undefined prefab 0x2ca456a0 (orangeamulet)
[00:00:04]: Could not unload undefined prefab 0x8d44bbad (cookpot)
[00:00:04]: Could not unload undefined prefab 0x30d2f57d (cookpot_placer)
[00:00:04]: Could not unload undefined prefab 0xa1e54a85 (goldenaxe)
[00:00:04]: Could not unload undefined prefab 0x739fbe3c (homesign)
[00:00:04]: Could not unload undefined prefab 0x33fdbd2e (homesign_placer)
[00:00:04]: Could not unload undefined prefab 0xa8b25abc (wall_ruins_item)
[00:00:04]: Could not unload undefined prefab 0xe6af29d2 (compass)
[00:00:04]: Could not unload undefined prefab 0x21bf03b1 (thulecite)
[00:00:04]: Could not unload undefined prefab 0xcf1626 (rabbithouse)
[00:00:04]: Could not unload undefined prefab 0x1aa31ec4 (rabbithouse_placer)
[00:00:04]: Could not unload undefined prefab 0xe474f23c (armormarble)
[00:00:04]: Could not unload undefined prefab 0x3ccdbe75 (icestaff)
[00:00:04]: Could not unload undefined prefab 0x68ba7101 (researchlab3)
[00:00:04]: Could not unload undefined prefab 0xd6985329 (researchlab3_placer)
[00:00:04]: Could not unload undefined prefab 0xcda99af6 (winterhat)
[00:00:04]: Could not unload undefined prefab 0x19c004b2 (pighouse)
[00:00:04]: Could not unload undefined prefab 0x469fe538 (pighouse_placer)
[00:00:04]: Could not unload undefined prefab 0xca16846d (boards)
[00:00:04]: Could not unload undefined prefab 0x2e264dbc (blowdart_pipe)
[00:00:04]: Could not unload undefined prefab 0x2e54b535 (cane)
[00:00:04]: Could not unload undefined prefab 0xfa14dec6 (birdtrap)
[00:00:04]: Could not unload undefined prefab 0xe2bfa46 (tophat)
[00:00:04]: Could not unload undefined prefab 0x7c11af2 (treasurechest)
[00:00:04]: Could not unload undefined prefab 0xd411bef8 (treasurechest_placer)
[00:00:04]: Could not unload undefined prefab 0xef21c9f2 (rope)
[00:00:04]: Could not unload undefined prefab 0x539e9e8a (trunkvest_summer)
[00:00:04]: Could not unload undefined prefab 0x75370b6 (papyrus)
[00:00:04]: Could not unload undefined prefab 0xb981ecda (fast_farmplot)
[00:00:04]: Could not unload undefined prefab 0x2639673 (farmplot_placer)
[00:00:04]: Could not unload undefined prefab 0xf4eb0943 (shovel)
[00:00:04]: Could not unload undefined prefab 0xbcfca634 (strawhat)
[00:00:04]: Could not unload undefined prefab 0x3f6c9ebb (diviningrod)
[00:00:04]: Could not unload undefined prefab 0x86860bc2 (boomerang)
[00:00:04]: Could not unload undefined prefab 0x761a1799 (gunpowder)
[00:00:04]: Could not unload undefined prefab 0x1cd9e60e (razor)
[00:00:04]: Could not unload undefined prefab 0x46094f1b (beefalohat)
[00:00:04]: Could not unload undefined prefab 0x68ba7100 (researchlab2)
[00:00:04]: Could not unload undefined prefab 0x3386a16a (researchlab2_placer)
[00:00:04]: Could not unload undefined prefab 0xec43b9f4 (sewing_kit)
[00:00:04]: Could not unload undefined prefab 0x68370bd6 (trap_teeth)
[00:00:04]: Could not unload undefined prefab 0x9a99c7b7 (armorgrass)
[00:00:04]: Could not unload undefined prefab 0x8bbc7f55 (beemine)
[00:00:04]: Could not unload undefined prefab 0xd8067599 (beehat)
[00:00:04]: Could not unload undefined prefab 0xda17c8e8 (armorslurper)
[00:00:04]: Could not unload undefined prefab 0x47611d71 (sweatervest)
[00:00:04]: Could not unload undefined prefab 0x85181f7c (minerhat)
[00:00:04]: Could not unload undefined prefab 0x15220700 (backpack)
[00:00:04]: Could not unload undefined prefab 0xfb180669 (blowdart_sleep)
[00:00:04]: Could not unload undefined prefab 0xe8f381a1 (turf_checkerfloor)
[00:00:04]: Could not unload undefined prefab 0xd5201c09 (beebox)
[00:00:04]: Could not unload undefined prefab 0x753b7621 (beebox_placer)
[00:00:04]: Could not unload undefined prefab 0xb918c5fd (fishingrod)
[00:00:04]: Could not unload undefined prefab 0x111db7ae (footballhat)
[00:00:04]: Could not unload undefined prefab 0x80cb1e18 (featherhat)
[00:00:04]: Could not unload undefined prefab 0x5a59f5cc (goldenshovel)
[00:00:04]: Could not unload undefined prefab 0xbea16a01 (hambat)
[00:00:04]: Could not unload undefined prefab 0xc4101586 (hammer)
[00:00:04]: Could not unload undefined prefab 0x4685284 (umbrella)
[00:00:04]: Could not unload undefined prefab 0x6f21e747 (piggyback)
[00:00:04]: Could not unload undefined prefab 0xe87e06c0 (icebox)
[00:00:04]: Could not unload undefined prefab 0xf2bd1baa (icebox_placer)
[00:00:04]: Could not unload undefined prefab 0x41ba89b5 (nightmarefuel)
[00:00:04]: Could not unload undefined prefab 0x3949a42 (meatrack)
[00:00:04]: Could not unload undefined prefab 0x56340ba8 (meatrack_placer)
[00:00:04]: Could not unload undefined prefab 0xbc429ef3 (bushhat)
[00:00:04]: Could not unload undefined prefab 0xcceee6c3 (cutstone)
[00:00:04]: Could not unload undefined prefab 0xfbaefa0e (rainometer)
[00:00:04]: Could not unload undefined prefab 0xeea990dc (rainometer_placer)
[00:00:04]: Could not unload undefined prefab 0x89c20b1b (telebase)
[00:00:04]: Could not unload undefined prefab 0x868a468f (telebase_placer)
[00:00:04]: Could not unload undefined prefab 0x3cb06493 (healingsalve)
[00:00:04]: Could not unload undefined prefab 0xe5936c6a (firestaff)
[00:00:04]: Could not unload undefined prefab 0x37c31aa6 (lantern)
[00:00:04]: Could not unload undefined prefab 0x9d92cce (purpleamulet)
[00:00:04]: Could not unload undefined prefab 0x7fcb037d (greenstaff)
[00:00:04]: Could not unload undefined prefab 0xa90e8c50 (lifeinjector)
[00:00:04]: Could not unload undefined prefab 0x7f2d088c (armorwood)
[00:00:04]: Could not unload undefined prefab 0x7f46d7c0 (batbat)
[00:00:04]: Could not unload undefined prefab 0x62a5e7fe (nightlight)
[00:00:04]: Could not unload undefined prefab 0x185806ec (nightlight_placer)
[00:00:04]: Could not unload undefined prefab 0xb6201ac9 (onemanband)
[00:00:04]: Could not unload undefined prefab 0xf0330963 (panflute)
[00:00:04]: Could not unload undefined prefab 0x3c935451 (eyeturret_item)
[00:00:04]: Could not unload undefined prefab 0x22ec3802 (wall_stone_item)
[00:00:04]: Could not unload undefined prefab 0x4d9a964d (trap)
[00:00:04]: Could not unload undefined prefab 0xbd603add (reviver)
[00:00:04]: Could not unload undefined prefab 0xda1f7edf (winterometer)
[00:00:04]: Could not unload undefined prefab 0x955229cb (winterometer_placer)
[00:00:04]: Could not unload undefined prefab 0xcba65752 (amulet)
[00:00:04]: Could not unload undefined prefab 0x38967bb2 (researchlab)
[00:00:04]: Could not unload undefined prefab 0x77e9ae38 (researchlab_placer)
[00:00:04]: Could not unload undefined prefab 0xcad92460 (flowerhat)
[00:00:04]: Could not unload undefined prefab 0xb1591875 (greenamulet)
[00:00:04]: Could not unload undefined prefab 0xdac7fbf5 (birdcage)
[00:00:04]: Could not unload undefined prefab 0xe1f9b335 (birdcage_placer)
[00:00:04]: Could not unload undefined prefab 0x68ba7102 (researchlab4)
[00:00:04]: Could not unload undefined prefab 0x79aa04e8 (researchlab4_placer)
[00:00:04]: Could not unload undefined prefab 0x263bc4d5 (slow_farmplot)
[00:00:04]: Could not unload undefined prefab 0x2639673 (farmplot_placer)
[00:00:04]: Could not unload undefined prefab 0xe5071541 (nightmare_timepiece)
[00:00:04]: Could not unload undefined prefab 0x2c158f7c (torch)
[00:00:04]: Could not unload undefined prefab 0x2ae7e3b3 (purplegem)
[00:00:04]: Could not unload undefined prefab 0x265d1455 (turf_woodfloor)
[00:00:04]: Could not unload undefined prefab 0xf8e41fa9 (bedroll_furry)
[00:00:04]: Could not unload undefined prefab 0xdb20fa95 (heatrock)
[00:00:04]: Could not unload undefined prefab 0x9a0ed246 (yellowamulet)
[00:00:04]: Could not unload undefined prefab 0x33ab6997 (hud)
[00:00:04]: Could not unload undefined prefab 0x3364203d (forest)
[00:00:04]: Could not unload undefined prefab 0x2e5cb72d (cave)
[00:00:04]: Could not unload undefined prefab 0x40b82ff2 (maxwell)
[00:00:04]: Could not unload undefined prefab 0xbddda476 (fire)
[00:00:04]: Could not unload undefined prefab 0x1078732c (character_fire)
[00:00:04]: Could not unload undefined prefab 0x427b5b39 (shatter)
[00:00:04]: Unload BE done
[00:00:06]: Mod: workshop-365119238 (SmartCrockPot) Registering prefabs
[00:00:06]: Mod: workshop-365119238 (SmartCrockPot) Registering default mod prefab
[00:00:06]: Mod: workshop-369588618 (Renewable World) Registering prefabs
[00:00:06]: Mod: workshop-369588618 (Renewable World) Registering default mod prefab
[00:00:06]: Mod: workshop-370370586 (Mineable Gems [FIXED]) Registering prefabs
[00:00:06]: Mod: workshop-370370586 (Mineable Gems [FIXED]) Registering prefab file: prefabs/rocks
[00:00:06]: Mod: workshop-370370586 (Mineable Gems [FIXED]) rock1
[00:00:06]: Mod: workshop-370370586 (Mineable Gems [FIXED]) rock2
[00:00:06]: Mod: workshop-370370586 (Mineable Gems [FIXED]) rock_flintless
[00:00:06]: Mod: workshop-370370586 (Mineable Gems [FIXED]) rock_flintless_med
[00:00:06]: Mod: workshop-370370586 (Mineable Gems [FIXED]) rock_flintless_low
[00:00:06]: Mod: workshop-370370586 (Mineable Gems [FIXED]) rock_moon
[00:00:06]: Mod: workshop-370370586 (Mineable Gems [FIXED]) Registering default mod prefab
[00:00:06]: Mod: workshop-352499675 (DST Resurrection Shelter) Registering prefabs
[00:00:06]: Mod: workshop-352499675 (DST Resurrection Shelter) Registering prefab file: prefabs/r_shelter
[00:00:06]: Mod: workshop-352499675 (DST Resurrection Shelter) r_shelter
[00:00:06]: Mod: workshop-352499675 (DST Resurrection Shelter) r_shelter_placer
[00:00:06]: Mod: workshop-352499675 (DST Resurrection Shelter) Registering default mod prefab
[00:00:06]: Mod: workshop-356420397 (No More Respawn Penalty) Registering prefabs
[00:00:06]: Mod: workshop-356420397 (No More Respawn Penalty) Registering default mod prefab
[00:00:06]: Mod: workshop-361994110 (Bee Nice) Registering prefabs
[00:00:06]: Mod: workshop-361994110 (Bee Nice) Registering default mod prefab
[00:00:06]: Mod: workshop-375859599 (Health Info) Registering prefabs
[00:00:06]: Mod: workshop-375859599 (Health Info) Registering default mod prefab
[00:00:06]: Load FE
[00:00:06]: Load FE: done
[00:00:06]: platform_motd table: 1366C640
[00:00:06]: SimLuaProxy::QueryServer()
[00:00:06]: update_date table: 1366D3D8
[00:00:06]: SimLuaProxy::QueryServer()
[00:00:06]: ModIndex: Load sequence finished successfully.

[00:00:06]: Reset() returning
[00:00:07]: platform_motd table: 1366C758
[00:00:08]: update_date table: 1366DCC0
[00:00:11]: [200] Account Communication Success (6)
[00:00:11]: [ACCOUNT_ACTION_TOKEN_PURPOSE] Received UserId from TokenPurpose: KU_q5g9MZUn
[00:00:13]: QueryServerComplete no callback
[00:00:13]: Downloaded server listings - full: 1957 filtered: 1076
[00:00:14]: 1
[00:00:16]: Network tick rate: U=15(2), D=0
[00:00:16]: [Warning] Could not confirm port 10999 is open in the firewall.
[00:00:16]: Setting up socket descriptors
[00:00:16]: Server Started
[00:00:17]: SaveIndex:UpdateServerData!: TheRealSurvivors
[00:00:17]: unloading prefabs for mod MOD_workshop-365119238
[00:00:17]: unloading prefabs for mod MOD_workshop-369588618
[00:00:17]: unloading prefabs for mod MOD_workshop-370370586
[00:00:17]: unloading prefabs for mod MOD_workshop-352499675
[00:00:17]: unloading prefabs for mod MOD_workshop-356420397
[00:00:17]: unloading prefabs for mod MOD_workshop-361994110
[00:00:17]: unloading prefabs for mod MOD_workshop-375859599
[00:00:17]: Collecting garbage...
[00:00:17]: lua_gc took 0.02 seconds
[00:00:17]: ~NetworkLuaProxy()
[00:00:17]: ~SimLuaProxy()
[00:00:17]: lua_close took 0.03 seconds
[00:00:17]: ReleaseAll
[00:00:17]: ReleaseAll Finished
[00:00:17]: cGame::StartPlaying
[00:00:17]: LOADING LUA
[00:00:17]: DoLuaFile scripts/main.lua
[00:00:17]: DoLuaFile loading buffer scripts/main.lua
[00:00:17]: scripts/main.lua(167,1) running main.lua

[00:00:17]: loaded modindex
[00:00:17]: ModIndex: Beginning normal load sequence.

[00:00:17]: ModIndex:GetModsToLoad inserting moddir, workshop-352499675
[00:00:17]: ModIndex:GetModsToLoad inserting moddir, workshop-356420397
[00:00:17]: ModIndex:GetModsToLoad inserting moddir, workshop-361994110
[00:00:17]: ModIndex:GetModsToLoad inserting moddir, workshop-365119238
[00:00:17]: ModIndex:GetModsToLoad inserting moddir, workshop-369588618
[00:00:17]: ModIndex:GetModsToLoad inserting moddir, workshop-370370586
[00:00:17]: ModIndex:GetModsToLoad inserting moddir, workshop-375859599
[00:00:17]: loaded mod_config_data/modconfiguration_workshop-352499675
[00:00:17]: Loading mod: workshop-352499675 (DST Resurrection Shelter)
[00:00:17]: Could not load mod_config_data/modconfiguration_workshop-356420397
[00:00:17]: Loading mod: workshop-356420397 (No More Respawn Penalty)
[00:00:17]: Could not load mod_config_data/modconfiguration_workshop-361994110
[00:00:17]: Loading mod: workshop-361994110 (Bee Nice)
[00:00:17]: Could not load mod_config_data/modconfiguration_workshop-365119238
[00:00:17]: Loading mod: workshop-365119238 (SmartCrockPot)
[00:00:17]: loaded mod_config_data/modconfiguration_workshop-369588618
[00:00:17]: Loading mod: workshop-369588618 (Renewable World)
[00:00:17]: Could not load mod_config_data/modconfiguration_workshop-370370586
[00:00:17]: Loading mod: workshop-370370586 (Mineable Gems [FIXED])
[00:00:17]: Could not load mod_config_data/modconfiguration_workshop-375859599
[00:00:17]: Loading mod: workshop-375859599 (Health Info)
[00:00:17]: Mod: workshop-365119238 (SmartCrockPot) Loading modworldgenmain.lua
[00:00:17]: Mod: workshop-365119238 (SmartCrockPot) Mod had no modworldgenmain.lua. Skipping.
[00:00:17]: Mod: workshop-365119238 (SmartCrockPot) Loading modmain.lua
[00:00:17]: modimport: ../mods/workshop-365119238/modmain_segments/containerwidgetfunction.lua
[00:00:17]: modimport: ../mods/workshop-365119238/modmain_segments/containers_setup.lua
[00:00:17]: modimport: ../mods/workshop-365119238/modmain_segments/action_predict.lua
[00:00:17]: Mod: workshop-369588618 (Renewable World) Loading modworldgenmain.lua
[00:00:17]: Mod: workshop-369588618 (Renewable World) Mod had no modworldgenmain.lua. Skipping.
[00:00:17]: Mod: workshop-369588618 (Renewable World) Loading modmain.lua
[00:00:17]: Mod: workshop-370370586 (Mineable Gems [FIXED]) Loading modworldgenmain.lua
[00:00:17]: Mod: workshop-370370586 (Mineable Gems [FIXED]) Mod had no modworldgenmain.lua. Skipping.
[00:00:17]: Mod: workshop-370370586 (Mineable Gems [FIXED]) Loading modmain.lua
[00:00:17]: Mod: workshop-352499675 (DST Resurrection Shelter) Loading modworldgenmain.lua
[00:00:17]: Mod: workshop-352499675 (DST Resurrection Shelter) Mod had no modworldgenmain.lua. Skipping.
[00:00:17]: Mod: workshop-352499675 (DST Resurrection Shelter) Loading modmain.lua
[00:00:17]: Mod: workshop-356420397 (No More Respawn Penalty) Loading modworldgenmain.lua
[00:00:17]: Mod: workshop-356420397 (No More Respawn Penalty) Mod had no modworldgenmain.lua. Skipping.
[00:00:17]: Mod: workshop-356420397 (No More Respawn Penalty) Loading modmain.lua
[00:00:17]: Mod: workshop-361994110 (Bee Nice) Loading modworldgenmain.lua
[00:00:17]: Mod: workshop-361994110 (Bee Nice) Mod had no modworldgenmain.lua. Skipping.
[00:00:17]: Mod: workshop-361994110 (Bee Nice) Loading modmain.lua
[00:00:17]: Mod: workshop-375859599 (Health Info) Loading modworldgenmain.lua
[00:00:17]: Mod: workshop-375859599 (Health Info) Mod had no modworldgenmain.lua. Skipping.
[00:00:17]: Mod: workshop-375859599 (Health Info) Loading modmain.lua
[00:00:17]: LOADING LUA SUCCESS
[00:00:17]: PlayerDeaths loaded morgue 5743
[00:00:17]: loaded profile
[00:00:17]: bloom_enabled false
[00:00:17]: loaded saveindex
[00:00:17]: OnFilesLoaded()
[00:00:17]: OnUpdatePurchaseStateComplete
[00:00:17]: Unload FE
[00:00:17]: Unload FE done
[00:00:19]: Mod: workshop-365119238 (SmartCrockPot) Registering prefabs
[00:00:19]: Mod: workshop-365119238 (SmartCrockPot) Registering default mod prefab
[00:00:19]: Mod: workshop-369588618 (Renewable World) Registering prefabs
[00:00:19]: Mod: workshop-369588618 (Renewable World) Registering default mod prefab
[00:00:19]: Mod: workshop-370370586 (Mineable Gems [FIXED]) Registering prefabs
[00:00:19]: Mod: workshop-370370586 (Mineable Gems [FIXED]) Registering prefab file: prefabs/rocks
[00:00:19]: Mod: workshop-370370586 (Mineable Gems [FIXED]) rock1
[00:00:19]: Mod: workshop-370370586 (Mineable Gems [FIXED]) rock2
[00:00:19]: Mod: workshop-370370586 (Mineable Gems [FIXED]) rock_flintless
[00:00:19]: Mod: workshop-370370586 (Mineable Gems [FIXED]) rock_flintless_med
[00:00:19]: Mod: workshop-370370586 (Mineable Gems [FIXED]) rock_flintless_low
[00:00:19]: Mod: workshop-370370586 (Mineable Gems [FIXED]) rock_moon
[00:00:19]: Mod: workshop-370370586 (Mineable Gems [FIXED]) Registering default mod prefab
[00:00:19]: Mod: workshop-352499675 (DST Resurrection Shelter) Registering prefabs
[00:00:19]: Mod: workshop-352499675 (DST Resurrection Shelter) Registering prefab file: prefabs/r_shelter
[00:00:19]: Mod: workshop-352499675 (DST Resurrection Shelter) r_shelter
[00:00:19]: Mod: workshop-352499675 (DST Resurrection Shelter) r_shelter_placer
[00:00:19]: Mod: workshop-352499675 (DST Resurrection Shelter) Registering default mod prefab
[00:00:19]: Mod: workshop-356420397 (No More Respawn Penalty) Registering prefabs
[00:00:19]: Mod: workshop-356420397 (No More Respawn Penalty) Registering default mod prefab
[00:00:19]: Mod: workshop-361994110 (Bee Nice) Registering prefabs
[00:00:19]: Mod: workshop-361994110 (Bee Nice) Registering default mod prefab
[00:00:19]: Mod: workshop-375859599 (Health Info) Registering prefabs
[00:00:19]: Mod: workshop-375859599 (Health Info) Registering default mod prefab
[00:00:19]: LOAD BE
[00:00:20]: Could not preload undefined prefab 0x20e21d7a (puppet_wes)
[00:00:20]: Could not preload undefined prefab 0x20e21d7a (puppet_wes)
[00:00:21]: LOAD BE: done
[00:00:21]: Begin Session: 0CA0000013CD0E65
[00:00:21]: saving to server/0CA0000013CD0E65/server_save
[00:00:22]: MiniMapComponent::AddAtlas( minimap/minimap_data.xml )
[00:00:22]: MiniMapComponent::AddAtlas( ../mods/workshop-352499675/minimap/r_shelter.xml )
[00:00:22]: Update Inverval: 12
[00:00:22]: WorldRespawner added
[00:00:22]: Loading Nav Grid
[00:00:22]: ClearCurrentResurrectors CB
[00:00:23]: DeregisterResurrector
[00:00:23]: DeregisterResurrector
[00:00:23]: DeregisterResurrector
[00:00:23]: DeregisterResurrector
[00:00:23]: DeregisterResurrector
[00:00:23]: DeregisterResurrector
[00:00:23]: DeregisterResurrector
[00:00:23]: DeregisterResurrector
[00:00:23]: DeregisterResurrector
[00:00:23]: DeregisterResurrector
[00:00:23]: DeregisterResurrector
[00:00:23]: DeregisterResurrector
[00:00:36]: Child Name: little_walrus
[00:00:36]: Child Name: icehound
[00:00:36]: Child Name: icehound
[00:00:36]: Child Name: walrus
[00:00:36]: Child Name: little_walrus
[00:00:36]: Child Name: icehound
[00:00:36]: Child Name: walrus
[00:00:36]: Child Name: icehound
[00:00:36]: Child Name: walrus
[00:00:36]: Child Name: icehound
[00:00:36]: Child Name: little_walrus
[00:00:36]: Child Name: icehound
[00:00:36]: Child Name: little_walrus
[00:00:36]: Child Name: walrus
[00:00:36]: Child Name: icehound
[00:00:36]: Child Name: icehound
[00:00:36]: 1 uploads added to server. From server/0CA0000013CD0E65
[00:00:36]: Telling Client our new session identifier: 0CA0000013CD0E65
[00:00:36]: ModIndex: Load sequence finished successfully.

[00:00:36]: Reset() returning
[00:00:37]: Creating Steam Room
[00:00:37]: Attempting to send resume request
[00:00:37]: ReceiveResumeRequest
[00:00:37]: Received request to resume from: session/0CA0000013CD0E65/KU_q5g9MZUn
[00:00:37]: OnResumeRequestLoadComplete - UserID KU_q5g9MZUn
[00:00:37]: [Load] SPAWNING PLAYER AT: (38.48, -0.00, -381.99)
[00:00:37]: Deserialize local session session/0CA0000013CD0E65/KU_q5g9MZUn
[00:00:37]: OnLoadMinimapComplete
[00:00:37]: Deserializing cached icon data: 4784
[00:00:37]: Deserializing tile data (425 x 425)
[00:00:38]: Console_CreateRoom: roomName TheRealSurvivors created for id 109775241811405720
[00:00:38]: SendHandShakeServerListing
[00:00:48]: MemberJoinedRoom: Member named SharpFangs and ID 76561198114794525 joined room with ID 109775241811405720
[00:00:51]: New incoming connection
[00:00:51]: ValidateGameSessionToken token: MUraajkZV3xYVC7OLju0kEWtImGFH11Q for: 612489553291383086
[00:00:52]: SendHandShakeServerListing
[00:00:56]: ReceiveResumeRequest
[00:00:56]: Received request to resume from: session/0CA0000013CD0E65/KU_-aLRnk6G
[00:00:56]: OnResumeRequestLoadComplete - UserID KU_-aLRnk6G
[00:00:56]: [Load] SPAWNING PLAYER AT: (31.79, 0.00, -380.21)
[00:01:38]: SteamWorkshop::VerifyModVersions...
[00:01:38]: mModsToVerifyList[mModToVerifyIndex].mVersion 1.4.
[00:01:38]: version 1.4.
[00:01:38]: mModsToVerifyList[mModToVerifyIndex].mVersion 1.3.1.
[00:01:38]: version 1.3.1.
[00:03:38]: SteamWorkshop::VerifyModVersions...
[00:03:38]: mModsToVerifyList[mModToVerifyIndex].mVersion 1.4.
[00:03:38]: version 1.4.
[00:03:38]: mModsToVerifyList[mModToVerifyIndex].mVersion 1.3.1.
[00:03:38]: version 1.3.1.
[00:05:38]: SteamWorkshop::VerifyModVersions...
[00:05:38]: mModsToVerifyList[mModToVerifyIndex].mVersion 1.4.
[00:05:38]: version 1.4.
[00:05:38]: mModsToVerifyList[mModToVerifyIndex].mVersion 1.3.1.
[00:05:38]: version 1.3.1.
[00:05:38]: QueryServerComplete no callback
[00:05:38]: QueryServerComplete no callback
[00:05:39]: QueryServerComplete no callback
 

Something is crashing my client. If you could help that would be amazing. This is me hosting my server and having my sister join. Thanks! :listening_headphone

 

Link to comment
Share on other sites

@Blueflame02, please attach your log to your post as a file instead of copying it directly. It will make it easier to differentiate between the log and post, keep the post concise, and ensure that none of the log gets cut off.

(Please also edit your post and remove the copied log after you attach it as a file)

I think part(s) of your log may have been cut off.

Link to comment
Share on other sites

Hi, recently I have been creating a character mod. As part of this, I am adding in another item to the structures tab. This structure is houndius shootius. However, I seem to keep getting a problem. Not only this, there seems to be hundreds of files that this houndius shootius requires and I'm not even sure I have them all.

 

Part of the error log that the error occured at:

 

scripts/mods.lua(275,1) Mod: dell (Dell Conagher)  Registering prefab file: prefabs/sentry_placer
scripts/mods.lua(17,1) error calling LoadPrefabFile in mod dell (Dell Conagher): 
...ps/common/dont_starve/data/scripts/mainfunctions.lua:71: Error loading file prefabs/sentry_placer
 
no file '../mods/dell/scripts/prefabs/sentry_placer.lua' (checked with custom loader)
no file 'scripts/prefabs/sentry_placer.lua' (checked with custom loader)
no file 'scriptlibs/prefabs/sentry_placer.lua' (checked with custom loader)
no file 'scripts/prefabs/sentry_placer.lua' (checked with custom loader)
LUA ERROR stack traceback:
 
Now, I cannot find a file called eyeturret_placer in the don't starve prefabs, so what can I do about this?
Link to comment
Share on other sites

Error loading file prefabs/sentry_placer

Do you know if the file sentry_placer.lua exists? The game can't load something if it isn't even there. You can find all the prefab files in "..\scripts\prefabs".

 

 

Now, I cannot find a file called eyeturret_placer in the don't starve prefabs, so what can I do about this?

 

It's defined in the eyeturret file. The placers don't usually (if ever) have their own dedicated files.

"..\scripts\prefabs\eyeturret.lua" (line 209)

MakePlacer("common/eyeturret_placer", "eyeball_turret", "eyeball_turret", "idle_place"),

Edit: If you have a more advanced text editor or IDE, you'll be able to search for keywords in a bunch of files at once. It's really useful when looking for something like this, you'll just have to search "eyeturret_placer" in the "scripts" folder and it should come up.

Link to comment
Share on other sites

@notquitethatguy, erm.. define it the same way that eyeturret.lua does it.

Just search that file for anything related to "placer", and use the same code in your sentry file, but use sentry_placer instead.

Ex,

MakePlacer("common/sentry_placer", "sentry_turret", "sentry_turret", "idle_place"),

Make sure sentry_turret exists.

Check out"..\scripts\prefabutil.lua" to see what the parameters are in the MakePlacer function.

Link to comment
Share on other sites

Hello don't know if I'm blind or what not, but I'm starting up making a character mod, and keep getting this, and can't see the problem that it describes:

 

...common/dont_starve/data/../mods/Aracnoss/modmain.lua:35: attempt to index field 'DESCRIBE' (a nil value)

LUA ERROR stack traceback:
        D:/Steam stuff/steamapps/common/dont_starve/data/../mods/Aracnoss/modmain.lua(35,1) in main chunk
        =[C] in function 'xpcall'
        D:/Steam stuff/steamapps/common/dont_starve/data/scripts/util.lua(439,1) in function 'RunInEnvironment'
        D:/Steam stuff/steamapps/common/dont_starve/data/scripts/mods.lua(190,1) in function 'InitializeModMain'
        D:/Steam stuff/steamapps/common/dont_starve/data/scripts/mods.lua(171,1) in function 'LoadMods'
        scripts/main.lua(229,1) in function 'ModSafeStartup'
        scripts/main.lua(274,1)
        =[C] in function 'SetPersistentString'
        D:/Steam stuff/steamapps/common/dont_starve/data/scripts/mainfunctions.lua(18,1) in function 'SavePersistentString'
        D:/Steam stuff/steamapps/common/dont_starve/data/scripts/modindex.lua(76,1)
        =[C] in function 'GetPersistentString'
        D:/Steam stuff/steamapps/common/dont_starve/data/scripts/modindex.lua(63,1) in function 'BeginStartupSequence'
        scripts/main.lua(273,1) in function 'callback'
        D:/Steam stuff/steamapps/common/dont_starve/data/scripts/modindex.lua(322,1)
        =[C] in function 'GetPersistentString'
        D:/Steam stuff/steamapps/common/dont_starve/data/scripts/modindex.lua(302,1) in function 'Load'
        scripts/main.lua(272,1) in main chunk
 
my modmain is this:
 
PrefabFiles = {
"aracnoss",
}
 
Assets = {
    Asset( "IMAGE", "images/saveslot_portraits/aracnoss.tex" ),
    Asset( "ATLAS", "images/saveslot_portraits/aracnoss.xml" ),
 
    Asset( "IMAGE", "images/selectscreen_portraits/aracnoss.tex" ),
    Asset( "ATLAS", "images/selectscreen_portraits/aracnoss.xml" ),
 
    Asset( "IMAGE", "images/selectscreen_portraits/aracnoss_silho.tex" ),
    Asset( "ATLAS", "images/selectscreen_portraits/aracnoss_silho.xml" ),
 
    Asset( "IMAGE", "bigportraits/aracnoss.tex" ),
    Asset( "ATLAS", "bigportraits/aracnoss.xml" ),
 
}
 
 
GLOBAL.STRINGS.CHARACTER_TITLES.aracnoss = "The Unknown"
GLOBAL.STRINGS.CHARACTER_NAMES.aracnoss = "Aracnoss"
 
GLOBAL.STRINGS.CHARACTER_DESCRIPTIONS.aracnoss = "*Currently an empty husk."
GLOBAL.STRINGS.CHARACTER_QUOTES.aracnoss = "Maxwell, your world confuses and amazes me at the same time."
 
GLOBAL.STRINGS.CHARACTERS.ARACNOSS = "The shadows are watching."
GLOBAL.STRINGS.CHARACTERS.ARACNOSS.DESCRIBE.EVERGREEN = "Reminds me of home..."
GLOBAL.STRINGS.CHARACTERS.ARACNOSS.DESCRIBE.RABBIT = "They fear me...? Strange..."
 
table.insert(GLOBAL.CHARACTER_GENDERS.MALE, "aracnoss")
 
 
AddModCharacter("aracnoss")

 

Link to comment
Share on other sites

@Aracnoss, You must  create a table before you can access it's children.

For example, you can't use "parent.child" unless "parent" has been declared using "parent = {}" or similar.

 

Additionally, it would be easier if you defined all the children elements together, since you are creating a new table.

GLOBAL.STRINGS.CHARACTERS.ARACNOSS = {    DESCRIBE = {        EVERGREEN = "Reminds me of home...",        RABBIT = "They fear me...? Strange..."    },}

Edit: See this post for a more detailed explanation.

 

Edit 2: Read this guide on parent-children syntax for even more detail.

Link to comment
Share on other sites

I saw that help was being given, so i tought i would try to steal some XD


 

 

the log file

log.txt

 

 

 

the mod (in a .zip)

Michael.zip

 

Don't think "oh he can't be arsed to help himself"

I think the error is around here (ish)

 

[00:00:02]: [string "scripts/util.lua"]:292: Could not find an asset matching bigportraits/Michael.xml in any of the search paths.
LUA ERROR stack traceback:
=[C]:-1 in (global) assert © <-1--1>
scripts/util.lua:292 in (global) resolvefilepath (Lua) <290-294>
   filepath = bigportraits/Michael.xml
   resolved = nil
Link to comment
Share on other sites

@Aracnoss, You must  create a table before you can access it's children.

For example, you can't use "parent.child" unless "parent" has been declared using "parent = {}" or similar.

 

Additionally, it would be easier if you defined all the children elements together, since you are creating a new table.

GLOBAL.STRINGS.CHARACTERS.ARACNOSS = {    DESCRIBE = {        EVERGREEN = "Reminds me of home...",        RABBIT = "They fear me...? Strange..."    },}

Edit: See this post for a more detailed explanation.

 

Edit 2: Read this guide on parent-children syntax for even more detail.

 

@Blueberrys, Thanks, you saved me several more hours of searching my code! That makes so much sense, can't believe it didn't occur to me to try that instead, anyway, thanks!

Link to comment
Share on other sites

Damn now my character loads completely fine once I added the below code in place (Thanks again for that btw)

 

1
2
3
4
5
6
GLOBAL.STRINGS.CHARACTERS.ARACNOSS = {
    DESCRIBE = {
        EVERGREEN = "Reminds me of home...",
        RABBIT = "They fear me...? Strange..."
    },
}

 

of this code:

 

GLOBAL.STRINGS.CHARACTERS.ARACNOSS = "The shadows are watching."
GLOBAL.STRINGS.CHARACTERS.ARACNOSS.DESCRIBE.EVERGREEN = "Reminds me of home..."
GLOBAL.STRINGS.CHARACTERS.ARACNOSS.DESCRIBE.RABBIT = "They fear me...? Strange..."

But now the character doesn't show up in the character selection menu no matter what I do.... Here's the log perhaps it will help
 
Starting up
Don't Starve: 115739 WIN32_STEAM
Build Date: 2014-11-04_16-15-32
THREAD - started 'GAClient' (7136)
HttpClient::ClientThread::Main()
cGame::InitializeOnMainThread
WindowManager::Initialize
WindowManager::SetFullscreen(0, 1920, 1080, 60)
GLInfo
~~~~~~
GL_VENDOR: Google Inc.
GL_RENDERER: ANGLE (NVIDIA GeForce GTX 780 Ti )
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)
THREAD - started 'WindowsInputManager' (2704)
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
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(311,1) loaded modindex
scripts/modindex.lua(75,1) ModIndex: Beginning normal load sequence.
 
scripts/modindex.lua(242,1) WARNING loading modinfo.lua: workshop-302135715 does not specify if it is compatible with Reign of Giants. It may not work properly.
scripts/modindex.lua(386,1) Could not load mod_config_data/modconfiguration_Aracnoss
scripts/mods.lua(152,1) Loading mod: Aracnoss
LOADING LUA SUCCESS
scripts/playerdeaths.lua(79,1) PlayerDeaths loaded morgue 224
scripts/playerprofile.lua(480,1) loaded profile
scripts/playerprofile.lua(544,1) bloom_enabled true
scripts/saveindex.lua(99,1) loaded saveindex
scripts/gamelogic.lua(1172,1) OnFilesLoaded()
scripts/gamelogic.lua(1161,1) OnUpdatePurchaseStateComplete
scripts/gamelogic.lua(117,1) Unload BE
Could not unload undefined prefab 0x4374c56c (yellowstaff)
Could not unload undefined prefab 0x303bfdce (axe)
Could not unload undefined prefab 0x378bda50 (wall_wood_item)
Could not unload undefined prefab 0x8cc766ef (pumpkin_lantern)
Could not unload undefined prefab 0xfdcabd86 (earmuffshat)
Could not unload undefined prefab 0x7f46d7c0 (batbat)
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 0x4aeb6641 (armordragonfly)
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 0xde4bc7e7 (wall_hay_item)
Could not unload undefined prefab 0xe51acd32 (lightning_rod)
Could not unload undefined prefab 0x947bfcb8 (lightning_rod_placer)
Could not unload undefined prefab 0x68ba7100 (researchlab2)
Could not unload undefined prefab 0x3386a16a (researchlab2_placer)
Could not unload undefined prefab 0x3f5176c5 (firepit)
Could not unload undefined prefab 0x8a462465 (firepit_placer)
Could not unload undefined prefab 0x75370b6 (papyrus)
Could not unload undefined prefab 0xbea16a01 (hambat)
Could not unload undefined prefab 0xeb646050 (icehat)
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 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 0xd3671c87 (rainhat)
Could not unload undefined prefab 0x2e264dbc (blowdart_pipe)
Could not unload undefined prefab 0x2f0f89cb (reflectivevest)
Could not unload undefined prefab 0xc4101586 (hammer)
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 0x7fcb037d (greenstaff)
Could not unload undefined prefab 0x7fceff10 (featherfan)
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 0xd2c60301 (dragonflychest)
Could not unload undefined prefab 0xa72c4129 (dragonflychest_placer)
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 0xb4e674c6 (hawaiianshirt)
Could not unload undefined prefab 0xc78d9876 (siestahut)
Could not unload undefined prefab 0xb22fa874 (siestahut_placer)
Could not unload undefined prefab 0xce5a342e (firesuppressor)
Could not unload undefined prefab 0xbbba0ebc (firesuppressor_placer)
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 0xa6b98890 (beargervest)
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 0x76d26529 (bugnet)
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 0x8a2d55ba (catcoonhat)
Could not unload undefined prefab 0x4116c653 (raincoat)
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 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 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 0x6c77c310 (fast_farmplot_placer)
Could not unload undefined prefab 0xbcfca634 (strawhat)
Could not unload undefined prefab 0x111db7ae (footballhat)
Could not unload undefined prefab 0x1eee0485 (transistor)
Could not unload undefined prefab 0x1cd9e60e (razor)
Could not unload undefined prefab 0x1541c9cc (armorruins)
Could not unload undefined prefab 0xe87e06c0 (icebox)
Could not unload undefined prefab 0xf2bd1baa (icebox_placer)
Could not unload undefined prefab 0x36768a92 (orangestaff)
Could not unload undefined prefab 0x2ca456a0 (orangeamulet)
Could not unload undefined prefab 0xff7a976 (staff_tornado)
Could not unload undefined prefab 0xd8067599 (beehat)
Could not unload undefined prefab 0xc22935e4 (icepack)
Could not unload undefined prefab 0x739fbe3c (homesign)
Could not unload undefined prefab 0x33fdbd2e (homesign_placer)
Could not unload undefined prefab 0x1c42203 (bell)
Could not unload undefined prefab 0x15220700 (backpack)
Could not unload undefined prefab 0xa8b25abc (wall_ruins_item)
Could not unload undefined prefab 0x3ede96f8 (nightstick)
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 0x651e3e9e (eyebrellahat)
Could not unload undefined prefab 0x92ccc001 (coldfirepit)
Could not unload undefined prefab 0x21e04429 (coldfirepit_placer)
Could not unload undefined prefab 0x5a59f5cc (goldenshovel)
Could not unload undefined prefab 0x2e54b535 (cane)
Could not unload undefined prefab 0xb6201ac9 (onemanband)
Could not unload undefined prefab 0x4685284 (umbrella)
Could not unload undefined prefab 0xda1f7edf (winterometer)
Could not unload undefined prefab 0x955229cb (winterometer_placer)
Could not unload undefined prefab 0xe2bfa46 (tophat)
Could not unload undefined prefab 0xacbea762 (fertilizer)
Could not unload undefined prefab 0x3949a42 (meatrack)
Could not unload undefined prefab 0x56340ba8 (meatrack_placer)
Could not unload undefined prefab 0x6dda899f (watermelonhat)
Could not unload undefined prefab 0x94cf6c04 (goldenpickaxe)
Could not unload undefined prefab 0x86860bc2 (boomerang)
Could not unload undefined prefab 0xb1fa364d (pickaxe)
Could not unload undefined prefab 0x3cb06493 (healingsalve)
Could not unload undefined prefab 0x39311b4d (grass_umbrella)
Could not unload undefined prefab 0x37c31aa6 (lantern)
Could not unload undefined prefab 0xbc429ef3 (bushhat)
Could not unload undefined prefab 0x80cb1e18 (featherhat)
Could not unload undefined prefab 0x3edae42e (multitool_axe_pickaxe)
Could not unload undefined prefab 0x7f2d088c (armorwood)
Could not unload undefined prefab 0x46094f1b (beefalohat)
Could not unload undefined prefab 0xf8e41fa9 (bedroll_furry)
Could not unload undefined prefab 0xcda99af6 (winterhat)
Could not unload undefined prefab 0x1c48b877 (campfire)
Could not unload undefined prefab 0xdfe3a33 (campfire_placer)
Could not unload undefined prefab 0x4d9a964d (trap)
Could not unload undefined prefab 0x68370bd6 (trap_teeth)
Could not unload undefined prefab 0x4058bc0 (molehat)
Could not unload undefined prefab 0xcad92460 (flowerhat)
Could not unload undefined prefab 0xec43b9f4 (sewing_kit)
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 0x8bbc7f55 (beemine)
Could not unload undefined prefab 0xdf13a0c1 (ruins_bat)
Could not unload undefined prefab 0x22ec3802 (wall_stone_item)
Could not unload undefined prefab 0x8d60ee3a (coldfire)
Could not unload undefined prefab 0xe72d29b0 (coldfire_placer)
Could not unload undefined prefab 0x263bc4d5 (slow_farmplot)
Could not unload undefined prefab 0x321f7255 (slow_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 0x6f21e747 (piggyback)
Could not unload undefined prefab 0xf0330963 (panflute)
Could not unload undefined prefab 0xdb20fa95 (heatrock)
Could not unload undefined prefab 0x1153dbb9 (pottedfern)
Could not unload undefined prefab 0xf2102a71 (pottedfern_placer)
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(120,1) Unload BE done
scripts/dlcsupport.lua(24,1) Load scripts/DLC001_prefab_files
HttpClientWriteCallback (0x065F56BF, 1, 16, 0x067DFDAC)
HttpClientWriteCallback READ 16 (16 total)
scripts/mods.lua(269,1) Mod: Aracnoss Registering prefabs
scripts/mods.lua(292,1) Mod: Aracnoss  Registering default mod prefab
scripts/gamelogic.lua(132,1) Load FE
scripts/gamelogic.lua(136,1) Load FE: done
scripts/screens/mainscreen.lua(576,1) platform_motd table: 0F078D48
SimLuaProxy::QueryServer()
scripts/modindex.lua(85,1) ModIndex: Load sequence finished successfully.
 
Reset() returning
QueryServerComplete no callback
HttpClientWriteCallback (0x065F561C, 1, 1250, 0x067DFDAC)
HttpClientWriteCallback READ 1250 (1250 total)
scripts/screens/mainscreen.lua(576,1) platform_motd table: 0F1389E8
scripts/mods.lua(304,1) unloading prefabs for mod MOD_Aracnoss
Collecting garbage...
lua_gc took 0.01 seconds
~SimLuaProxy()
lua_close took 0.01 seconds
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
HttpClient::ClientThread::Main() complete
Shutting down

Damn now my character loads completely fine once I added the below code in place (Thanks again for that btw)

 

1
2
3
4
5
6
GLOBAL.STRINGS.CHARACTERS.ARACNOSS = {
    DESCRIBE = {
        EVERGREEN = "Reminds me of home...",
        RABBIT = "They fear me...? Strange..."
    },
}

 

of this code:

 

GLOBAL.STRINGS.CHARACTERS.ARACNOSS = "The shadows are watching."
GLOBAL.STRINGS.CHARACTERS.ARACNOSS.DESCRIBE.EVERGREEN = "Reminds me of home..."
GLOBAL.STRINGS.CHARACTERS.ARACNOSS.DESCRIBE.RABBIT = "They fear me...? Strange..."

But now the character doesn't show up in the character selection menu no matter what I do.... Here's the log perhaps it will help
 
Starting up
Don't Starve: 115739 WIN32_STEAM
Build Date: 2014-11-04_16-15-32
THREAD - started 'GAClient' (7136)
HttpClient::ClientThread::Main()
cGame::InitializeOnMainThread
WindowManager::Initialize
WindowManager::SetFullscreen(0, 1920, 1080, 60)
GLInfo
~~~~~~
GL_VENDOR: Google Inc.
GL_RENDERER: ANGLE (NVIDIA GeForce GTX 780 Ti )
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)
THREAD - started 'WindowsInputManager' (2704)
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
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(311,1) loaded modindex
scripts/modindex.lua(75,1) ModIndex: Beginning normal load sequence.
 
scripts/modindex.lua(242,1) WARNING loading modinfo.lua: workshop-302135715 does not specify if it is compatible with Reign of Giants. It may not work properly.
scripts/modindex.lua(386,1) Could not load mod_config_data/modconfiguration_Aracnoss
scripts/mods.lua(152,1) Loading mod: Aracnoss
LOADING LUA SUCCESS
scripts/playerdeaths.lua(79,1) PlayerDeaths loaded morgue 224
scripts/playerprofile.lua(480,1) loaded profile
scripts/playerprofile.lua(544,1) bloom_enabled true
scripts/saveindex.lua(99,1) loaded saveindex
scripts/gamelogic.lua(1172,1) OnFilesLoaded()
scripts/gamelogic.lua(1161,1) OnUpdatePurchaseStateComplete
scripts/gamelogic.lua(117,1) Unload BE
Could not unload undefined prefab 0x4374c56c (yellowstaff)
Could not unload undefined prefab 0x303bfdce (axe)
Could not unload undefined prefab 0x378bda50 (wall_wood_item)
Could not unload undefined prefab 0x8cc766ef (pumpkin_lantern)
Could not unload undefined prefab 0xfdcabd86 (earmuffshat)
Could not unload undefined prefab 0x7f46d7c0 (batbat)
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 0x4aeb6641 (armordragonfly)
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 0xde4bc7e7 (wall_hay_item)
Could not unload undefined prefab 0xe51acd32 (lightning_rod)
Could not unload undefined prefab 0x947bfcb8 (lightning_rod_placer)
Could not unload undefined prefab 0x68ba7100 (researchlab2)
Could not unload undefined prefab 0x3386a16a (researchlab2_placer)
Could not unload undefined prefab 0x3f5176c5 (firepit)
Could not unload undefined prefab 0x8a462465 (firepit_placer)
Could not unload undefined prefab 0x75370b6 (papyrus)
Could not unload undefined prefab 0xbea16a01 (hambat)
Could not unload undefined prefab 0xeb646050 (icehat)
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 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 0xd3671c87 (rainhat)
Could not unload undefined prefab 0x2e264dbc (blowdart_pipe)
Could not unload undefined prefab 0x2f0f89cb (reflectivevest)
Could not unload undefined prefab 0xc4101586 (hammer)
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 0x7fcb037d (greenstaff)
Could not unload undefined prefab 0x7fceff10 (featherfan)
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 0xd2c60301 (dragonflychest)
Could not unload undefined prefab 0xa72c4129 (dragonflychest_placer)
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 0xb4e674c6 (hawaiianshirt)
Could not unload undefined prefab 0xc78d9876 (siestahut)
Could not unload undefined prefab 0xb22fa874 (siestahut_placer)
Could not unload undefined prefab 0xce5a342e (firesuppressor)
Could not unload undefined prefab 0xbbba0ebc (firesuppressor_placer)
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 0xa6b98890 (beargervest)
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 0x76d26529 (bugnet)
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 0x8a2d55ba (catcoonhat)
Could not unload undefined prefab 0x4116c653 (raincoat)
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 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 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 0x6c77c310 (fast_farmplot_placer)
Could not unload undefined prefab 0xbcfca634 (strawhat)
Could not unload undefined prefab 0x111db7ae (footballhat)
Could not unload undefined prefab 0x1eee0485 (transistor)
Could not unload undefined prefab 0x1cd9e60e (razor)
Could not unload undefined prefab 0x1541c9cc (armorruins)
Could not unload undefined prefab 0xe87e06c0 (icebox)
Could not unload undefined prefab 0xf2bd1baa (icebox_placer)
Could not unload undefined prefab 0x36768a92 (orangestaff)
Could not unload undefined prefab 0x2ca456a0 (orangeamulet)
Could not unload undefined prefab 0xff7a976 (staff_tornado)
Could not unload undefined prefab 0xd8067599 (beehat)
Could not unload undefined prefab 0xc22935e4 (icepack)
Could not unload undefined prefab 0x739fbe3c (homesign)
Could not unload undefined prefab 0x33fdbd2e (homesign_placer)
Could not unload undefined prefab 0x1c42203 (bell)
Could not unload undefined prefab 0x15220700 (backpack)
Could not unload undefined prefab 0xa8b25abc (wall_ruins_item)
Could not unload undefined prefab 0x3ede96f8 (nightstick)
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 0x651e3e9e (eyebrellahat)
Could not unload undefined prefab 0x92ccc001 (coldfirepit)
Could not unload undefined prefab 0x21e04429 (coldfirepit_placer)
Could not unload undefined prefab 0x5a59f5cc (goldenshovel)
Could not unload undefined prefab 0x2e54b535 (cane)
Could not unload undefined prefab 0xb6201ac9 (onemanband)
Could not unload undefined prefab 0x4685284 (umbrella)
Could not unload undefined prefab 0xda1f7edf (winterometer)
Could not unload undefined prefab 0x955229cb (winterometer_placer)
Could not unload undefined prefab 0xe2bfa46 (tophat)
Could not unload undefined prefab 0xacbea762 (fertilizer)
Could not unload undefined prefab 0x3949a42 (meatrack)
Could not unload undefined prefab 0x56340ba8 (meatrack_placer)
Could not unload undefined prefab 0x6dda899f (watermelonhat)
Could not unload undefined prefab 0x94cf6c04 (goldenpickaxe)
Could not unload undefined prefab 0x86860bc2 (boomerang)
Could not unload undefined prefab 0xb1fa364d (pickaxe)
Could not unload undefined prefab 0x3cb06493 (healingsalve)
Could not unload undefined prefab 0x39311b4d (grass_umbrella)
Could not unload undefined prefab 0x37c31aa6 (lantern)
Could not unload undefined prefab 0xbc429ef3 (bushhat)
Could not unload undefined prefab 0x80cb1e18 (featherhat)
Could not unload undefined prefab 0x3edae42e (multitool_axe_pickaxe)
Could not unload undefined prefab 0x7f2d088c (armorwood)
Could not unload undefined prefab 0x46094f1b (beefalohat)
Could not unload undefined prefab 0xf8e41fa9 (bedroll_furry)
Could not unload undefined prefab 0xcda99af6 (winterhat)
Could not unload undefined prefab 0x1c48b877 (campfire)
Could not unload undefined prefab 0xdfe3a33 (campfire_placer)
Could not unload undefined prefab 0x4d9a964d (trap)
Could not unload undefined prefab 0x68370bd6 (trap_teeth)
Could not unload undefined prefab 0x4058bc0 (molehat)
Could not unload undefined prefab 0xcad92460 (flowerhat)
Could not unload undefined prefab 0xec43b9f4 (sewing_kit)
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 0x8bbc7f55 (beemine)
Could not unload undefined prefab 0xdf13a0c1 (ruins_bat)
Could not unload undefined prefab 0x22ec3802 (wall_stone_item)
Could not unload undefined prefab 0x8d60ee3a (coldfire)
Could not unload undefined prefab 0xe72d29b0 (coldfire_placer)
Could not unload undefined prefab 0x263bc4d5 (slow_farmplot)
Could not unload undefined prefab 0x321f7255 (slow_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 0x6f21e747 (piggyback)
Could not unload undefined prefab 0xf0330963 (panflute)
Could not unload undefined prefab 0xdb20fa95 (heatrock)
Could not unload undefined prefab 0x1153dbb9 (pottedfern)
Could not unload undefined prefab 0xf2102a71 (pottedfern_placer)
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(120,1) Unload BE done
scripts/dlcsupport.lua(24,1) Load scripts/DLC001_prefab_files
HttpClientWriteCallback (0x065F56BF, 1, 16, 0x067DFDAC)
HttpClientWriteCallback READ 16 (16 total)
scripts/mods.lua(269,1) Mod: Aracnoss Registering prefabs
scripts/mods.lua(292,1) Mod: Aracnoss  Registering default mod prefab
scripts/gamelogic.lua(132,1) Load FE
scripts/gamelogic.lua(136,1) Load FE: done
scripts/screens/mainscreen.lua(576,1) platform_motd table: 0F078D48
SimLuaProxy::QueryServer()
scripts/modindex.lua(85,1) ModIndex: Load sequence finished successfully.
 
Reset() returning
QueryServerComplete no callback
HttpClientWriteCallback (0x065F561C, 1, 1250, 0x067DFDAC)
HttpClientWriteCallback READ 1250 (1250 total)
scripts/screens/mainscreen.lua(576,1) platform_motd table: 0F1389E8
scripts/mods.lua(304,1) unloading prefabs for mod MOD_Aracnoss
Collecting garbage...
lua_gc took 0.01 seconds
~SimLuaProxy()
lua_close took 0.01 seconds
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
HttpClient::ClientThread::Main() complete
Shutting down

Sorry about the above, for some reason it decided to double post the same comment, once again so sorry.

Link to comment
Share on other sites

I saw that help was being given, so i tought i would try to steal some XD

That's what the thread is for, haha! :razz:

Could not find an asset matching bigportraits/Michael.xml in any of the search paths.

Could not find an asset matching images/asset.xml in any of the search paths."

 Both of these occur when you tried to access a file that isn't available in the correct folders. Check the folders to make sure you do have it there. It might also be that you didn't want to use the file at all, but forgot to remove that portion of the code. If so, simply go to the corresponding error line, and remove it.

In your case, I think you might have wrote bigportraits by accident. Do you really have Michael.xml inside a folder called bigportraits? If not, change bigportraits/Michael.xml to just Michael.xml (Or relative to whichever folder you placed it in).

Edit: Actually, first off, just make sure you have a file called Michael.xml in "../your_mod_folder/bigportraits". Double check the spelling of files and folders.

Link to comment
Share on other sites

 

...s/Don't Starve/data/scripts/components/inventory.lua:407: attempt to perform arithmetic on a nil value

LUA ERROR stack traceback:

        C:/GOG Games/Don't Starve/data/scripts/components/inventory.lua(407,1) in function 'GetWaterproofness'

        C:/GOG Games/Don't Starve/data/scripts/components/inventory.lua(414,1) in function 'IsWaterproof'

        C:/GOG Games/Don't Starve/data/scripts/components/moisture.lua(141,1) in function 'GetMoistureRate'

        C:/GOG Games/Don't Starve/data/scripts/components/moisture.lua(224,1) in function 'OnUpdate'

        C:/GOG Games/Don't Starve/data/scripts/update.lua(104,1)

scripts/frontend.lua(717,1) SCRIPT ERROR! Showing error screen

...s/Don't Starve/data/scripts/components/inventory.lua:407: attempt to perform arithmetic on a nil value

LUA ERROR stack traceback:

        C:/GOG Games/Don't Starve/data/scripts/components/inventory.lua(407,1) in function 'GetWaterproofness'

        C:/GOG Games/Don't Starve/data/scripts/components/inventory.lua(414,1) in function 'IsWaterproof'

        C:/GOG Games/Don't Starve/data/scripts/components/moisture.lua(141,1) in function 'GetMoistureRate'

        C:/GOG Games/Don't Starve/data/scripts/components/moisture.lua(224,1) in function 'OnUpdate'

        C:/GOG Games/Don't Starve/data/scripts/update.lua(104,1)
Link to comment
Share on other sites

Hey again, I've come to a new error, creating a speech file, rather than stuff it all into the main, and the error is not to do with "require" as I knew that before hand... But whilst I know what the error is and where to locate it, I just can't see an error in my writing... tell me what you think:

 

It tells me roughtly:

 

error loading module 'speech_aracnoss' from file '..\mods\Aracnoss\scripts\speech_aracnoss.lua':
..\mods\Aracnoss\scripts\speech_aracnoss.lua:23: '}' expected (to close '{' at line 1) near 'ACTIONFAIL_GENERIC'

 

The log and speech file are attached...

log.txt

speech_aracnoss.lua

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...