Toggle menu
1
18
17
345
Emergency Response: Liberty County Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Vehicle specifications: Difference between revisions

From Emergency Response: Liberty County Wiki
Content deleted Content added
No edit summary
No edit summary
Line 8: Line 8:
local health = args['health'] or ''
local health = args['health'] or ''


local wikitext = '<tabber>\n\n|-|Price=\n\n' .. price .. '\n\n|-|Health=\n\n' .. health .. '\n\n</tabber>'
local wikitext = '<tabber>\n\n|-|Price=\n\n' .. "[[" .. price .. "]]" .. '\n\n|-|Health=\n\n' .. health .. '\n\n</tabber>'


return wikitext
return wikitext

Revision as of 19:31, 19 February 2026

Module documentation[view][edit][history][purge]
This documentation is transcluded from Module:Vehicle specifications/doc. Changes can be proposed in the talk page.
Function list
L 3 — p.main

local p = {}

function p.main(frame)
    local parentFrame = frame:getParent()
    local args = parentFrame and parentFrame.args or frame.args

    local price = args['price'] or '' 
    local health = args['health'] or ''

    local wikitext = '<tabber>\n\n|-|Price=\n\n' .. "[[" .. price .. "]]" .. '\n\n|-|Health=\n\n' .. health .. '\n\n</tabber>'

    return wikitext 
end

return p
🍪 Cookies help us deliver our services. By using our site, you agree to our use of cookies.