Candy Crush Saga Wiki
Candy Crush Saga Wiki
No edit summary
No edit summary
Line 8: Line 8:
 
 
 
--Reality level value (updating every one week)
 
--Reality level value (updating every one week)
["Moves"] = '187',
+
["Moves"] = '173',
 
["Jelly"] = '2782',
 
["Jelly"] = '2782',
 
["Ingredients"] = '1684',
 
["Ingredients"] = '1684',

Revision as of 10:30, 24 July 2021

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

local p = {}

function p.getLevel(frame)
    
local leveltype = {
    --Default value (DO NOT UPDATE IT)
    ["0"] = '?',
    
    --Reality level value (updating every one week)
    ["Moves"] = '173',
    ["Jelly"] = '2782',
    ["Ingredients"] = '1684',
    ["Candy Order"] = '2003',
    ["Mixed"] = '2872',
    ["Rainbow Rapids"] = '286',
    
    ["Last Moves"] = '6809',
    ["Last Jelly"] = '9796',
    ["Last Ingredients"] = '9779',
    ["Last Candy Order"] = '9793',
    ["Last Mixed"] = '9800',
    ["Last Rainbow Rapids"] = '9795',
}

local amount = frame.args[1]
    if leveltype[amount] ~= nil then
        amount = leveltype[amount]
    else
        amount = nil
    end
return amount
end
 
return p