Adminjavasatu
←Membuat halaman berisi 'local Peralatan = { } function Peralatan.trim( text ) if type( text ) == 'string' and text ~= '' then text = text:match( '^()%s*$' ) and '' or text:match( '^%s*(.*%S)' ) if text ~= '' then return text end end return nil end function Peralatan.validTextArg( args, name, ... ) local text = Peralatan.trim( args[name] ) if text then return text end if select( '#', ... ) > 0 then Peralatan.validTextArg( args, ... ) end return nil end function Per...'