Module:MapMarkersHelper: Difference between revisions

From HorizonXI Wiki
No edit summary
Tag: Manual revert
No edit summary
Line 6: Line 6:


--local posx = string.gmatch(loc, "exact pos x=(.%d)")
--local posx = string.gmatch(loc, "exact pos x=(.%d)")
local posx = mw.ustring.match( loc, "pos x=(.%d)" )
local test = "pos x=100"
local posx = mw.ustring.match( test, "pos x=(.%d)" )
if not posx then return "match failed: "..posx
if not posx then return "match failed: "..posx

Revision as of 05:40, 24 September 2023

Documentation for this module may be created at Module:MapMarkersHelper/doc

local h = {}

function h._main(frame)
	local loc = frame.args.location
	if not loc then return "no location provided" end

	--local posx = string.gmatch(loc, "exact pos x=(.%d)")
	local test = "pos x=100"
	local posx = mw.ustring.match( test, "pos x=(.%d)" )
	
	if not posx then return "match failed: "..posx
	else return posx end
end

return h