M0dii
Naujas puslapis: {{Documentation}} <!-- Documentation here --> <!-- Source: https://runescape.wiki/w/Module:Static/doc --> == Usage == This module returns a table that can store data that persists in between multiple <code><nowiki>{{#Invoke:}}</nowiki></code> calls. Example: <syntaxhighlight lang='lua'> local p = {} function p.main() local static = require( 'Module:Static' ) static.x = ( static.x or 0 ) + 1 return static.x end return p </syntaxhighlight> If the above code sa...