Jump to content

Recommended Posts

I don't see any damage set for your weapon. I also don't understand what code should give it more damage against dragonfly. I suppose you gave the version with it removed.

 

I use this code in a custom item that deal more damage to shadow/nighmare creatures (just for testing purpose)

 


local function onattack(inst, owner, target)
    if target:HasTag("nightmarecreature") or target:HasTag("shadowchesspiece") or target:HasTag("shadowcreature") then
        target.components.combat:GetAttacked(owner, 75, inst)
    end
end 

 

And of course you need a


    inst.components.weapon:SetOnAttack(onattack)

Like :


    inst:AddComponent("weapon")
    inst.components.weapon:SetDamage(TUNING.WATHGRITHR_SPEAR_DAMAGE)
    inst.components.weapon:SetOnAttack(onattack)

 

Link to comment
Share on other sites

Forgot to put a value for the damage last night ^^; but the damage calculator for fighting dragonfly was in the modmain file, not the prefab file. 

 

I tried your code but now whenever I attack dragonfly it says 164: variable owner is not declared.

 

 

xavierwep.zip

Edited by Eusong
Link to comment
Share on other sites

Yes because my code is :


local function onattack(inst, owner, target)

and your is

local function OnAttack(inst, attacker, target)

I don't know why you need attacker here, but the change is the reason it doesn't work i think.

Link to comment
Share on other sites

Spoiler

[00:00:00]: 
System Memory:
    Memory Load: 28%
    Available Physical Memory: 8378m/11663m
    Available Page File: 10421m/14095m
    Available Virtual Memory: 3972m/4095m
    Available Extended Virtual Memory: 0m
[00:00:00]: 
Process Memory:
    Peak Working Set Size: 28m
    Working Set Size: 28m
    Quota Peak Page Pool Usage: 235k
    Quota Page Pool Usage: 227k
    Quota Peak Non Paged Pool Usage:15k
    Quota Non Paged Pool Usage: 15k
    Page File Usage: 5m
    Peak Page File Usage: 5m
[00:00:00]: PersistRootStorage is now APP:Klei//DoNotStarveTogether/ 
[00:00:00]: Starting Up
[00:00:00]: Version: 213053
[00:00:00]: Current time: Mon Apr 17 13:11:48 2017

[00:00:00]: Don't Starve Together: 213053 WIN32_STEAM
[00:00:00]: Build Date: 1881
[00:00:00]: Parsing command line
[00:00:00]: Command Line Arguments: 
[00:00:00]: Initializing distribution platform
[00:00:00]: Initializing Minidump handler
[00:00:00]: ....Done
[00:00:00]: Steam AppBuildID: 1742918
[00:00:00]: ....Done
[00:00:00]: Fixing DPI
[00:00:00]: ...Done
[00:00:00]: THREAD - started 'GAClient' (11036)
[00:00:00]: CurlRequestManager::ClientThread::Main()
[00:00:07]: ProfileIndex:4.71
[00:00:07]: [Connect] PendingConnection::Reset(true)
[00:00:07]: Network tick rate: U=15(2), D=0
[00:00:07]: Authorized application C:\Program Files (x86)\Steam\steamapps\common\Don't Starve Together\bin\dontstarve_steam.exe is enabled in the firewall.
[00:00:07]: WindowsFirewall - Application already authorized
[00:00:07]: could not load ping_cache
[00:00:07]: THREAD - started 'ConsoleInput' (7076)
[00:00:07]: Offline user ID: OU_76561198105798752
[00:00:07]: SteamID: 76561198105798752
[00:00:07]: HardwareStats:
  OS                        
    name                      Microsoft Windows 10 Home
    version                   10.0.10586
    architecture              64-bit
    platformSpecific          SP 0.0
  CPU                       
    numCores                  4
    features                  SSE,SSE2,SSE3,SSSE3,SSE41,SSE42,AVX
    name                      AMD A10-9600P RADEON R5, 10 COMPUTE CORES 4C+6G
    manufacturer              AuthenticAMD
    clockSpeed                2400
  RAM                       
    megsOfRam                 12288
  GPU                       
    name                      AMD Radeon R5 Graphics
    driverDate                20160429000000.000000-000
    megsOfRam                 512
    refreshRate               60
    videoModeDescription      1366 x 768 x 4294967296 colors
    driverVersion             16.101.1611.1003

[00:00:07]: cGame::InitializeOnMainThread
[00:00:07]: WindowManager::Initialize
[00:00:07]: CreateWindow: Requesting 1362,705 - 5/6/5 - -1/-1/-1 - 0
[00:00:07]: CreateEGLContext: 16 configs found
[00:00:07]:      0: 8/8/8 -  0/ 0/ 0 - 0
[00:00:07]:      1: 8/8/8 -  0/16/ 0 - 0
[00:00:07]:      2: 8/8/8 -  0/24/ 0 - 0
[00:00:07]:      3: 8/8/8 -  0/24/ 8 - 0
[00:00:07]:      4: 5/5/5 -  0/ 0/ 0 - 0
[00:00:07]:      5: 5/5/5 -  1/ 0/ 0 - 0
[00:00:07]:      6: 5/5/5 -  0/16/ 0 - 0
[00:00:07]:      7: 5/5/5 -  1/16/ 0 - 0
[00:00:07]:      8: 5/5/5 -  0/24/ 0 - 0
[00:00:07]:      9: 5/5/5 -  1/24/ 0 - 0
[00:00:07]:     10: 5/5/5 -  0/24/ 8 - 0
[00:00:07]:     11: 5/5/5 -  1/24/ 8 - 0
[00:00:07]:     12: 8/8/8 -  8/ 0/ 0 - 0
[00:00:07]:     13: 8/8/8 -  8/16/ 0 - 0
[00:00:07]:     14: 8/8/8 -  8/24/ 0 - 0
[00:00:07]:     15: 8/8/8 -  8/24/ 8 - 0
[00:00:07]: RestoreWindowPosition
[00:00:07]:    Saved Client Pos (0 x 23)
[00:00:07]:    Adjusted Window Pos (-8 x -8)
[00:00:07]: EnsureWindowOnScreen
[00:00:07]:    All good.
[00:00:08]: GLInfo
[00:00:08]: ~~~~~~
[00:00:08]: GL_VENDOR: Google Inc.
[00:00:08]: GL_RENDERER: ANGLE (AMD Radeon R5 Graphics)
[00:00:08]: GL_VERSION: OpenGL ES 2.0 (ANGLE 1.0.0.2249)
[00:00:08]: GL_SHADING_LANGUAGE_VERSION: OpenGL ES GLSL ES 1.00 (ANGLE 1.0.0.2249)
[00:00:08]: OpenGL extensions (19, 19):
[00:00:08]: GL_ANGLE_depth_texture
[00:00:08]: GL_ANGLE_framebuffer_blit
[00:00:08]: GL_ANGLE_framebuffer_multisample
[00:00:08]: GL_ANGLE_instanced_arrays
[00:00:08]: GL_ANGLE_pack_reverse_row_order
[00:00:08]: GL_ANGLE_texture_compression_dxt3
[00:00:08]: GL_ANGLE_texture_compression_dxt5
[00:00:08]: GL_ANGLE_texture_usage
[00:00:08]: GL_ANGLE_translated_shader_source
[00:00:08]: GL_EXT_read_format_bgra
[00:00:08]: GL_EXT_robustness
[00:00:08]: GL_EXT_texture_compression_dxt1
[00:00:08]: GL_EXT_texture_format_BGRA8888
[00:00:08]: GL_EXT_texture_storage
[00:00:08]: GL_OES_get_program_binary
[00:00:08]: GL_OES_packed_depth_stencil
[00:00:08]: GL_OES_rgb8_rgba8
[00:00:08]: GL_OES_standard_derivatives
[00:00:08]: GL_OES_texture_npot
[00:00:08]: THREAD - started 'WindowsInputManager' (8884)
[00:00:08]: GL_MAX_TEXTURE_SIZE = 16384
[00:00:08]: GL_MAX_TEXTURE_IMAGE_UNITS = 16
[00:00:08]: GL_MAX_RENDERBUFFER_SIZE = 16384
[00:00:08]: GL_MAX_VIEWPORT_DIMS = 16384, 16384
[00:00:08]: GL_MAX_VARYING_VECTORS = 10
[00:00:08]: GL_MAX_VERTEX_ATTRIBS = 16
[00:00:08]: GL_MAX_VERTEX_UNIFORM_VECTORS = 254
[00:00:08]: GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS = 4
[00:00:08]: GL_MAX_FRAGMENT_UNIFORM_VECTORS = 221
[00:00:08]: 4 compressed texture formats
[00:00:08]: texture format 0x83f0
[00:00:08]: texture format 0x83f1
[00:00:08]: texture format 0x83f2
[00:00:08]: texture format 0x83f3
[00:00:08]: Renderer initialize: Okay
[00:00:09]: AnimManager initialize: Okay
[00:00:09]: Buffers initialize: Okay
[00:00:09]: cDontStarveGame::DoGameSpecificInitialize()
[00:00:09]: GameSpecific initialize: Okay
[00:00:09]: cGame::StartPlaying
[00:00:09]: LOADING LUA
[00:00:09]: DoLuaFile scripts/main.lua
[00:00:09]: DoLuaFile loading buffer scripts/main.lua
[00:00:09]: running main.lua
    
[00:00:09]: loaded modindex    
[00:00:10]: WARNING: icon paths for mod workshop-478005098 (Craftable Gears) are not valid. Got icon_atlas="modicon.xml" and icon="modicon.tex".
Please ensure that these point to valid files in your mod folder, or else comment out those lines from your modinfo.lua.    
[00:00:10]: ModIndex: Beginning normal load sequence.
    
[00:00:12]: LOADING LUA SUCCESS
[00:00:13]: PlayerDeaths loaded morgue    1342    
[00:00:13]: PlayerHistory loaded player_history    855    
[00:00:13]: bloom_enabled    false    
[00:00:13]: loaded saveindex    
[00:00:13]: OnFilesLoaded()    
[00:00:13]: OnUpdatePurchaseStateComplete    
[00:00:16]:     Load FE    
[00:00:17]:     Load FE: done    
[00:00:17]: OnLoadPermissionList: APP:Klei//DoNotStarveTogether/client_save/blocklist.txt (Failure)
[00:00:17]: OnLoadPermissionList: APP:Klei//DoNotStarveTogether/client_save/adminlist.txt (Failure)
[00:00:17]: OnLoadUserIdList: APP:Klei//DoNotStarveTogether/client_save/whitelist.txt (Failure)
[00:00:17]: SimLuaProxy::QueryServer()
[00:00:17]: ModIndex: Load sequence finished successfully.    
[00:00:17]: Reset() returning
[00:00:29]: [Steam] Auth Session Ticket requested...
[00:00:29]: [Steam] Got Auth Session Ticket
[00:00:30]: [200] Account Communication Success (3)
[00:00:30]: loaded inventory_cache
[00:00:30]: Logging in as KU_gggRLBeh
[00:00:31]: loaded inventory_cache
[00:00:32]: SimLuaProxy::QueryServer()
[00:00:50]:    EResult 15, 369588618
[00:00:50]: Failed getting mod details.
[00:00:56]: DownloadPublishedFileV2()
[00:00:56]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 369588618
[00:01:12]: QueryStats: { "req":"modrank", "field":"Session.Loads.Mods.list", "fieldop":"unwind", "linkpref":"external", "limit": 20}
[00:01:13]: 27    
[00:01:13]: 27    
[00:01:13]: ../mods/workshop-763290344/modicon.tex is 768x768 but compressed textures must have power of 2 dimensions.
[00:01:13]: ../mods/workshop-622471256/modicon.tex is 120x104 but compressed textures must have power of 2 dimensions.
[00:01:13]: ../mods/workshop-837215354/ICON.tex is 100x100 but compressed textures must have power of 2 dimensions.
[00:01:13]: ../mods/workshop-758921911/mod_icon.tex is 320x320 but compressed textures must have power of 2 dimensions.
[00:01:13]: ../mods/workshop-585654889/modicon.tex is 200x200 but compressed textures must have power of 2 dimensions.
[00:01:13]: ../mods/workshop-741378506/AC.tex is 500x500 but compressed textures must have power of 2 dimensions.
[00:01:27]:    EResult 15, 369588618
[00:01:27]: Failed getting mod details.
[00:01:33]: DownloadPublishedFileV2()
[00:01:33]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 369588618
[00:01:33]: DownloadPublishedFileV2()
[00:01:33]: OnDownloadPublishedFileResultV2 
[00:01:33]:    EResult 1, 87100591323859423
[00:01:33]:    245850, 8531252, [mod_publish_data_file.zip], 76561198020318078
[00:01:33]: DownloadPublishedFileV2()
[00:01:33]: THREAD - started 'cUnpackModThread' (1840)
[00:01:33]: OnDownloadPublishedFileResultV2 
[00:01:33]:    EResult 1, 169291662478251225
[00:01:33]:    245850, 466680, [mod_publish_data_file.zip], 76561198045147700
[00:01:33]: DownloadPublishedFileV2()
[00:01:33]: THREAD - started 'cUnpackModThread' (9944)
[00:01:34]: OnDownloadPublishedFileResultV2 
[00:01:34]:    EResult 1, 156906385556094456
[00:01:34]:    245850, 26383954, [mod_publish_data_file.zip], 76561198067490017
[00:01:34]: THREAD - started 'cUnpackModThread' (748)
[00:01:35]: cWorkshopMod::UnzipMod ../mods/workshop-678656172
[00:01:39]: cWorkshopMod::UnzipMod ../mods/workshop-758789422
[00:01:41]: cWorkshopMod::UnzipMod ../mods/workshop-700236083
[00:02:00]:    EResult 15, 369588618
[00:02:00]: Failed getting mod details.
[00:02:06]: DownloadPublishedFileV2()
[00:02:06]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 369588618
[00:02:23]:    EResult 15, 369588618
[00:02:23]: Failed getting mod details.
[00:02:30]: DownloadPublishedFileV2()
[00:02:30]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 369588618
[00:02:50]:    EResult 15, 369588618
[00:02:50]: Failed getting mod details.
[00:02:56]: DownloadPublishedFileV2()
[00:02:56]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 369588618
[00:02:57]: QueryStats: { "req":"modrank", "field":"Session.Loads.Mods.list", "fieldop":"unwind", "linkpref":"external", "limit": 20}
[00:02:58]: 27    
[00:02:58]: 27    
[00:02:58]: ../mods/workshop-763290344/modicon.tex is 768x768 but compressed textures must have power of 2 dimensions.
[00:02:58]: ../mods/workshop-741378506/AC.tex is 500x500 but compressed textures must have power of 2 dimensions.
[00:02:58]: ../mods/workshop-758921911/mod_icon.tex is 320x320 but compressed textures must have power of 2 dimensions.
[00:02:58]: ../mods/workshop-837215354/ICON.tex is 100x100 but compressed textures must have power of 2 dimensions.
[00:02:58]: ../mods/workshop-622471256/modicon.tex is 120x104 but compressed textures must have power of 2 dimensions.
[00:02:58]: ../mods/workshop-585654889/modicon.tex is 200x200 but compressed textures must have power of 2 dimensions.
[00:03:03]: Collecting garbage...
[00:03:03]: lua_gc took 0.06 seconds
[00:03:03]: ~ShardLuaProxy()
[00:03:03]: ~ItemServerLuaProxy()
[00:03:03]: ~InventoryLuaProxy()
[00:03:03]: ~NetworkLuaProxy()
[00:03:03]: ~SimLuaProxy()
[00:03:03]: ModWorkshop::CancelDownloads clearing all unfinished downloads
[00:03:03]: lua_close took 0.07 seconds
[00:03:03]: ReleaseAll
[00:03:03]: ReleaseAll Finished
[00:03:03]: cGame::StartPlaying
[00:03:04]: LOADING LUA
[00:03:04]: DoLuaFile scripts/main.lua
[00:03:04]: DoLuaFile loading buffer scripts/main.lua
[00:03:04]: running main.lua
    
[00:03:04]: loaded modindex    
[00:03:04]: WARNING: icon paths for mod workshop-478005098 (Craftable Gears) are not valid. Got icon_atlas="modicon.xml" and icon="modicon.tex".
Please ensure that these point to valid files in your mod folder, or else comment out those lines from your modinfo.lua.    
[00:03:04]: ModIndex: Beginning normal load sequence.
    
[00:03:05]: ModIndex:GetModsToLoad inserting moddir,     workshop-352373173    
[00:03:05]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:03:05]: ModIndex:GetModsToLoad inserting moddir,     workshop-880465230    
[00:03:05]: Could not load mod_config_data/modconfiguration_workshop-352373173    
[00:03:05]: Loading mod: workshop-352373173 (Gesture Wheel) Version:1.6.3    
[00:03:05]: Could not load mod_config_data/modconfiguration_workshop-376333686    
[00:03:05]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.18    
[00:03:05]: Could not load mod_config_data/modconfiguration_workshop-880465230    
[00:03:05]: Loading mod: workshop-880465230 (Mods In Menu) Version:1.4    
[00:03:05]: Mod: workshop-880465230 (Mods In Menu)    Loading modworldgenmain.lua    
[00:03:05]: Mod: workshop-880465230 (Mods In Menu)      Mod had no modworldgenmain.lua. Skipping.    
[00:03:05]: Mod: workshop-880465230 (Mods In Menu)    Loading modmain.lua    
[00:03:05]: ModIndex:GetModsToLoad inserting moddir,     workshop-352373173    
[00:03:05]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:03:05]: ModIndex:GetModsToLoad inserting moddir,     workshop-880465230    
[00:03:05]: Mod: workshop-376333686 (Combined Status)    Loading modworldgenmain.lua    
[00:03:05]: Mod: workshop-376333686 (Combined Status)      Mod had no modworldgenmain.lua. Skipping.    
[00:03:05]: Mod: workshop-376333686 (Combined Status)    Loading modmain.lua    
[00:03:05]: ModIndex:GetModsToLoad inserting moddir,     workshop-352373173    
[00:03:05]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:03:05]: ModIndex:GetModsToLoad inserting moddir,     workshop-880465230    
[00:03:05]: Mod: workshop-352373173 (Gesture Wheel)    Loading modworldgenmain.lua    
[00:03:05]: Mod: workshop-352373173 (Gesture Wheel)      Mod had no modworldgenmain.lua. Skipping.    
[00:03:05]: Mod: workshop-352373173 (Gesture Wheel)    Loading modmain.lua    
[00:03:05]: ModIndex:GetModsToLoad inserting moddir,     workshop-352373173    
[00:03:05]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:03:05]: ModIndex:GetModsToLoad inserting moddir,     workshop-880465230    
[00:03:05]: LOADING LUA SUCCESS
[00:03:05]: PlayerDeaths loaded morgue    1342    
[00:03:05]: PlayerHistory loaded player_history    855    
[00:03:05]: bloom_enabled    false    
[00:03:05]: loaded saveindex    
[00:03:05]: OnFilesLoaded()    
[00:03:05]: OnUpdatePurchaseStateComplete    
[00:03:05]:     Unload BE    
[00:03:05]:     Unload BE done    
[00:03:05]: Could not unload undefined prefab 0x79922e (cane_ancient_fx1)
[00:03:05]: Could not unload undefined prefab 0x79922f (cane_ancient_fx2)
[00:03:05]: Could not unload undefined prefab 0x799230 (cane_ancient_fx3)
[00:03:05]: Could not unload undefined prefab 0x5ce87c8b (torchfire_rag)
[00:03:05]: Could not unload undefined prefab 0x303eb17b (strawhat_floppy)
[00:03:05]: Could not unload undefined prefab 0x57918ac2 (wendy_none)
[00:03:05]: Could not unload undefined prefab 0x451aaca5 (wendy_lureplant)
[00:03:05]: Could not unload undefined prefab 0x2974098a (wendy_shadow)
[00:03:05]: Could not unload undefined prefab 0x6a7b4c20 (wendy_survivor)
[00:03:05]: Could not unload undefined prefab 0x53c51cd7 (dragonling_winter_builder)
[00:03:05]: Could not unload undefined prefab 0x37305d7f (dragonling_wyvern_builder)
[00:03:05]: Could not unload undefined prefab 0x399804b (hat_chester_costume)
[00:03:05]: Could not unload undefined prefab 0x4ce85c84 (tophat_festive_bell_red_firehound)
[00:03:05]: Could not unload undefined prefab 0x44565b2b (glomling_winter)
[00:03:05]: Could not unload undefined prefab 0x1950012c (backpack_basic_blue_catcoon)
[00:03:05]: Could not unload undefined prefab 0x2410fefc (backpack_deerclops)
[00:03:05]: Could not unload undefined prefab 0x39a71db2 (backpack_mandrake)
[00:03:05]: Could not unload undefined prefab 0x116a891d (backpack_mushy)
[00:03:05]: Could not unload undefined prefab 0x12d1229f (backpack_poop)
[00:03:05]: Could not unload undefined prefab 0x4c838081 (backpack_smallbird)
[00:03:05]: Could not unload undefined prefab 0x3070c0a4 (backpack_spider)
[00:03:05]: Could not unload undefined prefab 0x3f31bff0 (wathgrithr_formal)
[00:03:05]: Could not unload undefined prefab 0x68a7b261 (wathgrithr_shadow)
[00:03:05]: Could not unload undefined prefab 0x6439f977 (wathgrithr_survivor)
[00:03:05]: Could not unload undefined prefab 0x3ee0adf6 (lamb_winter_builder)
[00:03:05]: Could not unload undefined prefab 0x352b2e1b (dragonling_winter)
[00:03:05]: Could not unload undefined prefab 0x31c7ae78 (glomling_beardeddragon_builder)
[00:03:05]: Could not unload undefined prefab 0x4f229e7 (glomling_winter_builder)
[00:03:05]: Could not unload undefined prefab 0x26f06814 (endtable_dragonfly)
[00:03:05]: Could not unload undefined prefab 0x1f7d0c5a (endtable_vintage)
[00:03:05]: Could not unload undefined prefab 0x1f0cf1ad (wes_mandrake)
[00:03:05]: Could not unload undefined prefab 0x33bfe130 (wes_survivor)
[00:03:05]: Could not unload undefined prefab 0x1159f73 (webber_formal)
[00:03:05]: Could not unload undefined prefab 0x2a8b91e4 (webber_shadow)
[00:03:05]: Could not unload undefined prefab 0x37af843b (willow_survivor)
[00:03:05]: Could not unload undefined prefab 0x11d691b2 (waxwell_formal)
[00:03:05]: Could not unload undefined prefab 0x17dc3527 (catcoonhat_trapperup_rooster)
[00:03:05]: Could not unload undefined prefab 0x3082b789 (wolfgang_formal)
[00:03:05]: Could not unload undefined prefab 0x59f8a9fa (wolfgang_shadow)
[00:03:05]: Could not unload undefined prefab 0x211a4045 (woodie_formal)
[00:03:05]: Could not unload undefined prefab 0x4a9032b6 (woodie_shadow)
[00:03:05]: Could not unload undefined prefab 0x3bd9f4c (woodie_survivor)
[00:03:05]: Could not unload undefined prefab 0x5e75e351 (woodie_treeguard)
[00:03:05]: Could not unload undefined prefab 0x44873d17 (reviver_cupid)
[00:03:05]: Could not unload undefined prefab 0x58316f36 (winterhat_pink_hibiscus)
[00:03:05]: Could not unload undefined prefab 0x5763b33d (wilson_survivor)
[00:03:05]: Could not unload undefined prefab 0x6f8359c (wickerbottom_formal)
[00:03:05]: Could not unload undefined prefab 0x306e280d (wickerbottom_shadow)
[00:03:05]: Could not unload undefined prefab 0x2c3b5783 (birdcage_pirate)
[00:03:05]: Could not unload undefined prefab 0x56f121b0 (treasurechest_carpetbag)
[00:03:05]: Could not unload undefined prefab 0x4821be21 (treasurechest_posh)
[00:03:05]: Could not unload undefined prefab 0x4dbe6ea4 (treasurechest_steamertrunk)
[00:03:05]: Could not unload undefined prefab 0x1d3ad72d (treasurechest_traveltrunk)
[00:03:05]: Could not unload undefined prefab 0x63300a15 (torch_rag)
[00:03:05]: Could not unload undefined prefab 0x222dd5a3 (torch_shadow)
[00:03:05]: Could not unload undefined prefab 0x33f0c46d (torch_shadow_alt)
[00:03:05]: Could not unload undefined prefab 0x1db827b8 (torchfire_spooky)
[00:03:05]: Could not unload undefined prefab 0x2ac4be2e (cane_ancient)
[00:03:05]: Could not unload undefined prefab 0x2cdbf490 (wx78_rhinorook)
[00:03:05]: Could not unload undefined prefab 0x5ad3db3 (wx78_survivor)
[00:03:05]: Could not unload undefined prefab 0x20331a8d (firepit_fanged)
[00:03:05]: Could not unload undefined prefab 0x1d79c25a (firepit_hole)
[00:03:05]: Could not unload undefined prefab 0x440c36a4 (firepit_stonehenge)
[00:03:05]: Could not unload undefined prefab 0x436fb359 (kitten_winter_builder)
[00:03:09]: Mod: workshop-880465230 (Mods In Menu)    Registering prefabs    
[00:03:09]: Mod: workshop-880465230 (Mods In Menu)      Registering default mod prefab    
[00:03:10]: Mod: workshop-376333686 (Combined Status)    Registering prefabs    
[00:03:10]: Mod: workshop-376333686 (Combined Status)      Registering default mod prefab    
[00:03:10]: Mod: workshop-352373173 (Gesture Wheel)    Registering prefabs    
[00:03:10]: Mod: workshop-352373173 (Gesture Wheel)      Registering default mod prefab    
[00:03:10]:     Load FE    
[00:03:12]:     Load FE: done    
[00:03:12]: OnLoadPermissionList: APP:Klei//DoNotStarveTogether/client_save/blocklist.txt (Failure)
[00:03:12]: OnLoadPermissionList: APP:Klei//DoNotStarveTogether/client_save/adminlist.txt (Failure)
[00:03:12]: OnLoadUserIdList: APP:Klei//DoNotStarveTogether/client_save/whitelist.txt (Failure)
[00:03:12]: SimLuaProxy::QueryServer()
[00:03:12]: ModIndex: Load sequence finished successfully.    
[00:03:12]: Reset() returning
[00:03:59]: [200] Account Communication Success (6)
[00:03:59]: Received (KU_gggRLBeh) from TokenPurpose
[00:03:59]: [Steam] Auth Session Ticket requested...
[00:03:59]: loaded inventory_cache
[00:03:59]: [Steam] Got Auth Session Ticket
[00:04:00]: loaded inventory_cache
[00:04:01]: SimLuaProxy::QueryServer()
[00:04:15]:    EResult 15, 369588618
[00:04:15]: Failed getting mod details.
[00:04:20]: QueryStats: { "req":"modrank", "field":"Session.Loads.Mods.list", "fieldop":"unwind", "linkpref":"external", "limit": 20}
[00:04:20]: Frontend-Unloading mod 'all'.    
[00:04:20]: loaded mod_config_data/modconfiguration_workshop-375859599    
[00:04:21]: FrontendLoadMod    workshop-375859599    
[00:04:21]: loaded mod_config_data/modconfiguration_workshop-375859599    
[00:04:21]: Fontend-Loading mod: workshop-375859599 (Health Info) Version:2.1.5    
[00:04:21]: Mod: workshop-375859599 (Health Info)    Loading modworldgenmain.lua    
[00:04:21]: Mod: workshop-375859599 (Health Info)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:21]: FrontendLoadMod    xavierwep-unfinished    
[00:04:21]: Could not load mod_config_data/modconfiguration_xavierwep-unfinished    
[00:04:21]: Fontend-Loading mod: xavierwep-unfinished (Xavier the Sentient Sword) Version:2.0    
[00:04:21]: Mod: xavierwep-unfinished (Xavier the Sentient Sword)    Loading modworldgenmain.lua    
[00:04:21]: Mod: xavierwep-unfinished (Xavier the Sentient Sword)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:22]: ../mods/workshop-763290344/modicon.tex is 768x768 but compressed textures must have power of 2 dimensions.
[00:04:22]: ../mods/workshop-741378506/AC.tex is 500x500 but compressed textures must have power of 2 dimensions.
[00:04:22]: ../mods/workshop-758921911/mod_icon.tex is 320x320 but compressed textures must have power of 2 dimensions.
[00:04:22]: ../mods/workshop-837215354/ICON.tex is 100x100 but compressed textures must have power of 2 dimensions.
[00:04:22]: ../mods/workshop-622471256/modicon.tex is 120x104 but compressed textures must have power of 2 dimensions.
[00:04:22]: ../mods/workshop-585654889/modicon.tex is 200x200 but compressed textures must have power of 2 dimensions.
[00:04:23]: DownloadPublishedFileV2()
[00:04:23]: Did not find the ugc handle in the cache. This is likely because you're subscribed to a non-existent file 369588618
[00:04:35]: loaded mod_config_data/modconfiguration_workshop-375859599    
[00:04:35]: Could not load mod_config_data/modconfiguration_xavierwep-unfinished    
[00:04:35]: Network tick rate: U=15(2), D=0
[00:04:35]: ModWorkshop::CancelDownloads clearing all unfinished downloads
[00:04:35]: About to start a server with the following settings:
[00:04:35]:   Dedicated: false
[00:04:35]:   Online: true
[00:04:35]:   Passworded: false
[00:04:35]:   ServerPort: 10999
[00:04:35]:   SteamAuthPort: 8766
[00:04:35]:   SteamMasterServerPort: 27016
[00:04:35]:   ClanID: false
[00:04:35]:   ClanOnly: false
[00:04:35]:   ClanAdmin: false
[00:04:35]:   LanOnly: true
[00:04:35]:   FriendsOnly: false
[00:04:35]:   EnableAutosaver: true
[00:04:35]:   PVP: false
[00:04:35]:   MaxPlayers: 6
[00:04:35]:   GameMode: endless
[00:04:35]:   OverridenDNS: 
[00:04:35]:   PauseWhenEmpty: true
[00:04:35]:   VoteEnabled: false
[00:04:35]:   InternetBroadcasting: true
[00:04:35]:   Intent: social
[00:04:35]: [Warning] Could not confirm port 10999 is open in the firewall. 
[00:04:35]: loaded mod_config_data/modconfiguration_workshop-375859599    
[00:04:35]: Could not load mod_config_data/modconfiguration_xavierwep-unfinished    
[00:04:35]: Online Server Started on port: 10999
[00:04:37]: unloading prefabs for mod MOD_workshop-880465230    
[00:04:37]: unloading prefabs for mod MOD_workshop-376333686    
[00:04:37]: unloading prefabs for mod MOD_workshop-352373173    
[00:04:37]: Collecting garbage...
[00:04:37]: lua_gc took 0.06 seconds
[00:04:37]: ~ShardLuaProxy()
[00:04:37]: ~ItemServerLuaProxy()
[00:04:37]: ~InventoryLuaProxy()
[00:04:37]: ~NetworkLuaProxy()
[00:04:37]: ~SimLuaProxy()
[00:04:37]: ModWorkshop::CancelDownloads clearing all unfinished downloads
[00:04:37]: lua_close took 0.08 seconds
[00:04:37]: ReleaseAll
[00:04:37]: ReleaseAll Finished
[00:04:37]: cGame::StartPlaying
[00:04:37]: LOADING LUA
[00:04:37]: DoLuaFile scripts/main.lua
[00:04:37]: DoLuaFile loading buffer scripts/main.lua
[00:04:38]: running main.lua
    
[00:04:38]: loaded modindex    
[00:04:38]: WARNING: icon paths for mod workshop-478005098 (Craftable Gears) are not valid. Got icon_atlas="modicon.xml" and icon="modicon.tex".
Please ensure that these point to valid files in your mod folder, or else comment out those lines from your modinfo.lua.    
[00:04:38]: ModIndex: Beginning normal load sequence.
    
[00:04:38]: ModIndex:GetModsToLoad inserting moddir,     workshop-352373173    
[00:04:38]: ModIndex:GetModsToLoad inserting moddir,     workshop-375859599    
[00:04:38]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:04:38]: ModIndex:GetModsToLoad inserting moddir,     workshop-880465230    
[00:04:38]: ModIndex:GetModsToLoad inserting moddir,     xavierwep-unfinished    
[00:04:38]: Could not load mod_config_data/modconfiguration_workshop-352373173    
[00:04:38]: Loading mod: workshop-352373173 (Gesture Wheel) Version:1.6.3    
[00:04:38]: loaded mod_config_data/modconfiguration_workshop-375859599    
[00:04:38]: Loading mod: workshop-375859599 (Health Info) Version:2.1.5    
[00:04:38]: Could not load mod_config_data/modconfiguration_workshop-376333686    
[00:04:38]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.18    
[00:04:38]: Could not load mod_config_data/modconfiguration_workshop-880465230    
[00:04:38]: Loading mod: workshop-880465230 (Mods In Menu) Version:1.4    
[00:04:38]: Could not load mod_config_data/modconfiguration_xavierwep-unfinished    
[00:04:38]: Loading mod: xavierwep-unfinished (Xavier the Sentient Sword) Version:2.0    
[00:04:38]: Mod: workshop-880465230 (Mods In Menu)    Loading modworldgenmain.lua    
[00:04:38]: Mod: workshop-880465230 (Mods In Menu)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:38]: Mod: workshop-880465230 (Mods In Menu)    Loading modmain.lua    
[00:04:38]: ModIndex:GetModsToLoad inserting moddir,     workshop-352373173    
[00:04:38]: ModIndex:GetModsToLoad inserting moddir,     workshop-375859599    
[00:04:38]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:04:38]: ModIndex:GetModsToLoad inserting moddir,     workshop-880465230    
[00:04:38]: ModIndex:GetModsToLoad inserting moddir,     xavierwep-unfinished    
[00:04:39]: Mod: workshop-375859599 (Health Info)    Loading modworldgenmain.lua    
[00:04:39]: Mod: workshop-375859599 (Health Info)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:39]: Mod: workshop-375859599 (Health Info)    Loading modmain.lua    
[00:04:39]: modimport: ../mods/workshop-375859599/black_white_lists.lua    
[00:04:39]: Mod: xavierwep-unfinished (Xavier the Sentient Sword)    Loading modworldgenmain.lua    
[00:04:39]: Mod: xavierwep-unfinished (Xavier the Sentient Sword)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:39]: Mod: xavierwep-unfinished (Xavier the Sentient Sword)    Loading modmain.lua    
[00:04:39]: modimport: ../mods/xavierwep-unfinished/scripts/strings/speech_xavierwep.lua    
[00:04:39]: Mod: workshop-376333686 (Combined Status)    Loading modworldgenmain.lua    
[00:04:39]: Mod: workshop-376333686 (Combined Status)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:39]: Mod: workshop-376333686 (Combined Status)    Loading modmain.lua    
[00:04:39]: ModIndex:GetModsToLoad inserting moddir,     workshop-352373173    
[00:04:39]: ModIndex:GetModsToLoad inserting moddir,     workshop-375859599    
[00:04:39]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:04:39]: ModIndex:GetModsToLoad inserting moddir,     workshop-880465230    
[00:04:39]: ModIndex:GetModsToLoad inserting moddir,     xavierwep-unfinished    
[00:04:39]: Mod: workshop-352373173 (Gesture Wheel)    Loading modworldgenmain.lua    
[00:04:39]: Mod: workshop-352373173 (Gesture Wheel)      Mod had no modworldgenmain.lua. Skipping.    
[00:04:39]: Mod: workshop-352373173 (Gesture Wheel)    Loading modmain.lua    
[00:04:39]: ModIndex:GetModsToLoad inserting moddir,     workshop-352373173    
[00:04:39]: ModIndex:GetModsToLoad inserting moddir,     workshop-375859599    
[00:04:39]: ModIndex:GetModsToLoad inserting moddir,     workshop-376333686    
[00:04:39]: ModIndex:GetModsToLoad inserting moddir,     workshop-880465230    
[00:04:39]: ModIndex:GetModsToLoad inserting moddir,     xavierwep-unfinished    
[00:04:39]: LOADING LUA SUCCESS
[00:04:39]: PlayerDeaths loaded morgue    1342    
[00:04:39]: PlayerHistory loaded player_history    855    
[00:04:39]: bloom_enabled    false    
[00:04:39]: loaded saveindex    
[00:04:39]: OnFilesLoaded()    
[00:04:39]: OnUpdatePurchaseStateComplete    
[00:04:39]:     Unload FE    
[00:04:39]:     Unload FE done    
[00:04:43]: Mod: workshop-880465230 (Mods In Menu)    Registering prefabs    
[00:04:43]: Mod: workshop-880465230 (Mods In Menu)      Registering default mod prefab    
[00:04:44]: Mod: workshop-375859599 (Health Info)    Registering prefabs    
[00:04:44]: Mod: workshop-375859599 (Health Info)      Registering default mod prefab    
[00:04:44]: Mod: xavierwep-unfinished (Xavier the Sentient Sword)    Registering prefabs    
[00:04:44]: Mod: xavierwep-unfinished (Xavier the Sentient Sword)      Registering prefab file: prefabs/xavierwep    
[00:04:44]: Mod: xavierwep-unfinished (Xavier the Sentient Sword)        xavierwep    
[00:04:44]: Mod: xavierwep-unfinished (Xavier the Sentient Sword)      Registering default mod prefab    
[00:04:44]: Mod: workshop-376333686 (Combined Status)    Registering prefabs    
[00:04:44]: Mod: workshop-376333686 (Combined Status)      Registering default mod prefab    
[00:04:44]: Mod: workshop-352373173 (Gesture Wheel)    Registering prefabs    
[00:04:44]: Mod: workshop-352373173 (Gesture Wheel)      Registering default mod prefab    
[00:04:44]:     LOAD BE    
[00:04:49]:     LOAD BE: done    
[00:04:50]: Loading world: session/194D5021ADCA40D7/0000000003    
[00:04:50]: Save file is at version 4.77    
[00:04:50]: Begin Session: 194D5021ADCA40D7
[00:04:50]: saving to server_temp/server_save    
[00:04:50]: MiniMapComponent::AddAtlas( minimap/minimap_data.xml )
[00:04:52]: Loading Nav Grid    
[00:04:52]: setting     summerlength    15    
[00:04:52]: setting     isnightmaredawn    false    
[00:04:52]: setting     elapseddaysinseason    0    
[00:04:52]: setting     isfullmoon    false    
[00:04:52]: setting     moisture    16.799829483032    
[00:04:52]: setting     springlength    20    
[00:04:52]: setting     isnightmarewild    false    
[00:04:52]: setting     moonphase    new    
[00:04:52]: setting     precipitationrate    0    
[00:04:52]: setting     iswet    false    
[00:04:52]: setting     isnewmoon    false    
[00:04:52]: setting     iswinter    false    
[00:04:52]: setting     israining    false    
[00:04:52]: setting     isnightmarewarn    false    
[00:04:52]: setting     precipitation    none    
[00:04:52]: setting     cavephase    day    
[00:04:52]: setting     moistureceil    916.84436035156    
[00:04:52]: setting     isday    true    
[00:04:52]: setting     iscaveday    true    
[00:04:52]: setting     season    autumn    
[00:04:52]: setting     timeinphase    0.28005981445313    
[00:04:52]: setting     temperature    32.815203059732    
[00:04:52]: setting     isnightmarecalm    false    
[00:04:52]: setting     isnight    false    
[00:04:52]: setting     isdusk    false    
[00:04:52]: setting     iscavedusk    false    
[00:04:52]: setting     isautumn    true    
[00:04:52]: setting     issnowing    false    
[00:04:52]: setting     iswaxingmoon    true    
[00:04:52]: setting     pop    0.0183235347345    
[00:04:52]: setting     snowlevel    0    
[00:04:52]: setting     issnowcovered    false    
[00:04:52]: setting     autumnlength    20    
[00:04:52]: setting     phase    day    
[00:04:52]: setting     nightmaretime    0    
[00:04:52]: setting     winterlength    15    
[00:04:52]: setting     isspring    false    
[00:04:52]: setting     nightmarephase    none    
[00:04:52]: setting     remainingdaysinseason    20    
[00:04:52]: setting     cycles    0    
[00:04:52]: setting     iscavenight    false    
[00:04:52]: setting     nightmaretimeinphase    0    
[00:04:52]: setting     wetness    0    
[00:04:52]: setting     time    0.14002990722656    
[00:04:52]: setting     issummer    false    
[00:05:09]: Reconstructing topology    
[00:05:09]:     ...Sorting points    
[00:05:09]:     ...Sorting edges    
[00:05:09]:     ...Connecting nodes    
[00:05:09]:     ...Validating connections    
[00:05:09]:     ...Housekeeping    
[00:05:09]:     ...Done!    
[00:05:09]: 1 uploads added to server. From server_temp
[00:05:09]: Telling Client our new session identifier: 194D5021ADCA40D7
[00:05:09]: ModIndex: Load sequence finished successfully.    
[00:05:09]: Reset() returning
[00:05:11]: Validating portal[8] <-> <nil>[8] (inactive)    
[00:05:11]: Attempting to send resume request
[00:05:11]: Resuming user: session/194D5021ADCA40D7/KU_gggRLBeh_/0000000003
[00:05:11]: Spawning player at: [Load] (272.95, 0.00, -214.28)    
[00:05:11]: ReceiveResumeNotification
[00:05:11]: Validating portal[9] <-> <nil>[9] (inactive)    
[00:05:11]: Validating portal[6] <-> <nil>[6] (inactive)    
[00:05:11]: Validating portal[10] <-> <nil>[10] (inactive)    
[00:05:11]: Validating portal[3] <-> <nil>[3] (inactive)    
[00:05:11]: Validating portal[5] <-> <nil>[5] (inactive)    
[00:05:11]: Validating portal[1] <-> <nil>[1] (inactive)    
[00:05:11]: Validating portal[2] <-> <nil>[2] (inactive)    
[00:05:11]: Validating portal[4] <-> <nil>[4] (inactive)    
[00:05:11]: Validating portal[7] <-> <nil>[7] (inactive)    
[00:05:12]: Deserializing tile data (425 x 425)
[00:05:27]: [string "../mods/xavierwep-unfinished/scripts/prefab..."]:87: attempt to index field 'inventory' (a nil value)
LUA ERROR stack traceback:
../mods/xavierwep-unfinished/scripts/prefabs/xavierwep.lua:87 in (field) fn (Lua) <87-87>
scripts/scheduler.lua:177 in (method) OnTick (Lua) <155-207>
   self =
      running = table: 0DABA480
      waitingfortick = table: 0DAB9DF0
      tasks = table: 0DAB9DA0
      waking = table: 78452560
      attime = table: 0DABA2C8
      hibernating = table: 0DABA458
   tick = 439
   k = PERIODIC 107740: 0.000000
   v = true
   already_dead = false
scripts/scheduler.lua:371 in (global) RunScheduler (Lua) <369-377>
   tick = 439
scripts/update.lua:170 in () ? (Lua) <149-228>
   dt = 0.033333335071802
   tick = 439
   i = 439

[00:05:27]: [string "../mods/xavierwep-unfinished/scripts/prefab..."]:87: attempt to index field 'inventory' (a nil value)
LUA ERROR stack traceback:
    ../mods/xavierwep-unfinished/scripts/prefabs/xavierwep.lua:87 in (field) fn (Lua) <87-87>
    scripts/scheduler.lua:177 in (method) OnTick (Lua) <155-207>
    scripts/scheduler.lua:371 in (global) RunScheduler (Lua) <369-377>
    scripts/update.lua:170 in () ? (Lua) <149-228>
    
[00:05:27]: Force aborting...
[00:05:27]: unloading prefabs for mod MOD_workshop-880465230    
[00:05:27]: unloading prefabs for mod MOD_workshop-375859599    
[00:05:27]: unloading prefabs for mod MOD_xavierwep-unfinished    
[00:05:27]: unloading prefabs for mod MOD_workshop-376333686    
[00:05:27]: unloading prefabs for mod MOD_workshop-352373173    
[00:05:27]: ModWorkshop::CancelDownloads clearing all unfinished downloads
[00:05:27]: Collecting garbage...
[00:05:28]: lua_gc took 0.23 seconds
[00:05:28]: ~ShardLuaProxy()
[00:05:28]: ~ItemServerLuaProxy()
[00:05:28]: ~InventoryLuaProxy()
[00:05:28]: ~NetworkLuaProxy()
[00:05:28]: ~SimLuaProxy()
[00:05:28]: Cancelling LuaQueryCallback handle [15]
[00:05:28]: Cancelling LuaQueryCallback handle [16]
[00:05:28]: ModWorkshop::CancelDownloads clearing all unfinished downloads
[00:05:28]: lua_close took 0.50 seconds
[00:05:29]: ModWorkshop::CancelDownloads clearing all unfinished downloads
[00:05:29]: [Steam] Auth ticket cancelled
[00:05:29]:  Manager - ORPHANED UNKNOWN RESOURCES:
[00:05:29]: shaders/ui_yuv.ksh - 1
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: Orphaned unnamed resource. This resource must have used Add( resource ) to insert itself into the manager. 
[00:05:29]: CurlRequestManager::ClientThread::Main() complete
[00:05:29]: HttpClient2 discarded 0 callbacks.
[00:05:29]: Shutting down
 

 

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...