Jajangmon Posted July 11, 2018 Share Posted July 11, 2018 (edited) Hello~ I need your help. please help me to fix it. If you help me to fix this problem I will soooooo happy I'm trying to make a my custom character's special hat. but it's crashing over and over... even with out msg. So, I don't know what is worng x( 1. I made my custom character:Clala and it worked well 2. I wanted to make a hat for her so I fixed "modmain" here's my mods modmain Spoiler GetPlayer = GLOBAL.GetPlayer PrefabFiles = { "clala", "clala_none", "clalahat", } Assets = { Asset( "IMAGE", "images/saveslot_portraits/clala.tex" ), Asset( "ATLAS", "images/saveslot_portraits/clala.xml" ), Asset( "IMAGE", "images/selectscreen_portraits/clala.tex" ), Asset( "ATLAS", "images/selectscreen_portraits/clala.xml" ), Asset( "IMAGE", "images/selectscreen_portraits/clala_silho.tex" ), Asset( "ATLAS", "images/selectscreen_portraits/clala_silho.xml" ), Asset( "IMAGE", "bigportraits/clala.tex" ), Asset( "ATLAS", "bigportraits/clala.xml" ), Asset( "IMAGE", "images/map_icons/clala.tex" ), Asset( "ATLAS", "images/map_icons/clala.xml" ), Asset( "IMAGE", "images/avatars/avatar_clala.tex" ), Asset( "ATLAS", "images/avatars/avatar_clala.xml" ), Asset( "IMAGE", "images/avatars/avatar_ghost_clala.tex" ), Asset( "ATLAS", "images/avatars/avatar_ghost_clala.xml" ), Asset( "IMAGE", "images/avatars/self_inspect_clala.tex" ), Asset( "ATLAS", "images/avatars/self_inspect_clala.xml" ), Asset( "IMAGE", "images/names_clala.tex" ), Asset( "ATLAS", "images/names_clala.xml" ), Asset( "IMAGE", "bigportraits/clala_none.tex" ), Asset( "ATLAS", "bigportraits/clala_none.xml" ), } local require = GLOBAL.require local STRINGS = GLOBAL.STRINGS local Ingredient = GLOBAL.Ingredient local RECIPETABS = GLOBAL.RECIPETABS local TECH = GLOBAL.TECH local resolvefilepath = GLOBAL.resolvefilepath local TUNING = GLOBAL.TUNING --get sanitynear local function CalcSanityAura(inst, observer) if observer.prefab == "clala" then return TUNING.SANITYAURA_SMALL else return 0 end end function AddSanityAura(inst) inst:AddComponent("sanityaura") inst.components.sanityaura.aurafn = CalcSanityAura end AddPrefabPostInit("flower_evil", AddSanityAura) AddPrefabPostInit("livingtree", AddSanityAura) AddPrefabPostInit("livinglog", AddSanityAura) ---recipe local clalahat_recipe = AddRecipe("clalahat", { Ingredient("petals_evil", 3), Ingredient("charcaol", 1), Ingredient("silk",8)}, RECIPETABS.DRESS, TECH.NONE, nil, nil, nil, nil, "clalacrafter", "images/inventoryimages/clalahat.xml" ) clalahat_recipe.sortkey = 0 -- The character select screen lines STRINGS.CHARACTER_TITLES.clala = "The Living Doll" STRINGS.CHARACTER_NAMES.clala = "Clala" STRINGS.CHARACTER_DESCRIPTIONS.clala = "*Is Cursed" STRINGS.CHARACTER_QUOTES.clala = "\"Come out, come out, wherever you are.\"" -- Custom speech strings STRINGS.CHARACTERS.CLALA = require "speech_clala" -- The character's name as appears in-game STRINGS.NAMES.CLALA = "Clala" STRINGS.NAMES.CLALAHAT = "Clala's bonnet" STRINGS.CHARACTERS.GENERIC.DESCRIBE.CLALAHAT = "What a elegance!" STRINGS.CHARACTERS.CLALA.DESCRIBE.CLALAHAT = "I need this durig daytime." STRINGS.RECIPE_DESC.CLALAHAT = "Make clala likes to play under sunlight." AddMinimapAtlas("images/map_icons/clala.xml") -- Add mod character to mod character list. Also specify a gender. Possible genders are MALE, FEMALE, ROBOT, NEUTRAL, and PLURAL. AddModCharacter("clala", "FEMALE") 3.I added two anim files for hat the name is "clalahat.zip" and "clalahat_swap.zip" 4.I added inventory image the name is "clalahat.tex" and "clalahat.xml" in images/inventoryimages folder 5.I added "clalahat.lua" file in scrips/prefaps Spoiler local assets= { Asset("ANIM", "anim/clalahat.zip"), Asset("ANIM", "anim/clalahat_swap.zip"), Asset("ATLAS", "images/inventoryimages/clalahat.xml"), Asset("IMAGE", "images/inventoryimages/clalahat.tex"), } local prefabs = { } local function OnEquip(inst, owner) owner.AnimState:OverrideSymbol("swap_hat", "clalahat", "swap_hat") if inst.components.fueled then inst.components.fueled:StartConsuming() end onequip(inst, owner) if owner ~= nil and owner.components.sanity ~= nil then owner.components.sanity.neg_aura_absorb = TUNING.ARMOR_HIVEHAT_SANITY_ABSORPTION end owner.AnimState:Show("HAT") owner.AnimState:Show("HAT_HAIR") if owner:HasTag("player") then owner.AnimState:Show("HEAD") owner.AnimState:Hide("HEAD_HAT") end end local function OnUnequip(inst, owner) if inst.components.fueled then inst.components.fueled:StopConsuming() end onunequip(inst, owner) if owner ~= nil and owner.components.sanity ~= nil then owner.components.sanity.neg_aura_absorb = 0 end owner.AnimState:Hide("HAT") owner.AnimState:Hide("HAIR_HAT") owner.AnimState:Show("HAIR_NOHAT") owner.AnimState:Show("HAIR") if owner:HasTag("player") then owner.AnimState:Show("HEAD") owner.AnimState:Hide("HEAD_HAT") end end local function fn(Sim) local inst = CreateEntity() local trans = inst.entity:AddTransform() inst.entity:AddTransform() inst.entity:AddAnimState() inst.entity:AddSoundEmitter() inst.entity:AddNetwork() MakeInventoryPhysics(inst) inst:AddTag("hat") inst:AddTag("flower") if not TheWorld.ismastersim then return inst end inst.entity:SetPristine() inst.AnimState:SetBank("clalahat") inst.AnimState:SetBuild("clalahat") inst.AnimState:PlayAnimation("idle") MakeHauntableLaunch(inst) inst:AddComponent("inspectable") inst:AddComponent("waterproofer") inst.components.waterproofer:SetEffectiveness(TUNING.WATERPROOFNESS_SMALL) inst:AddComponent("inventoryitem") inst.components.inventoryitem.imagename = "clalahat" inst.components.inventoryitem.atlasname = "images/inventoryimages/clalahat.xml" inst:AddComponent("equippable") inst.components.equippable.equipslot = EQUIPSLOTS.HEAD inst.components.equippable:SetOnEquip( OnEquip ) inst.components.equippable:SetOnUnequip( OnUnequip ) inst:AddComponent("fueled") inst.components.fueled.fueltype = FUELTYPE.USAGE inst.components.fueled:InitializeFuelLevel(TUNING.TOPHAT_PERISHTIME * 1) inst.components.fueled:SetDepletedFn(inst.Remove) return inst end return Prefab("common/inventory/clalahat", fn, assets, prefabs) also I wanted this hat has a special perk like a Bee queen crown and water proof little. if you help me to fix this mod I will buy coffee for you! (with your local cafe's internet coupon?) thank you for the read and sorry for my bad English. Hope you understand What I want. Have a good day! Edited October 18, 2018 by Jajangmon Link to comment https://forums.kleientertainment.com/forums/topic/93367-solvedwould-you-help-mecustom-hat-for-custom-character/ Share on other sites More sharing options...
Lumina Posted July 11, 2018 Share Posted July 11, 2018 1 hour ago, jajang said: I'm trying to make a my custom character's special hat. but it's crashing over and over... even with out msg. So, I don't know what is worng x( When you say it's crashing without a message, do you mean : - it's crashing without a message on the screen - it's crashing without a message in the logs ? Here you can find where to find logs if needed. Link to comment https://forums.kleientertainment.com/forums/topic/93367-solvedwould-you-help-mecustom-hat-for-custom-character/#findComment-1062407 Share on other sites More sharing options...
Jajangmon Posted July 13, 2018 Author Share Posted July 13, 2018 ahh I mean It's crashing without message on screen but I wll check the log too! Link to comment https://forums.kleientertainment.com/forums/topic/93367-solvedwould-you-help-mecustom-hat-for-custom-character/#findComment-1063301 Share on other sites More sharing options...
Jajangmon Posted July 14, 2018 Author Share Posted July 14, 2018 Here is client log Spoiler [00:00:00]: System Memory: Memory Load: 26% Available Physical Memory: 11985m/16336m Available Page File: 13915m/18768m Available Virtual Memory: 3949m/4095m Available Extended Virtual Memory: 0m [00:00:00]: Process Memory: Peak Working Set Size: 31m Working Set Size: 31m Quota Peak Page Pool Usage: 263k Quota Page Pool Usage: 259k Quota Peak Non Paged Pool Usage:20k Quota Non Paged Pool Usage: 18k Page File Usage: 6m Peak Page File Usage: 6m [00:00:00]: PersistRootStorage is now APP:Klei//DoNotStarveTogether/ [00:00:00]: Starting Up [00:00:00]: Version: 277561 [00:00:00]: Current time: Sat Jul 14 10:44:38 2018 [00:00:00]: Don't Starve Together: 277561 WIN32_STEAM [00:00:00]: Build Date: 3242 [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:01]: Steam AppBuildID: 2944916 [00:00:01]: ....Done [00:00:01]: Fixing DPI [00:00:01]: ...Done [00:00:01]: THREAD - started 'GAClient' (23420) [00:00:01]: CurlRequestManager::ClientThread::Main() [00:00:01]: Mounting file system databundles/klump.zip successful. [00:00:01]: Mounting file system databundles/shaders.zip successful. [00:00:01]: Mounting file system databundles/fonts.zip successful. [00:00:01]: Mounting file system databundles/anim_dynamic.zip successful. [00:00:01]: Mounting file system databundles/bigportraits.zip successful. [00:00:01]: Mounting file system databundles/images.zip successful. [00:00:01]: Mounting file system databundles/scripts.zip successful. [00:00:04]: Ping measurement completed [00:00:04]: Ping location: tyo=41+4,hkg=70+7,sgp=78+7/79+7,man=98+9,maa=271+27/111+7,sea=126+12/123+4,tuk=166+16/123+4,mwh=152+15/129+4,bom=272+27/129+7,iad=285+28/181+4,fra=257+25/276+4,gru=420+42/315+4 [00:00:23]: ProfileIndex:4.45 [00:00:23]: [Connect] PendingConnection::Reset(true) [00:00:23]: Network tick rate: U=15(2), D=0 [00:00:23]: Authorized application C:\Program Files (x86)\Steam\steamapps\common\Don't Starve Together\bin\dontstarve_steam.exe is enabled in the firewall. [00:00:23]: WindowsFirewall - Application already authorized [00:00:23]: THREAD - started 'StreamInput' (24060) [00:00:23]: loaded ping_cache [00:00:23]: Offline user ID: OU_76561198118518586 [00:00:23]: SteamID: 76561198118518586 [00:00:23]: HardwareStats: OS name Microsoft Windows 10 Pro version 10.0.17134 architecture 64비트 platformSpecific SP 0.0 CPU numCores 4 features SSE,SSE2,SSE3,SSSE3,SSE41,SSE42,AVX name Intel(R) Core(TM) i7-3770K CPU @ 3.50GHz manufacturer GenuineIntel clockSpeed 3501 RAM megsOfRam 16384 GPU name NVIDIA GeForce GTX 660 Ti driverDate 20171027000000.000000-000 megsOfRam 3072 refreshRate 60 videoModeDescription 1920 x 1080 x 4294967296색 driverVersion 23.21.13.8813 [00:00:23]: cGame::InitializeOnMainThread [00:00:23]: WindowManager::Initialize [00:00:23]: CreateWindow: Requesting 1920,1080 - 5/6/5 - -1/-1/-1 - 0 [00:00:24]: CreateEGLContext: 12 configs found [00:00:24]: 0: 8/8/8 - 0/ 0/ 0 - 0 [00:00:24]: 1: 8/8/8 - 0/16/ 0 - 0 [00:00:24]: 2: 8/8/8 - 0/24/ 0 - 0 [00:00:24]: 3: 8/8/8 - 0/24/ 8 - 0 [00:00:24]: 4: 5/5/5 - 0/ 0/ 0 - 0 [00:00:24]: 5: 5/5/5 - 0/16/ 0 - 0 [00:00:24]: 6: 5/5/5 - 0/24/ 0 - 0 [00:00:24]: 7: 5/5/5 - 0/24/ 8 - 0 [00:00:24]: 8: 8/8/8 - 8/ 0/ 0 - 0 [00:00:24]: 9: 8/8/8 - 8/16/ 0 - 0 [00:00:24]: 10: 8/8/8 - 8/24/ 0 - 0 [00:00:24]: 11: 8/8/8 - 8/24/ 8 - 0 [00:00:24]: WindowManager::SetFullscreen(0, 1920, 1080, 60) [00:00:24]: GLInfo [00:00:24]: ~~~~~~ [00:00:24]: GL_VENDOR: Google Inc. [00:00:24]: GL_RENDERER: ANGLE (NVIDIA GeForce GTX 660 Ti) [00:00:24]: GL_VERSION: OpenGL ES 2.0 (ANGLE 1.0.0.2249) [00:00:24]: GL_SHADING_LANGUAGE_VERSION: OpenGL ES GLSL ES 1.00 (ANGLE 1.0.0.2249) [00:00:24]: THREAD - started 'WindowsInputManager' (24152) [00:00:24]: OpenGL extensions (19, 19): [00:00:24]: GL_ANGLE_depth_texture [00:00:24]: GL_ANGLE_framebuffer_blit [00:00:24]: GL_ANGLE_framebuffer_multisample [00:00:24]: GL_ANGLE_instanced_arrays [00:00:24]: GL_ANGLE_pack_reverse_row_order [00:00:24]: GL_ANGLE_texture_compression_dxt3 [00:00:24]: GL_ANGLE_texture_compression_dxt5 [00:00:24]: GL_ANGLE_texture_usage [00:00:24]: GL_ANGLE_translated_shader_source [00:00:24]: GL_EXT_read_format_bgra [00:00:24]: GL_EXT_robustness [00:00:24]: GL_EXT_texture_compression_dxt1 [00:00:24]: GL_EXT_texture_format_BGRA8888 [00:00:24]: GL_EXT_texture_storage [00:00:24]: GL_OES_get_program_binary [00:00:24]: GL_OES_packed_depth_stencil [00:00:24]: GL_OES_rgb8_rgba8 [00:00:24]: GL_OES_standard_derivatives [00:00:24]: GL_OES_texture_npot [00:00:24]: GL_MAX_TEXTURE_SIZE = 16384 [00:00:24]: GL_MAX_TEXTURE_IMAGE_UNITS = 16 [00:00:24]: GL_MAX_RENDERBUFFER_SIZE = 16384 [00:00:24]: GL_MAX_VIEWPORT_DIMS = 16384, 16384 [00:00:24]: GL_MAX_VARYING_VECTORS = 10 [00:00:24]: GL_MAX_VERTEX_ATTRIBS = 16 [00:00:24]: GL_MAX_VERTEX_UNIFORM_VECTORS = 254 [00:00:24]: GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS = 4 [00:00:24]: GL_MAX_FRAGMENT_UNIFORM_VECTORS = 221 [00:00:24]: 4 compressed texture formats [00:00:24]: texture format 0x83f0 [00:00:24]: texture format 0x83f1 [00:00:24]: texture format 0x83f2 [00:00:24]: texture format 0x83f3 [00:00:24]: Renderer initialize: Okay [00:00:25]: AnimManager initialize: Okay [00:00:25]: Buffers initialize: Okay [00:00:25]: cDontStarveGame::DoGameSpecificInitialize() [00:00:25]: GameSpecific initialize: Okay [00:00:25]: cGame::StartPlaying [00:00:25]: LOADING LUA [00:00:25]: DoLuaFile scripts/main.lua [00:00:25]: DoLuaFile loading buffer scripts/main.lua [00:00:25]: taskgrouplist: default Together [00:00:25]: taskgrouplist: classic Classic [00:00:25]: taskgrouplist: cave_default Underground [00:00:25]: taskgrouplist: lavaarena_taskset The Forge [00:00:25]: taskgrouplist: quagmire_taskset The Gorge [00:00:25]: running main.lua [00:00:25]: loaded modindex [00:00:28]: 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:30]: ModIndex: Beginning normal load sequence. [00:00:31]: ModIndex:GetModsToLoad inserting moddir, workshop-1290774114 [00:00:31]: ModIndex:GetModsToLoad inserting moddir, workshop-345692228 [00:00:31]: ModIndex:GetModsToLoad inserting moddir, workshop-351325790 [00:00:31]: ModIndex:GetModsToLoad inserting moddir, workshop-352373173 [00:00:31]: ModIndex:GetModsToLoad inserting moddir, workshop-376333686 [00:00:31]: ModIndex:GetModsToLoad inserting moddir, workshop-727774324 [00:00:31]: ModIndex:GetModsToLoad inserting moddir, workshop-941507487 [00:00:31]: Could not load mod_config_data/modconfiguration_workshop-1290774114 [00:00:31]: Loading mod: workshop-1290774114 (Admin Scoreboard+) Version:1.11 [00:00:31]: Could not load mod_config_data/modconfiguration_workshop-345692228 [00:00:31]: Loading mod: workshop-345692228 (Minimap HUD) Version:1.0.7 [00:00:31]: loaded mod_config_data/modconfiguration_workshop-351325790 [00:00:31]: Loading mod: workshop-351325790 (Geometric Placement) Version:2.2.4 [00:00:31]: Could not load mod_config_data/modconfiguration_workshop-352373173 [00:00:31]: Loading mod: workshop-352373173 (Gesture Wheel) Version:1.7.4 [00:00:31]: Could not load mod_config_data/modconfiguration_workshop-376333686 [00:00:31]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.21 [00:00:31]: Could not load mod_config_data/modconfiguration_workshop-727774324 [00:00:31]: Loading mod: workshop-727774324 (Craft Pot) Version:0.9.0.1 [00:00:31]: Could not load mod_config_data/modconfiguration_workshop-941507487 [00:00:31]: Loading mod: workshop-941507487 (한글 모드 클라이언트 버전) Version:0.6.83.20180629.00 [00:00:31]: Mod: workshop-941507487 (한글 모드 클라이언트 버전) Loading modworldgenmain.lua [00:00:31]: Mod: workshop-941507487 (한글 모드 클라이언트 버전) Mod had no modworldgenmain.lua. Skipping. [00:00:31]: Mod: workshop-941507487 (한글 모드 클라이언트 버전) Loading modmain.lua [00:00:31]: Translator:LoadPOFile - loading file: ../mods/workshop-941507487/ko.po [00:00:33]: Mod: workshop-345692228 (Minimap HUD) Loading modworldgenmain.lua [00:00:33]: Mod: workshop-345692228 (Minimap HUD) Mod had no modworldgenmain.lua. Skipping. [00:00:33]: Mod: workshop-345692228 (Minimap HUD) Loading modmain.lua [00:00:33]: Mod: workshop-376333686 (Combined Status) Loading modworldgenmain.lua [00:00:33]: Mod: workshop-376333686 (Combined Status) Mod had no modworldgenmain.lua. Skipping. [00:00:33]: Mod: workshop-376333686 (Combined Status) Loading modmain.lua [00:00:33]: ModIndex:GetModsToLoad inserting moddir, workshop-1290774114 [00:00:33]: ModIndex:GetModsToLoad inserting moddir, workshop-345692228 [00:00:33]: ModIndex:GetModsToLoad inserting moddir, workshop-351325790 [00:00:33]: ModIndex:GetModsToLoad inserting moddir, workshop-352373173 [00:00:33]: ModIndex:GetModsToLoad inserting moddir, workshop-376333686 [00:00:33]: ModIndex:GetModsToLoad inserting moddir, workshop-727774324 [00:00:33]: ModIndex:GetModsToLoad inserting moddir, workshop-941507487 [00:00:33]: Mod: workshop-352373173 (Gesture Wheel) Loading modworldgenmain.lua [00:00:33]: Mod: workshop-352373173 (Gesture Wheel) Mod had no modworldgenmain.lua. Skipping. [00:00:33]: Mod: workshop-352373173 (Gesture Wheel) Loading modmain.lua [00:00:33]: ModIndex:GetModsToLoad inserting moddir, workshop-1290774114 [00:00:33]: ModIndex:GetModsToLoad inserting moddir, workshop-345692228 [00:00:33]: ModIndex:GetModsToLoad inserting moddir, workshop-351325790 [00:00:33]: ModIndex:GetModsToLoad inserting moddir, workshop-352373173 [00:00:33]: ModIndex:GetModsToLoad inserting moddir, workshop-376333686 [00:00:33]: ModIndex:GetModsToLoad inserting moddir, workshop-727774324 [00:00:33]: ModIndex:GetModsToLoad inserting moddir, workshop-941507487 [00:00:33]: Mod: workshop-351325790 (Geometric Placement) Loading modworldgenmain.lua [00:00:33]: Mod: workshop-351325790 (Geometric Placement) Mod had no modworldgenmain.lua. Skipping. [00:00:33]: Mod: workshop-351325790 (Geometric Placement) Loading modmain.lua [00:00:33]: nil [00:00:33]: loaded mod_config_data/modconfiguration_workshop-351325790 [00:00:33]: Mod: workshop-1290774114 (Admin Scoreboard+) Loading modworldgenmain.lua [00:00:33]: Mod: workshop-1290774114 (Admin Scoreboard+) Mod had no modworldgenmain.lua. Skipping. [00:00:33]: Mod: workshop-1290774114 (Admin Scoreboard+) Loading modmain.lua [00:00:33]: Mod: workshop-727774324 (Craft Pot) Loading modworldgenmain.lua [00:00:33]: Mod: workshop-727774324 (Craft Pot) Mod had no modworldgenmain.lua. Skipping. [00:00:33]: Mod: workshop-727774324 (Craft Pot) Loading modmain.lua [00:00:36]: LOADING LUA SUCCESS [00:00:36]: PlayerDeaths loaded morgue 6379 [00:00:36]: PlayerHistory loaded player_history 12647 [00:00:36]: bloom_enabled false [00:00:36]: loaded saveindex [00:00:36]: OnFilesLoaded() [00:00:36]: OnUpdatePurchaseStateComplete [00:00:36]: Klump load on boot started. [00:00:36]: Klump files loaded: 0 [00:00:38]: Mod: workshop-941507487 (한글 모드 클라이언트 버전) Registering prefabs [00:00:38]: Mod: workshop-941507487 (한글 모드 클라이언트 버전) Registering default mod prefab [00:00:38]: Mod: workshop-345692228 (Minimap HUD) Registering prefabs [00:00:38]: Mod: workshop-345692228 (Minimap HUD) Registering default mod prefab [00:00:38]: Mod: workshop-376333686 (Combined Status) Registering prefabs [00:00:38]: Mod: workshop-376333686 (Combined Status) Registering default mod prefab [00:00:38]: Mod: workshop-352373173 (Gesture Wheel) Registering prefabs [00:00:38]: Mod: workshop-352373173 (Gesture Wheel) Registering default mod prefab [00:00:38]: Mod: workshop-351325790 (Geometric Placement) Registering prefabs [00:00:38]: Mod: workshop-351325790 (Geometric Placement) Registering prefab file: prefabs/buildgridplacer [00:00:38]: Mod: workshop-351325790 (Geometric Placement) buildgridplacer [00:00:38]: Mod: workshop-351325790 (Geometric Placement) Registering default mod prefab [00:00:38]: Mod: workshop-1290774114 (Admin Scoreboard+) Registering prefabs [00:00:38]: Mod: workshop-1290774114 (Admin Scoreboard+) Registering default mod prefab [00:00:38]: Mod: workshop-727774324 (Craft Pot) Registering prefabs [00:00:38]: Mod: workshop-727774324 (Craft Pot) Registering default mod prefab [00:00:38]: Load FE [00:00:45]: Load FE: done [00:00:45]: THREAD - started 'FilesExistAsyncThread' (23924) [00:00:45]: FilesExistAsyncThread started (16761 files)... [00:00:45]: OnLoadPermissionList: APP:Klei//DoNotStarveTogether/client_save/blocklist.txt (Success) [00:00:45]: OnLoadPermissionList: APP:Klei//DoNotStarveTogether/client_save/adminlist.txt (Failure) [00:00:45]: OnLoadUserIdList: APP:Klei//DoNotStarveTogether/client_save/whitelist.txt (Failure) [00:00:46]: ModIndex: Load sequence finished successfully. [00:00:46]: Reset() returning [00:01:13]: ... FilesExistAsyncThread complete [00:01:36]: [Steam] Auth Session Ticket requested... [00:01:36]: [Steam] Got Auth Session Ticket [00:01:38]: [200] Account Communication Success (3) [00:01:38]: Logging in as KU_yHxA1Etm [00:01:40]: saved APP:Klei//DoNotStarveTogether/client_save/pricing_cache [00:01:41]: Adding unlocked event achievement: cook_first [00:01:41]: Adding unlocked event achievement: cook_large [00:01:41]: Adding unlocked event achievement: cook_silver [00:01:41]: Adding unlocked event achievement: farm_sow [00:01:41]: Adding unlocked event achievement: farm_sow_all [00:01:41]: Adding unlocked event achievement: farm_till [00:01:41]: Adding unlocked event achievement: food_001 [00:01:41]: Adding unlocked event achievement: food_002 [00:01:41]: Adding unlocked event achievement: food_003 [00:01:41]: Adding unlocked event achievement: food_004 [00:01:41]: Adding unlocked event achievement: food_005 [00:01:41]: Adding unlocked event achievement: food_006 [00:01:41]: Adding unlocked event achievement: food_007 [00:01:41]: Adding unlocked event achievement: food_008 [00:01:41]: Adding unlocked event achievement: food_009 [00:01:41]: Adding unlocked event achievement: food_010 [00:01:41]: Adding unlocked event achievement: food_011 [00:01:41]: Adding unlocked event achievement: food_012 [00:01:41]: Adding unlocked event achievement: food_013 [00:01:41]: Adding unlocked event achievement: food_014 [00:01:41]: Adding unlocked event achievement: food_015 [00:01:41]: Adding unlocked event achievement: food_016 [00:01:41]: Adding unlocked event achievement: food_017 [00:01:41]: Adding unlocked event achievement: food_018 [00:01:41]: Adding unlocked event achievement: food_019 [00:01:41]: Adding unlocked event achievement: food_020 [00:01:41]: Adding unlocked event achievement: food_021 [00:01:41]: Adding unlocked event achievement: food_022 [00:01:41]: Adding unlocked event achievement: food_023 [00:01:41]: Adding unlocked event achievement: food_024 [00:01:41]: Adding unlocked event achievement: food_025 [00:01:41]: Adding unlocked event achievement: food_026 [00:01:41]: Adding unlocked event achievement: food_035 [00:01:41]: Adding unlocked event achievement: food_038 [00:01:41]: Adding unlocked event achievement: food_039 [00:01:41]: Adding unlocked event achievement: food_040 [00:01:41]: Adding unlocked event achievement: food_042 [00:01:41]: Adding unlocked event achievement: food_043 [00:01:41]: Adding unlocked event achievement: food_044 [00:01:41]: Adding unlocked event achievement: food_046 [00:01:41]: Adding unlocked event achievement: food_049 [00:01:41]: Adding unlocked event achievement: food_055 [00:01:41]: Adding unlocked event achievement: food_057 [00:01:41]: Adding unlocked event achievement: food_058 [00:01:41]: Adding unlocked event achievement: food_062 [00:01:41]: Adding unlocked event achievement: food_064 [00:01:41]: Adding unlocked event achievement: food_066 [00:01:41]: Adding unlocked event achievement: food_069 [00:01:41]: Adding unlocked event achievement: food_syrup [00:01:41]: Adding unlocked event achievement: gather_logs [00:01:41]: Adding unlocked event achievement: gather_safe [00:01:41]: Adding unlocked event achievement: gather_sap [00:01:41]: Adding unlocked event achievement: gather_spice [00:01:41]: Adding unlocked event achievement: quag_win_fast [00:01:41]: Adding unlocked event achievement: quag_win_first [00:01:41]: Adding unlocked event achievement: quag_win_noburnt [00:01:41]: Adding unlocked event achievement: quag_win_nodups [00:01:41]: Adding unlocked event achievement: quag_win_nosalt [00:01:41]: Adding unlocked event achievement: quag_win_perfect [00:01:41]: Adding unlocked event achievement: tribute_coin2 [00:01:41]: Adding unlocked event achievement: tribute_coin3 [00:01:41]: Adding unlocked event achievement: tribute_coin4 [00:01:41]: Adding unlocked event achievement: tribute_fast [00:01:41]: Adding unlocked event achievement: tribute_num_high [00:01:41]: Adding unlocked event achievement: tribute_num_low [00:01:41]: Adding unlocked event achievement: tribute_num_med [00:01:41]: loaded inventory_cache_prod [00:01:43]: saved APP:Klei//DoNotStarveTogether/client_save/inventory_cache_prod [00:01:43]: saved APP:Klei//DoNotStarveTogether/client_save/inventory_cache_prod_sig [00:01:50]: EResult 15, 1297855415 [00:01:50]: Failed getting mod details. [00:01:58]: Getting top mod details... [00:01:58]: Frontend-Unloading mod 'all'. [00:01:58]: loaded mod_config_data/modconfiguration_workshop-666155465 [00:01:59]: FrontendLoadMod workshop-666155465 [00:01:59]: loaded mod_config_data/modconfiguration_workshop-666155465 [00:01:59]: Fontend-Loading mod: workshop-666155465 (Show Me) Version:0.38 [00:01:59]: Mod: workshop-666155465 (Show Me) Loading modworldgenmain.lua [00:01:59]: Mod: workshop-666155465 (Show Me) Mod had no modworldgenmain.lua. Skipping. [00:01:59]: FrontendLoadMod workshop-361202313 [00:01:59]: Could not load mod_config_data/modconfiguration_workshop-361202313 [00:01:59]: Fontend-Loading mod: workshop-361202313 (Extended Sample Character) Version:1.2.3 [00:01:59]: Mod: workshop-361202313 (Extended Sample Character) Loading modworldgenmain.lua [00:01:59]: Mod: workshop-361202313 (Extended Sample Character) Mod had no modworldgenmain.lua. Skipping. [00:01:59]: FrontendLoadMod workshop-1313085028 [00:01:59]: Could not load mod_config_data/modconfiguration_workshop-1313085028 [00:01:59]: Fontend-Loading mod: workshop-1313085028 (Clala_클라라) Version:1.2.0000 [00:01:59]: Mod: workshop-1313085028 (Clala_클라라) Loading modworldgenmain.lua [00:01:59]: Mod: workshop-1313085028 (Clala_클라라) Mod had no modworldgenmain.lua. Skipping. [00:02:00]: GOT top mod details...50 [00:02:00]: ../mods/workshop-728459184/preview.tex is 300x300 but compressed textures must have power of 2 dimensions. [00:02:00]: ../mods/workshop-941507487/modicon.tex is 900x600 but compressed textures must have power of 2 dimensions. [00:02:00]: ../mods/workshop-1355520586/ruinsicon.tex is 200x200 but compressed textures must have power of 2 dimensions. [00:02:00]: ../mods/workshop-898070061/modicon.tex is 200x200 but compressed textures must have power of 2 dimensions. [00:02:00]: ../mods/workshop-589894765/modicon.tex is 900x600 but compressed textures must have power of 2 dimensions. [00:02:00]: ../mods/workshop-1275167632/modicon.tex is 316x316 but compressed textures must have power of 2 dimensions. [00:02:00]: ../mods/workshop-439115156/modicon.tex is 316x316 but compressed textures must have power of 2 dimensions. [00:02:00]: ../mods/workshop-1387318096/modicon.tex is 268x268 but compressed textures must have power of 2 dimensions. [00:02:00]: ../mods/workshop-1271089343/modicon.tex is 260x260 but compressed textures must have power of 2 dimensions. [00:02:00]: ../mods/workshop-442635304/moreintumbleweed-icon.tex is 200x200 but compressed textures must have power of 2 dimensions. [00:02:00]: ../mods/workshop-908528377/preview.tex is 200x200 but compressed textures must have power of 2 dimensions. [00:02:05]: loaded mod_config_data/modconfiguration_workshop-666155465 [00:02:05]: Could not load mod_config_data/modconfiguration_workshop-361202313 [00:02:05]: Could not load mod_config_data/modconfiguration_workshop-1313085028 [00:02:05]: GetGameModeMaxPlayers survival nil [00:02:05]: Network tick rate: U=15(2), D=0 [00:02:05]: ModWorkshop::CancelDownloads clearing all unfinished downloads [00:02:05]: About to start a server with the following settings: [00:02:05]: Dedicated: false [00:02:05]: Online: true [00:02:05]: Passworded: false [00:02:05]: ServerPort: 10999 [00:02:05]: SteamAuthPort: 8766 [00:02:05]: SteamMasterServerPort: 27016 [00:02:05]: ClanID: false [00:02:05]: ClanOnly: false [00:02:05]: ClanAdmin: false [00:02:05]: LanOnly: true [00:02:05]: FriendsOnly: false [00:02:05]: EnableAutosaver: true [00:02:05]: EncodeUserPath: true [00:02:05]: PVP: false [00:02:05]: MaxPlayers: 1 [00:02:05]: GameMode: survival [00:02:05]: OverridenDNS: [00:02:05]: PauseWhenEmpty: true [00:02:05]: IdleTimeout: 1800s [00:02:05]: VoteEnabled: false [00:02:05]: InternetBroadcasting: true [00:02:05]: Intent: social [00:02:05]: [Warning] Could not confirm port 10999 is open in the firewall. [00:02:05]: loaded mod_config_data/modconfiguration_workshop-666155465 [00:02:05]: Could not load mod_config_data/modconfiguration_workshop-361202313 [00:02:05]: Could not load mod_config_data/modconfiguration_workshop-1313085028 [00:02:05]: Online Server Started on port: 10999 [00:02:06]: Collecting garbage... [00:02:06]: lua_gc took 0.05 seconds [00:02:06]: ~ShardLuaProxy() [00:02:06]: ~cEventLeaderboardProxy() [00:02:06]: ~ItemServerLuaProxy() [00:02:06]: ~InventoryLuaProxy() [00:02:06]: ~NetworkLuaProxy() [00:02:06]: ~SimLuaProxy() [00:02:06]: Cancelling LuaQueryCallback handle [4] [00:02:06]: ModWorkshop::CancelDownloads clearing all unfinished downloads [00:02:06]: lua_close took 0.04 seconds [00:02:06]: ReleaseAll [00:02:06]: ReleaseAll Finished [00:02:06]: cGame::StartPlaying [00:02:06]: LOADING LUA [00:02:06]: DoLuaFile scripts/main.lua [00:02:06]: DoLuaFile loading buffer scripts/main.lua [00:02:06]: taskgrouplist: default Together [00:02:06]: taskgrouplist: classic Classic [00:02:06]: taskgrouplist: cave_default Underground [00:02:06]: taskgrouplist: lavaarena_taskset The Forge [00:02:06]: taskgrouplist: quagmire_taskset The Gorge [00:02:06]: running main.lua [00:02:06]: unloading prefabs for mod MOD_workshop-941507487 [00:02:06]: unloading prefabs for mod MOD_workshop-345692228 [00:02:06]: unloading prefabs for mod MOD_workshop-376333686 [00:02:06]: unloading prefabs for mod MOD_workshop-352373173 [00:02:06]: unloading prefabs for mod MOD_workshop-351325790 [00:02:06]: unloading prefabs for mod MOD_workshop-1290774114 [00:02:06]: unloading prefabs for mod MOD_workshop-727774324 [00:02:06]: loaded modindex [00:02:06]: 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:02:06]: ModIndex: Beginning normal load sequence. [00:02:06]: ModIndex:GetModsToLoad inserting moddir, workshop-1290774114 [00:02:06]: ModIndex:GetModsToLoad inserting moddir, workshop-1313085028 [00:02:06]: ModIndex:GetModsToLoad inserting moddir, workshop-345692228 [00:02:06]: ModIndex:GetModsToLoad inserting moddir, workshop-351325790 [00:02:06]: ModIndex:GetModsToLoad inserting moddir, workshop-352373173 [00:02:06]: ModIndex:GetModsToLoad inserting moddir, workshop-361202313 [00:02:06]: ModIndex:GetModsToLoad inserting moddir, workshop-376333686 [00:02:06]: ModIndex:GetModsToLoad inserting moddir, workshop-666155465 [00:02:06]: ModIndex:GetModsToLoad inserting moddir, workshop-727774324 [00:02:06]: ModIndex:GetModsToLoad inserting moddir, workshop-941507487 [00:02:06]: Could not load mod_config_data/modconfiguration_workshop-1290774114 [00:02:06]: Loading mod: workshop-1290774114 (Admin Scoreboard+) Version:1.11 [00:02:06]: Could not load mod_config_data/modconfiguration_workshop-1313085028 [00:02:06]: Loading mod: workshop-1313085028 (Clala_클라라) Version:1.2.0000 [00:02:06]: Could not load mod_config_data/modconfiguration_workshop-345692228 [00:02:06]: Loading mod: workshop-345692228 (Minimap HUD) Version:1.0.7 [00:02:06]: loaded mod_config_data/modconfiguration_workshop-351325790 [00:02:06]: Loading mod: workshop-351325790 (Geometric Placement) Version:2.2.4 [00:02:06]: Could not load mod_config_data/modconfiguration_workshop-352373173 [00:02:06]: Loading mod: workshop-352373173 (Gesture Wheel) Version:1.7.4 [00:02:06]: Could not load mod_config_data/modconfiguration_workshop-361202313 [00:02:06]: Loading mod: workshop-361202313 (Extended Sample Character) Version:1.2.3 [00:02:06]: Could not load mod_config_data/modconfiguration_workshop-376333686 [00:02:06]: Loading mod: workshop-376333686 (Combined Status) Version:1.6.21 [00:02:06]: loaded mod_config_data/modconfiguration_workshop-666155465 [00:02:06]: Loading mod: workshop-666155465 (Show Me) Version:0.38 [00:02:06]: Could not load mod_config_data/modconfiguration_workshop-727774324 [00:02:06]: Loading mod: workshop-727774324 (Craft Pot) Version:0.9.0.1 [00:02:06]: Could not load mod_config_data/modconfiguration_workshop-941507487 [00:02:06]: Loading mod: workshop-941507487 (한글 모드 클라이언트 버전) Version:0.6.83.20180629.00 [00:02:06]: Mod: workshop-666155465 (Show Me) Loading modworldgenmain.lua [00:02:06]: Mod: workshop-666155465 (Show Me) Mod had no modworldgenmain.lua. Skipping. [00:02:06]: Mod: workshop-666155465 (Show Me) Loading modmain.lua [00:02:06]: ShowMe version: 0.38 [00:02:07]: Mod: workshop-941507487 (한글 모드 클라이언트 버전) Loading modworldgenmain.lua [00:02:07]: Mod: workshop-941507487 (한글 모드 클라이언트 버전) Mod had no modworldgenmain.lua. Skipping. [00:02:07]: Mod: workshop-941507487 (한글 모드 클라이언트 버전) Loading modmain.lua [00:02:07]: Translator:LoadPOFile - loading file: ../mods/workshop-941507487/ko.po [00:02:08]: AddPortMapping(10999, 10999, 192.168.0.14) failed with code 718 (ConflictInMappingEntry) [00:02:08]: AddPortMapping(10999, 10999, 192.168.0.14) failed with code 718 (ConflictInMappingEntry) [00:02:08]: Mod: workshop-345692228 (Minimap HUD) Loading modworldgenmain.lua [00:02:08]: Mod: workshop-345692228 (Minimap HUD) Mod had no modworldgenmain.lua. Skipping. [00:02:08]: Mod: workshop-345692228 (Minimap HUD) Loading modmain.lua [00:02:08]: Mod: workshop-361202313 (Extended Sample Character) Loading modworldgenmain.lua [00:02:08]: Mod: workshop-361202313 (Extended Sample Character) Mod had no modworldgenmain.lua. Skipping. [00:02:08]: Mod: workshop-361202313 (Extended Sample Character) Loading modmain.lua [00:02:08]: Mod: workshop-376333686 (Combined Status) Loading modworldgenmain.lua [00:02:08]: Mod: workshop-376333686 (Combined Status) Mod had no modworldgenmain.lua. Skipping. [00:02:08]: Mod: workshop-376333686 (Combined Status) Loading modmain.lua [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-1290774114 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-1313085028 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-345692228 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-351325790 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-352373173 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-361202313 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-376333686 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-666155465 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-727774324 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-941507487 [00:02:08]: Mod: workshop-1313085028 (Clala_클라라) Loading modworldgenmain.lua [00:02:08]: Mod: workshop-1313085028 (Clala_클라라) Mod had no modworldgenmain.lua. Skipping. [00:02:08]: Mod: workshop-1313085028 (Clala_클라라) Loading modmain.lua [00:02:08]: Mod: workshop-352373173 (Gesture Wheel) Loading modworldgenmain.lua [00:02:08]: Mod: workshop-352373173 (Gesture Wheel) Mod had no modworldgenmain.lua. Skipping. [00:02:08]: Mod: workshop-352373173 (Gesture Wheel) Loading modmain.lua [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-1290774114 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-1313085028 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-345692228 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-351325790 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-352373173 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-361202313 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-376333686 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-666155465 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-727774324 [00:02:08]: ModIndex:GetModsToLoad inserting moddir, workshop-941507487 [00:02:08]: Mod: workshop-351325790 (Geometric Placement) Loading modworldgenmain.lua [00:02:08]: Mod: workshop-351325790 (Geometric Placement) Mod had no modworldgenmain.lua. Skipping. [00:02:08]: Mod: workshop-351325790 (Geometric Placement) Loading modmain.lua [00:02:08]: nil [00:02:08]: loaded mod_config_data/modconfiguration_workshop-351325790 [00:02:08]: Mod: workshop-1290774114 (Admin Scoreboard+) Loading modworldgenmain.lua [00:02:08]: Mod: workshop-1290774114 (Admin Scoreboard+) Mod had no modworldgenmain.lua. Skipping. [00:02:08]: Mod: workshop-1290774114 (Admin Scoreboard+) Loading modmain.lua [00:02:08]: Mod: workshop-727774324 (Craft Pot) Loading modworldgenmain.lua [00:02:08]: Mod: workshop-727774324 (Craft Pot) Mod had no modworldgenmain.lua. Skipping. [00:02:08]: Mod: workshop-727774324 (Craft Pot) Loading modmain.lua [00:02:09]: LOADING LUA SUCCESS [00:02:09]: Registering mod namespace "showmehint" [00:02:09]: Registering mod namespace "showme" [00:02:09]: PlayerDeaths loaded morgue 6379 [00:02:09]: PlayerHistory loaded player_history 12647 [00:02:09]: bloom_enabled false [00:02:09]: loaded saveindex [00:02:09]: OnFilesLoaded() [00:02:09]: OnUpdatePurchaseStateComplete [00:02:09]: Loading world: session/5425693EEC0FCCAF/0000000012 [00:02:10]: Save file is at version 4.77 [00:02:10]: Klump load on boot started. [00:02:10]: Klump files loaded: 0 [00:02:10]: Unload FE [00:02:10]: Unload FE done [00:02:13]: Mod: workshop-666155465 (Show Me) Registering prefabs [00:02:13]: Mod: workshop-666155465 (Show Me) Registering default mod prefab [00:02:13]: Mod: workshop-941507487 (한글 모드 클라이언트 버전) Registering prefabs [00:02:13]: Mod: workshop-941507487 (한글 모드 클라이언트 버전) Registering default mod prefab [00:02:13]: Mod: workshop-345692228 (Minimap HUD) Registering prefabs [00:02:13]: Mod: workshop-345692228 (Minimap HUD) Registering default mod prefab [00:02:13]: Mod: workshop-361202313 (Extended Sample Character) Registering prefabs [00:02:13]: Mod: workshop-361202313 (Extended Sample Character) Registering prefab file: prefabs/owen [00:02:13]: Mod: workshop-361202313 (Extended Sample Character) owen [00:02:13]: Mod: workshop-361202313 (Extended Sample Character) Registering prefab file: prefabs/owen_none [00:02:13]: Mod: workshop-361202313 (Extended Sample Character) owen_none [00:02:13]: Mod: workshop-361202313 (Extended Sample Character) Registering default mod prefab [00:02:14]: Mod: workshop-376333686 (Combined Status) Registering prefabs [00:02:14]: Mod: workshop-376333686 (Combined Status) Registering default mod prefab [00:02:14]: Mod: workshop-1313085028 (Clala_클라라) Registering prefabs [00:02:14]: Mod: workshop-1313085028 (Clala_클라라) Registering prefab file: prefabs/clala [00:02:14]: Mod: workshop-1313085028 (Clala_클라라) clala [00:02:14]: Mod: workshop-1313085028 (Clala_클라라) Registering prefab file: prefabs/clala_none [00:02:14]: Mod: workshop-1313085028 (Clala_클라라) clala_none [00:02:14]: Mod: workshop-1313085028 (Clala_클라라) Registering prefab file: prefabs/clalahat [00:02:14]: Mod: workshop-1313085028 (Clala_클라라) clalahat [00:02:14]: Mod: workshop-1313085028 (Clala_클라라) Registering default mod prefab Link to comment https://forums.kleientertainment.com/forums/topic/93367-solvedwould-you-help-mecustom-hat-for-custom-character/#findComment-1063637 Share on other sites More sharing options...
Lumina Posted July 15, 2018 Share Posted July 15, 2018 I don't see any error, but the log stop when your mod is loaded. There is nothing i guess in the server log ? Link to comment https://forums.kleientertainment.com/forums/topic/93367-solvedwould-you-help-mecustom-hat-for-custom-character/#findComment-1064121 Share on other sites More sharing options...
Jajangmon Posted July 28, 2018 Author Share Posted July 28, 2018 On 2018. 7. 15. at 6:20 PM, Lumina said: I don't see any error, but the log stop when your mod is loaded. There is nothing i guess in the server log ? (Sorry for late repy I didn't notice) Hmmmm.... I will keep try xP thanks for the help-! May I ask your email and where you live for little gift? Link to comment https://forums.kleientertainment.com/forums/topic/93367-solvedwould-you-help-mecustom-hat-for-custom-character/#findComment-1069515 Share on other sites More sharing options...
Lumina Posted August 1, 2018 Share Posted August 1, 2018 I prefer not give personal informations like this but it's a nice gesture. Also, i'm not of a great help, sadly. Link to comment https://forums.kleientertainment.com/forums/topic/93367-solvedwould-you-help-mecustom-hat-for-custom-character/#findComment-1071014 Share on other sites More sharing options...
Jajangmon Posted August 8, 2018 Author Share Posted August 8, 2018 On 2018. 8. 2. at 6:47 AM, Lumina said: I prefer not give personal informations like this but it's a nice gesture. Also, i'm not of a great help, sadly. Awww sorry my fault to ask your personal information. forgive me x_x btw I fixed the problem ! Hope you have a good day and soon you will see my mod Link to comment https://forums.kleientertainment.com/forums/topic/93367-solvedwould-you-help-mecustom-hat-for-custom-character/#findComment-1072995 Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now