Tip of the day
Enjoying the game? It is thanks to all our supporters that have done so on Patreon and Buy Me A Coffee!

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

Logs
  • 02:21, 12 October 2025 Bonez565 talk contribs created page Module:CapitalizeWords (Created page with "local p = {} -- Helper function to check if a word exists in a list (table) local function listContains(list, word) for _, value in ipairs(list) do if value == word then return true end end return false end function p.main(str) local exceptions = { "of", "with", "a", "the", "in", "to" } local result = {} local wordIndex = 1 for word in str:gmatch("%S+") do -- Handle hyphenated words local hyphenat...")