Tip of the Day
Being overencumbered only slows down your activities, but doesn't affect travel.
Main public logs
From Walkscape Walkthrough
Combined display of all available logs of Walkscape Walkthrough. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 05:20, 21 October 2025 Bonez565 talk contribs created page Module:ChestSource New/doc (Created page with "Documentation: Module:ChestSource New/doc Helper for Module:Combined Item Sources New = Main Function = <pre>p.main(frameOrItemName, langCode, sourceData)</pre> Outputs mediwiki text for the chest sources with header and table.")
- 04:57, 21 October 2025 Bonez565 talk contribs created page Module:Loot Tables New/doc (Created page with "Documentation: Module:Loot Tables New/doc = Data Location = * Data:Loot Tables * Data:Loot Tables/YAML == Get chest loot tables for an ID == === Normal Loot Table === <pre>{{#invoke:Loot_Tables_New|buildChestDropTable|Chest UUID}}</pre> Builds a lua table of the requested loot table. Sunken Chest = <pre>table#1 { ["common"] = table#2 { table#3 { ["Chance"] = "20.000%", ["Name"] = "Rusty diving leggings", ["N...")
- 04:54, 21 October 2025 Bonez565 talk contribs created page Module:Loot Tables New (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") --Use YAMLLookup.getStringByPath local ItemsModule = require('Module:Items_New') -- ========================= -- Helpers -- ========================= -- Helper: is a table empty? hasData = true, noData = false local function hasData(t) if type(t) ~= "table" then return false end if next(t) ~= nil then return true end -- raw key exists -- Some read-o...")
- 03:15, 21 October 2025 Bonez565 talk contribs created page Module:Combined Item Sources New (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") local SOURCE_ORDER = { "Chest", "Activity", "Shop", "ShopPayment", "RecipeMain", "RecipeSecondary", "AchievementCompletion", "AchievementPoint", "FactionReward", "FactionRepeatingReward", "JobBoard", "ItemAttribute", } local SOURCE_TO_MODULE = { Chest = "ChestSource_New", Activity = "ActivitySource...")
- 03:13, 21 October 2025 Bonez565 talk contribs created the page Module:Item Abilities New/Test using a non-default content model "wikitext"
- 03:13, 21 October 2025 Bonez565 talk contribs created page Module:Item Abilities New/Test (Bonez565 created the page Module:Item Abilities New/Test using a non-default content model "wikitext")
- 02:28, 21 October 2025 Bonez565 talk contribs created page Module:ItemAttributeSource New (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") function p.main(frameOrItemName, langCode, sourceData) -- Determine item mame and language code from either a frame or direct call local itemName if type(frameOrItemName) == "table" and frameOrItemName.args then itemName = frameOrItemName.args.itemName or frameOrItemName.args[1] langCode = frameOrItemName.args.langCode or frameOrItemN...")
- 02:28, 21 October 2025 Bonez565 talk contribs created page Module:JobBoardSource New (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") function p.main(frameOrItemName, langCode, sourceData) -- Determine item mame and language code from either a frame or direct call local itemName if type(frameOrItemName) == "table" and frameOrItemName.args then itemName = frameOrItemName.args.itemName or frameOrItemName.args[1] langCode = frameOrItemName.args.langCode or frameOrItemN...")
- 02:28, 21 October 2025 Bonez565 talk contribs created page Module:FactionRepeatingRewardSource Ne (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") function p.main(frameOrItemName, langCode, sourceData) -- Determine item mame and language code from either a frame or direct call local itemName if type(frameOrItemName) == "table" and frameOrItemName.args then itemName = frameOrItemName.args.itemName or frameOrItemName.args[1] langCode = frameOrItemName.args.langCode or frameOrItemN...")
- 02:28, 21 October 2025 Bonez565 talk contribs created page Module:FactionRewardSource New (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") function p.main(frameOrItemName, langCode, sourceData) -- Determine item mame and language code from either a frame or direct call local itemName if type(frameOrItemName) == "table" and frameOrItemName.args then itemName = frameOrItemName.args.itemName or frameOrItemName.args[1] langCode = frameOrItemName.args.langCode or frameOrItemN...")
- 02:28, 21 October 2025 Bonez565 talk contribs created page Module:AchievementPointSource New (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") function p.main(frameOrItemName, langCode, sourceData) -- Determine item mame and language code from either a frame or direct call local itemName if type(frameOrItemName) == "table" and frameOrItemName.args then itemName = frameOrItemName.args.itemName or frameOrItemName.args[1] langCode = frameOrItemName.args.langCode or frameOrItemN...")
- 02:28, 21 October 2025 Bonez565 talk contribs created page Module:AchievementCompletionSource New (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") function p.main(frameOrItemName, langCode, sourceData) -- Determine item mame and language code from either a frame or direct call local itemName if type(frameOrItemName) == "table" and frameOrItemName.args then itemName = frameOrItemName.args.itemName or frameOrItemName.args[1] langCode = frameOrItemName.args.langCode or frameOrItemN...")
- 02:28, 21 October 2025 Bonez565 talk contribs created page Module:RecipeSecondarySource New (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") function p.main(frameOrItemName, langCode, sourceData) -- Determine item mame and language code from either a frame or direct call local itemName if type(frameOrItemName) == "table" and frameOrItemName.args then itemName = frameOrItemName.args.itemName or frameOrItemName.args[1] langCode = frameOrItemName.args.langCode or frameOrItemN...")
- 02:28, 21 October 2025 Bonez565 talk contribs created page Module:RecipeMainSource New (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") function p.main(frameOrItemName, langCode, sourceData) -- Determine item mame and language code from either a frame or direct call local itemName if type(frameOrItemName) == "table" and frameOrItemName.args then itemName = frameOrItemName.args.itemName or frameOrItemName.args[1] langCode = frameOrItemName.args.langCode or frameOrItemN...")
- 02:28, 21 October 2025 Bonez565 talk contribs created page Module:ShopPaymentSource New (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") function p.main(frameOrItemName, langCode, sourceData) -- Determine item mame and language code from either a frame or direct call local itemName if type(frameOrItemName) == "table" and frameOrItemName.args then itemName = frameOrItemName.args.itemName or frameOrItemName.args[1] langCode = frameOrItemName.args.langCode or frameOrItemN...")
- 02:28, 21 October 2025 Bonez565 talk contribs created page Module:ShopSource New (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") function p.main(frameOrItemName, langCode, sourceData) -- Determine item mame and language code from either a frame or direct call local itemName if type(frameOrItemName) == "table" and frameOrItemName.args then itemName = frameOrItemName.args.itemName or frameOrItemName.args[1] langCode = frameOrItemName.args.langCode or frameOrItemN...")
- 02:28, 21 October 2025 Bonez565 talk contribs created page Module:ActivitySource New (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") function p.main(frameOrItemName, langCode, sourceData) -- Determine item mame and language code from either a frame or direct call local itemName if type(frameOrItemName) == "table" and frameOrItemName.args then itemName = frameOrItemName.args.itemName or frameOrItemName.args[1] langCode = frameOrItemName.args.langCode or frameOrItemN...")
- 02:18, 21 October 2025 Bonez565 talk contribs created page Module:ChestSource New (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") function p.main(itemName, langCode, sourceData) return "ECHO:\nitemName:" .. itemName .. "\nlangCode:" .. langCode .. "\nsourceData:" .. tostring(sourceData) end return p")
- 13:32, 20 October 2025 User account Harry76220827 talk contribs was created
- 12:22, 20 October 2025 User account RachelHoate talk contribs was created
- 07:57, 20 October 2025 Bonez565 talk contribs created page Module:Item Abilities New (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") --Use YAMLLookup.getStringByPath(PATH) local ItemsModule = require("Module:Items_New") local KeywordsModule = require("Module:Keywords_New") -- Helper function to capitalize the first letter of a word function p.capitalize(word) return word:sub(1, 1):upper() .. word:sub(2):lower() end -- Helper function to extract and format the name from a file path local f...")
- 07:09, 20 October 2025 User account Viktoriyfe talk contribs was created
- 05:23, 20 October 2025 Bonez565 talk contribs created the page Data:Actions/YAML/DE using a non-default content model "JSON"
- 05:23, 20 October 2025 Bonez565 talk contribs created page Data:Actions/YAML/DE (Bonez565 created the page Data:Actions/YAML/DE using a non-default content model "JSON")
- 05:23, 20 October 2025 Bonez565 talk contribs created the page Data:Actions/YAML/EN using a non-default content model "JSON"
- 05:23, 20 October 2025 Bonez565 talk contribs created page Data:Actions/YAML/EN (Bonez565 created the page Data:Actions/YAML/EN using a non-default content model "JSON")
- 05:23, 20 October 2025 Bonez565 talk contribs created page Data:Actions/YAML (Created page with "{{Data:Languages}}")
- 04:54, 20 October 2025 Bonez565 talk contribs created page Module:Item Abilities New/doc (Created page with "Documentation: Module:Item Abilities New/doc == Build Item Abilities == <pre>{{#invoke:Item Abilities New|make|Item Name|Language Code (defaults to EN)}}</pre> Axe of Destruction = {{#invoke:Item Abilities New|make|Axe of Destruction|EN}}")
- 20:46, 19 October 2025 User account RobertBow talk contribs was created
- 20:07, 19 October 2025 User account EarleneFolk3 talk contribs was created
- 16:52, 19 October 2025 User account Mahalia90V talk contribs was created
- 11:17, 19 October 2025 User account Allaovf talk contribs was created
- 10:07, 19 October 2025 Nogisto talk contribs created page Gear:Kayaking/Trinket Grind (Created a new gear set.)
- 09:59, 19 October 2025 Nogisto talk contribs created page Gear:Kayaking (Created page with "<!-- If this is the main page and you wish to make a new gear set, please save this page without any changes and then use the textbox to make a new subpage. --> {{Master_Gear_Page_Template}}")
- 09:52, 19 October 2025 Nogisto talk contribs created page Gear:Kayaking/Trinket grind (Created a new gear set.)
- 07:48, 19 October 2025 Ultraximus talk contribs created page Gear:Kelp Foraging (Created page with "<!-- If this is the main page and you wish to make a new gear set, please save this page without any changes and then use the textbox to make a new subpage. --> {{Master_Gear_Page_Template}}")
- 07:48, 19 October 2025 Ultraximus talk contribs created page Gear:Kelp Foraging/Best Fine Material Finding (Created a new gear set.)
- 07:43, 19 October 2025 Ultraximus talk contribs created page Gear:Coral Cutting (Created page with "<!-- If this is the main page and you wish to make a new gear set, please save this page without any changes and then use the textbox to make a new subpage. --> {{Master_Gear_Page_Template}}")
- 07:42, 19 October 2025 Ultraximus talk contribs created page Gear:Coral Cutting/Best Fine Material Finding (Created a new gear set.)
- 05:29, 19 October 2025 Bonez565 talk contribs created page Module:Locations New/doc (Created page with "Documentation: Module:Locations New/doc = Data Location = * Data:Locations * Data:Locations/YAML = Get Localized Name for Normalized Name or UUID = <pre>{{#invoke:Locations_New|getName|Normalized Name|Language Code (defaults to EN)}}</pre> English: {{#invoke:Locations_New|getName|nurturing_nook_springs|EN}} German: {{#invoke:Locations_New|getName|nurturing_nook_springs|DE}} UUID Variant: <pre>{{#invoke:Locations_New|getNameUUID|ActivityUUID|Language Code...")
- 05:27, 19 October 2025 Bonez565 talk contribs created the page Data:Locations/YAML/EN using a non-default content model "JSON"
- 05:27, 19 October 2025 Bonez565 talk contribs created page Data:Locations/YAML/EN (Bonez565 created the page Data:Locations/YAML/EN using a non-default content model "JSON")
- 05:27, 19 October 2025 Bonez565 talk contribs created the page Data:Locations/YAML/DE using a non-default content model "JSON"
- 05:27, 19 October 2025 Bonez565 talk contribs created page Data:Locations/YAML/DE (Bonez565 created the page Data:Locations/YAML/DE using a non-default content model "JSON")
- 05:27, 19 October 2025 Bonez565 talk contribs created page Data:Locations/YAML (Created page with "{{Data:Languages}}")
- 05:25, 19 October 2025 Bonez565 talk contribs created page Module:Locations New (Created page with "local p = {} local DataLoader = require("Module:DataLoader") local YAMLLookup = require("Module:YAMLLookup") --Use YAMLLookup.getStringByPath(PATH) -- ========================= -- Helpers -- ========================= -- ========================= -- Main Functions -- ========================= -- 1a) getName: return localized name function p.getName(frameOrLocationName, langCode) -- Determine location name and language code from either a frame or direct call l...")
- 04:48, 19 October 2025 Bonez565 talk contribs created page Proper Gear (Redirected page to Proper Gear Set) Tags: New redirect Visual edit
- 04:48, 19 October 2025 Bonez565 talk contribs created page File:Keyword Proper Gear.svg (Redirected page to File:Keyword Proper Gear Set.svg) Tags: New redirect Visual edit
- 04:31, 19 October 2025 Bonez565 talk contribs created page File:Grand Duchy of Trellin-Erdwise Coat of Arms Small.svg (Redirected page to File:GDTE Coat of Arms Small.svg) Tags: New redirect Visual edit
- 04:18, 19 October 2025 Bonez565 talk contribs created the page Data:Activities/YAML/EN using a non-default content model "JSON"
